-- mysqldump-php https://github.com/ifsnop/mysqldump-php
--
-- Host: localhost	Database: ondisp5_wp399
-- ------------------------------------------------------
-- Server version 	5.5.5-10.2.25-MariaDB-log
-- Date: Wed, 25 Sep 2019 12:44:47 +0000

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

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

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

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

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

-- Dumped table `wp_commentmeta` with 0 row(s)
--

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

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

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

LOCK TABLES `wp_comments` WRITE;
/*!40000 ALTER TABLE `wp_comments` DISABLE KEYS */;
INSERT INTO `wp_comments` VALUES (1,1,'A WordPress Commenter','wapuu@wordpress.example','https://wordpress.org/','','2019-09-08 00:08:38','2019-09-08 00:08:38','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','','',0,0);
/*!40000 ALTER TABLE `wp_comments` ENABLE KEYS */;
UNLOCK TABLES;

-- Dumped table `wp_comments` with 1 row(s)
--

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

DROP TABLE IF EXISTS `wp_links`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_links` (
  `link_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `link_url` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `link_name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `link_image` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `link_target` varchar(25) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `link_description` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `link_visible` varchar(20) COLLATE utf8mb4_unicode_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_ci NOT NULL DEFAULT '',
  `link_notes` mediumtext COLLATE utf8mb4_unicode_ci NOT NULL,
  `link_rss` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  PRIMARY KEY (`link_id`),
  KEY `link_visible` (`link_visible`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

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

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

-- Dumped table `wp_links` with 0 row(s)
--

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

DROP TABLE IF EXISTS `wp_options`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_options` (
  `option_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `option_name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `option_value` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
  `autoload` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'yes',
  PRIMARY KEY (`option_id`),
  UNIQUE KEY `option_name` (`option_name`)
) ENGINE=MyISAM AUTO_INCREMENT=1228 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

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

LOCK TABLES `wp_options` WRITE;
/*!40000 ALTER TABLE `wp_options` DISABLE KEYS */;
INSERT INTO `wp_options` VALUES (1,'siteurl','http://23.235.208.11/~ondisp5/wp','yes'),(2,'home','http://23.235.208.11/~ondisp5/wp','yes'),(3,'blogname','OnDisplay Creative','yes'),(4,'blogdescription','A Full Service Creative, Manufacturing &amp; Fullfilment Agency.','yes'),(5,'users_can_register','0','yes'),(6,'admin_email','maintenance@ondisplaycreative.com','yes'),(7,'start_of_week','1','yes'),(8,'use_balanceTags','0','yes'),(9,'use_smilies','1','yes'),(10,'require_name_email','1','yes'),(11,'comments_notify','1','yes'),(12,'posts_per_rss','10','yes'),(13,'rss_use_excerpt','0','yes'),(14,'mailserver_url','mail.example.com','yes'),(15,'mailserver_login','login@example.com','yes'),(16,'mailserver_pass','password','yes'),(17,'mailserver_port','110','yes'),(18,'default_category','1','yes'),(19,'default_comment_status','open','yes'),(20,'default_ping_status','open','yes'),(21,'default_pingback_flag','1','yes'),(22,'posts_per_page','10','yes'),(23,'date_format','F j, Y','yes'),(24,'time_format','g:i a','yes'),(25,'links_updated_date_format','F j, Y g:i a','yes'),(26,'comment_moderation','0','yes'),(27,'moderation_notify','1','yes'),(28,'permalink_structure','/%year%/%monthnum%/%day%/%postname%/','yes'),(29,'rewrite_rules','a:90:{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:47:\"category/(.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:42:\"category/(.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:23:\"category/(.+?)/embed/?$\";s:46:\"index.php?category_name=$matches[1]&embed=true\";s:35:\"category/(.+?)/page/?([0-9]{1,})/?$\";s:53:\"index.php?category_name=$matches[1]&paged=$matches[2]\";s:17:\"category/(.+?)/?$\";s:35:\"index.php?category_name=$matches[1]\";s:44:\"tag/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:39:\"tag/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:20:\"tag/([^/]+)/embed/?$\";s:36:\"index.php?tag=$matches[1]&embed=true\";s:32:\"tag/([^/]+)/page/?([0-9]{1,})/?$\";s:43:\"index.php?tag=$matches[1]&paged=$matches[2]\";s:14:\"tag/([^/]+)/?$\";s:25:\"index.php?tag=$matches[1]\";s:45:\"type/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";s:40:\"type/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";s:21:\"type/([^/]+)/embed/?$\";s:44:\"index.php?post_format=$matches[1]&embed=true\";s:33:\"type/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?post_format=$matches[1]&paged=$matches[2]\";s:15:\"type/([^/]+)/?$\";s:33:\"index.php?post_format=$matches[1]\";s:48:\".*wp-(atom|rdf|rss|rss2|feed|commentsrss2)\\.php$\";s:18:\"index.php?feed=old\";s:20:\".*wp-app\\.php(/.*)?$\";s:19:\"index.php?error=403\";s:18:\".*wp-register.php$\";s:23:\"index.php?register=true\";s:32:\"feed/(feed|rdf|rss|rss2|atom)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:27:\"(feed|rdf|rss|rss2|atom)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:8:\"embed/?$\";s:21:\"index.php?&embed=true\";s:20:\"page/?([0-9]{1,})/?$\";s:28:\"index.php?&paged=$matches[1]\";s:27:\"comment-page-([0-9]{1,})/?$\";s:38:\"index.php?&page_id=5&cpage=$matches[1]\";s:41:\"comments/feed/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:36:\"comments/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:17:\"comments/embed/?$\";s:21:\"index.php?&embed=true\";s:44:\"search/(.+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";s:39:\"search/(.+)/(feed|rdf|rss|rss2|atom)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";s:20:\"search/(.+)/embed/?$\";s:34:\"index.php?s=$matches[1]&embed=true\";s:32:\"search/(.+)/page/?([0-9]{1,})/?$\";s:41:\"index.php?s=$matches[1]&paged=$matches[2]\";s:14:\"search/(.+)/?$\";s:23:\"index.php?s=$matches[1]\";s:47:\"author/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:42:\"author/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:23:\"author/([^/]+)/embed/?$\";s:44:\"index.php?author_name=$matches[1]&embed=true\";s:35:\"author/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?author_name=$matches[1]&paged=$matches[2]\";s:17:\"author/([^/]+)/?$\";s:33:\"index.php?author_name=$matches[1]\";s:69:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:64:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:45:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/embed/?$\";s:74:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&embed=true\";s:57:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:81:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&paged=$matches[4]\";s:39:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/?$\";s:63:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]\";s:56:\"([0-9]{4})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:51:\"([0-9]{4})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:32:\"([0-9]{4})/([0-9]{1,2})/embed/?$\";s:58:\"index.php?year=$matches[1]&monthnum=$matches[2]&embed=true\";s:44:\"([0-9]{4})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:65:\"index.php?year=$matches[1]&monthnum=$matches[2]&paged=$matches[3]\";s:26:\"([0-9]{4})/([0-9]{1,2})/?$\";s:47:\"index.php?year=$matches[1]&monthnum=$matches[2]\";s:43:\"([0-9]{4})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:38:\"([0-9]{4})/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:19:\"([0-9]{4})/embed/?$\";s:37:\"index.php?year=$matches[1]&embed=true\";s:31:\"([0-9]{4})/page/?([0-9]{1,})/?$\";s:44:\"index.php?year=$matches[1]&paged=$matches[2]\";s:13:\"([0-9]{4})/?$\";s:26:\"index.php?year=$matches[1]\";s: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: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: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:11:{i:0;s:19:\"akismet/akismet.php\";i:1;s:35:\"boldgrid-backup/boldgrid-backup.php\";i:2;s:75:\"columns-alignment-fix-for-elementor/columns-alignment-fix-for-elementor.php\";i:3;s:45:\"custom-typekit-fonts/custom-typekit-fonts.php\";i:4;s:43:\"display-php-version/display-php-version.php\";i:5;s:32:\"duplicate-page/duplicatepage.php\";i:6;s:31:\"elementor-pro/elementor-pro.php\";i:7;s:23:\"elementor/elementor.php\";i:8;s:9:\"hello.php\";i:9;s:61:\"premium-addons-for-elementor/premium-addons-for-elementor.php\";i:10;s:23:\"wordfence/wordfence.php\";}','yes'),(34,'category_base','','yes'),(35,'ping_sites','http://rpc.pingomatic.com/','yes'),(36,'comment_max_links','2','yes'),(37,'gmt_offset','0','yes'),(38,'default_email_category','1','yes'),(39,'recently_edited','a:3:{i:0;s:68:\"/home/ondisp5/public_html/wp/wp-content/themes/astra-child/style.css\";i:2;s:62:\"/home/ondisp5/public_html/wp/wp-content/themes/astra/style.css\";i:3;s:0:\"\";}','no'),(40,'template','astra','yes'),(41,'stylesheet','astra-child','yes'),(42,'comment_whitelist','1','yes'),(43,'blacklist_keys','','no'),(44,'comment_registration','0','yes'),(45,'html_type','text/html','yes'),(46,'use_trackback','0','yes'),(47,'default_role','subscriber','yes'),(48,'db_version','44719','yes'),(49,'uploads_use_yearmonth_folders','1','yes'),(50,'upload_path','','yes'),(51,'blog_public','1','yes'),(52,'default_link_category','2','yes'),(53,'show_on_front','page','yes'),(54,'tag_base','','yes'),(55,'show_avatars','1','yes'),(56,'avatar_rating','G','yes'),(57,'upload_url_path','','yes'),(58,'thumbnail_size_w','150','yes'),(59,'thumbnail_size_h','150','yes'),(60,'thumbnail_crop','1','yes'),(61,'medium_size_w','300','yes'),(62,'medium_size_h','300','yes'),(63,'avatar_default','mystery','yes'),(64,'large_size_w','1024','yes'),(65,'large_size_h','1024','yes'),(66,'image_default_link_type','none','yes'),(67,'image_default_size','','yes'),(68,'image_default_align','','yes'),(69,'close_comments_for_old_posts','0','yes'),(70,'close_comments_days_old','14','yes'),(71,'thread_comments','1','yes'),(72,'thread_comments_depth','5','yes'),(73,'page_comments','0','yes'),(74,'comments_per_page','50','yes'),(75,'default_comments_page','newest','yes'),(76,'comment_order','asc','yes'),(77,'sticky_posts','a:0:{}','yes'),(78,'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'),(79,'widget_text','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(80,'widget_rss','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(81,'uninstall_plugins','a:1:{s:23:\"elementor/elementor.php\";a:2:{i:0;s:21:\"Elementor\\Maintenance\";i:1;s:9:\"uninstall\";}}','no'),(82,'timezone_string','','yes'),(83,'page_for_posts','0','yes'),(84,'page_on_front','5','yes'),(85,'default_post_format','0','yes'),(86,'link_manager_enabled','0','yes'),(87,'finished_splitting_shared_terms','1','yes'),(88,'site_icon','0','yes'),(89,'medium_large_size_w','768','yes'),(90,'medium_large_size_h','0','yes'),(91,'wp_page_for_privacy_policy','3','yes'),(92,'show_comments_cookies_opt_in','1','yes'),(93,'initial_db_version','44719','yes'),(94,'wp_user_roles','a:5:{s:13:\"administrator\";a:2:{s:4:\"name\";s:13:\"Administrator\";s:12:\"capabilities\";a:64:{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:23:\"wf2fa_activate_2fa_self\";b:1;s:25:\"wf2fa_activate_2fa_others\";b:1;s:21:\"wf2fa_manage_settings\";b:1;}}s:6:\"editor\";a:2:{s:4:\"name\";s:6:\"Editor\";s:12:\"capabilities\";a:34:{s:17:\"moderate_comments\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:12:\"upload_files\";b:1;s:15:\"unfiltered_html\";b:1;s:10:\"edit_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:10:\"edit_pages\";b:1;s:4:\"read\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:17:\"edit_others_pages\";b:1;s:20:\"edit_published_pages\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_pages\";b:1;s:19:\"delete_others_pages\";b:1;s:22:\"delete_published_pages\";b:1;s:12:\"delete_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:22:\"delete_published_posts\";b:1;s:20:\"delete_private_posts\";b:1;s:18:\"edit_private_posts\";b:1;s:18:\"read_private_posts\";b:1;s:20:\"delete_private_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"read_private_pages\";b:1;}}s:6:\"author\";a:2:{s:4:\"name\";s:6:\"Author\";s:12:\"capabilities\";a:10:{s:12:\"upload_files\";b:1;s:10:\"edit_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:4:\"read\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:12:\"delete_posts\";b:1;s:22:\"delete_published_posts\";b:1;}}s:11:\"contributor\";a:2:{s:4:\"name\";s:11:\"Contributor\";s:12:\"capabilities\";a:5:{s:10:\"edit_posts\";b:1;s:4:\"read\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:12:\"delete_posts\";b:1;}}s:10:\"subscriber\";a:2:{s:4:\"name\";s:10:\"Subscriber\";s:12:\"capabilities\";a:2:{s:4:\"read\";b:1;s:7:\"level_0\";b:1;}}}','yes'),(95,'fresh_site','0','yes'),(96,'widget_search','a:2:{i:2;a:1:{s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}','yes'),(97,'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'),(98,'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'),(99,'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'),(100,'widget_meta','a:2:{i:2;a:1:{s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}','yes'),(101,'sidebars_widgets','a:10:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";a:6:{i:0;s:8:\"search-2\";i:1;s:14:\"recent-posts-2\";i:2;s:17:\"recent-comments-2\";i:3;s:10:\"archives-2\";i:4;s:12:\"categories-2\";i:5;s:6:\"meta-2\";}s:13:\"header-widget\";a:0:{}s:15:\"footer-widget-1\";a:0:{}s:15:\"footer-widget-2\";a:0:{}s:24:\"advanced-footer-widget-1\";a:0:{}s:24:\"advanced-footer-widget-2\";a:0:{}s:24:\"advanced-footer-widget-3\";a:0:{}s:24:\"advanced-footer-widget-4\";a:0:{}s:13:\"array_version\";i:3;}','yes'),(102,'cron','a:12:{i:1569416919;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:1569418798;a:1:{s:21:\"wordfence_ls_ntp_cron\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"hourly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:3600;}}}i:1569418804;a:1:{s:21:\"wordfence_hourly_cron\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"hourly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:3600;}}}i:1569456518;a:4:{s:32:\"recovery_mode_clean_expired_keys\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}s: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:1569456743;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:1569456744;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:1569457215;a:1:{s:28:\"elementor/tracker/send_event\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1569501604;a:1:{s:20:\"wordfence_daily_cron\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1569588600;a:1:{s:30:\"wordfence_start_scheduled_scan\";a:1:{s:32:\"a6a723853fdb1985e2bd627ab2de7e6f\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:1:{i:0;i:1569588600;}}}}i:1569847800;a:1:{s:30:\"wordfence_start_scheduled_scan\";a:1:{s:32:\"27555a0b635f3f4604c0c676989d5156\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:1:{i:0;i:1569847800;}}}}i:1569859200;a:1:{s:31:\"wordfence_email_activity_report\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:0:{}}}}s:7:\"version\";i:2;}','yes'),(103,'widget_pages','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(104,'widget_calendar','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(105,'widget_media_audio','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(106,'widget_media_image','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(107,'widget_media_gallery','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(108,'widget_media_video','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(109,'widget_tag_cloud','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(110,'widget_nav_menu','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(111,'widget_custom_html','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(112,'recovery_keys','a:0:{}','yes'),(113,'theme_mods_twentynineteen','a:2:{s:18:\"custom_css_post_id\";i:-1;s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1567902131;s:4:\"data\";a:2:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";a:6:{i:0;s:8:\"search-2\";i:1;s:14:\"recent-posts-2\";i:2;s:17:\"recent-comments-2\";i:3;s:10:\"archives-2\";i:4;s:12:\"categories-2\";i:5;s:6:\"meta-2\";}}}}','yes'),(121,'smm_version','1.3.1','yes'),(115,'_site_transient_update_core','O:8:\"stdClass\":4:{s:7:\"updates\";a:1:{i:0;O:8:\"stdClass\":10:{s:8:\"response\";s:6:\"latest\";s:8:\"download\";s:59:\"https://downloads.wordpress.org/release/wordpress-5.2.3.zip\";s:6:\"locale\";s:5:\"en_US\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:59:\"https://downloads.wordpress.org/release/wordpress-5.2.3.zip\";s:10:\"no_content\";s:70:\"https://downloads.wordpress.org/release/wordpress-5.2.3-no-content.zip\";s:11:\"new_bundled\";s:71:\"https://downloads.wordpress.org/release/wordpress-5.2.3-new-bundled.zip\";s:7:\"partial\";b:0;s:8:\"rollback\";b:0;}s:7:\"current\";s:5:\"5.2.3\";s:7:\"version\";s:5:\"5.2.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.0\";s:15:\"partial_version\";s:0:\"\";}}s:12:\"last_checked\";i:1569415228;s:15:\"version_checked\";s:5:\"5.2.3\";s:12:\"translations\";a:0:{}}','no'),(1197,'_site_transient_timeout_theme_roots','1569416955','no'),(1198,'_site_transient_theme_roots','a:5:{s:11:\"astra-child\";s:7:\"/themes\";s:5:\"astra\";s:7:\"/themes\";s:14:\"twentynineteen\";s:7:\"/themes\";s:15:\"twentyseventeen\";s:7:\"/themes\";s:13:\"twentysixteen\";s:7:\"/themes\";}','no'),(123,'wpforms_shareasale_id','1587694','yes'),(122,'disable_smm','0','yes'),(125,'widget_wpforms-widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(127,'boldgrid_settings','a:2:{s:7:\"library\";a:1:{s:35:\"boldgrid-backup/boldgrid-backup.php\";s:8:\"2.10.2.0\";}s:15:\"plugins_checked\";a:2:{s:35:\"boldgrid-backup/boldgrid-backup.php\";a:1:{s:5:\"1.8.0\";i:1567901655;}s:51:\"boldgrid-backup-premium/boldgrid-backup-premium.php\";a:1:{s:5:\"1.1.0\";i:1567901655;}}}','yes'),(128,'boldgrid_backup_id','9bbd3ac9','no'),(129,'boldgrid_backup_settings','a:11:{s:8:\"schedule\";a:10:{s:10:\"dow_sunday\";i:0;s:10:\"dow_monday\";i:0;s:11:\"dow_tuesday\";i:0;s:13:\"dow_wednesday\";i:0;s:12:\"dow_thursday\";i:0;s:10:\"dow_friday\";i:0;s:12:\"dow_saturday\";i:0;s:5:\"tod_h\";i:5;s:5:\"tod_m\";i:37;s:5:\"tod_a\";s:2:\"AM\";}s:15:\"retention_count\";i:5;s:18:\"notification_email\";s:33:\"maintenance@ondisplaycreative.com\";s:13:\"notifications\";a:2:{s:6:\"backup\";i:1;s:7:\"restore\";i:1;}s:11:\"auto_backup\";i:1;s:13:\"auto_rollback\";i:1;s:6:\"remote\";a:0:{}s:14:\"exclude_tables\";a:0:{}s:24:\"folder_exclusion_include\";s:18:\"WPCORE,/wp-content\";s:24:\"folder_exclusion_exclude\";s:17:\".git,node_modules\";s:16:\"backup_directory\";s:29:\"/home/ondisp5/boldgrid_backup\";}','no'),(132,'_site_transient_boldgrid_plugins_filtered','a:2:{s:35:\"boldgrid-backup/boldgrid-backup.php\";a:11:{s:4:\"Name\";s:15:\"BoldGrid Backup\";s:9:\"PluginURI\";s:41:\"https://www.boldgrid.com/boldgrid-backup/\";s:7:\"Version\";s:5:\"1.8.0\";s:11:\"Description\";s:81:\"BoldGrid Backup provides WordPress backup and restoration with update protection.\";s:6:\"Author\";s:8:\"BoldGrid\";s:9:\"AuthorURI\";s:25:\"https://www.boldgrid.com/\";s:10:\"TextDomain\";s:15:\"boldgrid-backup\";s:10:\"DomainPath\";s:10:\"/languages\";s:7:\"Network\";b:0;s:5:\"Title\";s:15:\"BoldGrid Backup\";s:10:\"AuthorName\";s:8:\"BoldGrid\";}s:51:\"boldgrid-backup-premium/boldgrid-backup-premium.php\";a:11:{s:4:\"Name\";s:23:\"BoldGrid Backup Premium\";s:9:\"PluginURI\";s:41:\"https://www.boldgrid.com/boldgrid-backup/\";s:7:\"Version\";s:5:\"1.1.0\";s:11:\"Description\";s:49:\"Premium extension for the BoldGrid Backup plugin.\";s:6:\"Author\";s:8:\"BoldGrid\";s:9:\"AuthorURI\";s:25:\"https://www.boldgrid.com/\";s:10:\"TextDomain\";s:15:\"boldgrid-backup\";s:10:\"DomainPath\";s:10:\"/languages\";s:7:\"Network\";b:0;s:5:\"Title\";s:23:\"BoldGrid Backup Premium\";s:10:\"AuthorName\";s:8:\"BoldGrid\";}}','no'),(135,'do_activate','0','yes'),(137,'_transient_timeout_jetpack_file_data_7.1.1','1570407143','no'),(138,'_transient_jetpack_file_data_7.1.1','a:62:{s:32:\"c22c48d7cfe9d38dff2864cfea64636a\";a:15:{s:4:\"name\";s:20:\"Spelling and Grammar\";s:11:\"description\";s:39:\"Check your spelling, style, and grammar\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:1:\"6\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"1.1\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:7:\"Writing\";s:7:\"feature\";s:7:\"Writing\";s:25:\"additional_search_queries\";s:115:\"after the deadline, afterthedeadline, spell, spellchecker, spelling, grammar, proofreading, style, language, cliche\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"933d4f6d290580156e0652ce850af1b2\";a:15:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:0:\"\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:0:\"\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:0:\"\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"fb5c4814ddc3946a3f22cc838fcb2af3\";a:15:{s:4:\"name\";s:8:\"Carousel\";s:11:\"description\";s:75:\"Display images and galleries in a gorgeous, full-screen browsing experience\";s:14:\"jumpstart_desc\";s:79:\"Brings your photos and images to life as full-size, easily navigable galleries.\";s:4:\"sort\";s:2:\"22\";s:20:\"recommendation_order\";s:2:\"12\";s:10:\"introduced\";s:3:\"1.5\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:17:\"Photos and Videos\";s:7:\"feature\";s:21:\"Appearance, Jumpstart\";s:25:\"additional_search_queries\";s:80:\"gallery, carousel, diaporama, slideshow, images, lightbox, exif, metadata, image\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"5813eda53235a9a81a69b1f6a4a15db6\";a:15:{s:4:\"name\";s:13:\"Comment Likes\";s:11:\"description\";s:64:\"Increase visitor engagement by adding a Like button to comments.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"39\";s:20:\"recommendation_order\";s:2:\"17\";s:10:\"introduced\";s:3:\"5.1\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:6:\"Social\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:37:\"like widget, like button, like, likes\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"7ef4ca32a1c84fc10ef50c8293cae5df\";a:15:{s:4:\"name\";s:8:\"Comments\";s:11:\"description\";s:80:\"Let readers use WordPress.com, Twitter, Facebook, or Google+ accounts to comment\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"20\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"1.4\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:6:\"Social\";s:7:\"feature\";s:10:\"Engagement\";s:25:\"additional_search_queries\";s:53:\"comments, comment, facebook, twitter, google+, social\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"c5331bfc2648dfeeebe486736d79a72c\";a:15:{s:4:\"name\";s:12:\"Contact Form\";s:11:\"description\";s:81:\"Add a customizable contact form to any post or page using the Jetpack Form Block.\";s:14:\"jumpstart_desc\";s:111:\"Adds a button to your post and page editors, allowing you to build simple forms to help visitors stay in touch.\";s:4:\"sort\";s:2:\"15\";s:20:\"recommendation_order\";s:2:\"14\";s:10:\"introduced\";s:3:\"1.3\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:5:\"Other\";s:7:\"feature\";s:18:\"Writing, Jumpstart\";s:25:\"additional_search_queries\";s:214:\"contact, form, grunion, feedback, submission, contact form, email, feedback, contact form plugin, custom form, custom form plugin, form builder, forms, form maker, survey, contact by jetpack, contact us, forms free\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"275642ae868612fff9f668ce23aef464\";a:15:{s:4:\"name\";s:9:\"Copy Post\";s:11:\"description\";s:53:\"Copy an existing post\'s content into a new draft post\";s:14:\"jumpstart_desc\";s:53:\"Copy an existing post\'s content into a new draft post\";s:4:\"sort\";s:2:\"15\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"7.0\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:7:\"Writing\";s:7:\"feature\";s:7:\"Writing\";s:25:\"additional_search_queries\";s:15:\"copy, duplicate\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"707c77d2e8cb0c12d094e5423c8beda8\";a:15:{s:4:\"name\";s:20:\"Custom content types\";s:11:\"description\";s:74:\"Display different types of content on your site with custom content types.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"34\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"3.1\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:7:\"Writing\";s:7:\"feature\";s:7:\"Writing\";s:25:\"additional_search_queries\";s:72:\"cpt, custom post types, portfolio, portfolios, testimonial, testimonials\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"cd499b1678cfe3aabfc8ca0d3eb7e8b9\";a:15:{s:4:\"name\";s:10:\"Custom CSS\";s:11:\"description\";s:53:\"Tweak your site’s CSS without modifying your theme.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:1:\"2\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"1.7\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:10:\"Appearance\";s:7:\"feature\";s:10:\"Appearance\";s:25:\"additional_search_queries\";s:108:\"css, customize, custom, style, editor, less, sass, preprocessor, font, mobile, appearance, theme, stylesheet\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"7d266d6546645f42cf52a66387699c50\";a:15:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:0:\"\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:0:\"\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:0:\"\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"5d436678d5e010ac6b0f157aa1021554\";a:15:{s:4:\"name\";s:21:\"Enhanced Distribution\";s:11:\"description\";s:27:\"Increase reach and traffic.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:1:\"5\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"1.2\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:6:\"Public\";s:11:\"module_tags\";s:7:\"Writing\";s:7:\"feature\";s:10:\"Engagement\";s:25:\"additional_search_queries\";s:54:\"google, seo, firehose, search, broadcast, broadcasting\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"2c9ff765b826940496a65c0f927a594a\";a:15:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:0:\"\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:0:\"\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:0:\"\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"092b94702bb483a5472578283c2103d6\";a:15:{s:4:\"name\";s:16:\"Google Analytics\";s:11:\"description\";s:56:\"Set up Google Analytics without touching a line of code.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"37\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"4.5\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:10:\"Engagement\";s:25:\"additional_search_queries\";s:37:\"webmaster, google, analytics, console\";s:12:\"plan_classes\";s:17:\"business, premium\";}s:32:\"6bd77e09440df2b63044cf8cb7963773\";a:15:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:0:\"\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:0:\"\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:0:\"\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"ee1a10e2ef5733ab19eb1eb552d5ecb3\";a:15:{s:4:\"name\";s:19:\"Gravatar Hovercards\";s:11:\"description\";s:58:\"Enable pop-up business cards over commenters’ Gravatars.\";s:14:\"jumpstart_desc\";s:131:\"Let commenters link their profiles to their Gravatar accounts, making it easy for your visitors to learn more about your community.\";s:4:\"sort\";s:2:\"11\";s:20:\"recommendation_order\";s:2:\"13\";s:10:\"introduced\";s:3:\"1.1\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:18:\"Social, Appearance\";s:7:\"feature\";s:21:\"Appearance, Jumpstart\";s:25:\"additional_search_queries\";s:20:\"gravatar, hovercards\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"284c08538b0bdc266315b2cf80b9c044\";a:15:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:0:\"\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:0:\"\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:0:\"\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"0ce5c3ac630dea9f41215e48bb0f52f3\";a:15:{s:4:\"name\";s:15:\"Infinite Scroll\";s:11:\"description\";s:53:\"Automatically load new content when a visitor scrolls\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"26\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"2.0\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:10:\"Appearance\";s:7:\"feature\";s:10:\"Appearance\";s:25:\"additional_search_queries\";s:33:\"scroll, infinite, infinite scroll\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"87da2858d4f9cadb6a44fdcf32e8d2b5\";a:15:{s:4:\"name\";s:8:\"JSON API\";s:11:\"description\";s:51:\"Allow applications to securely access your content.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"19\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"1.9\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:6:\"Public\";s:11:\"module_tags\";s:19:\"Writing, Developers\";s:7:\"feature\";s:7:\"General\";s:25:\"additional_search_queries\";s:50:\"api, rest, develop, developers, json, klout, oauth\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"004962cb7cb9ec2b64769ac4df509217\";a:15:{s:4:\"name\";s:14:\"Beautiful Math\";s:11:\"description\";s:57:\"Use LaTeX markup for complex equations and other geekery.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"12\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"1.1\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:7:\"Writing\";s:7:\"feature\";s:7:\"Writing\";s:25:\"additional_search_queries\";s:47:\"latex, math, equation, equations, formula, code\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"7f408184bee8850d439c01322867e72c\";a:15:{s:4:\"name\";s:11:\"Lazy Images\";s:11:\"description\";s:137:\"Speed up your site and create a smoother viewing experience by loading images as visitors scroll down the screen, instead of all at once.\";s:14:\"jumpstart_desc\";s:164:\"Lazy-loading images improve your site\'s speed and create a smoother viewing experience. Images will load as visitors scroll down the screen, instead of all at once.\";s:4:\"sort\";s:2:\"24\";s:20:\"recommendation_order\";s:2:\"14\";s:10:\"introduced\";s:5:\"5.6.0\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:23:\"Appearance, Recommended\";s:7:\"feature\";s:21:\"Appearance, Jumpstart\";s:25:\"additional_search_queries\";s:150:\"mobile, theme, fast images, fast image, image, lazy, lazy load, lazyload, images, lazy images, thumbnail, image lazy load, lazy loading, load, loading\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"2ad914b747f382ae918ed3b37077d4a1\";a:15:{s:4:\"name\";s:5:\"Likes\";s:11:\"description\";s:63:\"Give visitors an easy way to show they appreciate your content.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"23\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"2.2\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:6:\"Social\";s:7:\"feature\";s:10:\"Engagement\";s:25:\"additional_search_queries\";s:26:\"like, likes, wordpress.com\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"b347263e3470979442ebf0514e41e893\";a:15:{s:4:\"name\";s:6:\"Manage\";s:11:\"description\";s:54:\"Manage all of your sites from a centralized dashboard.\";s:14:\"jumpstart_desc\";s:151:\"Helps you remotely manage plugins, turn on automated updates, and more from <a href=\"https://wordpress.com/plugins/\" target=\"_blank\">wordpress.com</a>.\";s:4:\"sort\";s:1:\"1\";s:20:\"recommendation_order\";s:1:\"3\";s:10:\"introduced\";s:3:\"3.4\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:35:\"Centralized Management, Recommended\";s:7:\"feature\";s:7:\"General\";s:25:\"additional_search_queries\";s:26:\"manage, management, remote\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"589982245aa6f495b72ab7cf57a1a48e\";a:15:{s:4:\"name\";s:8:\"Markdown\";s:11:\"description\";s:50:\"Write posts or pages in plain-text Markdown syntax\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"31\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"2.8\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:7:\"Writing\";s:7:\"feature\";s:7:\"Writing\";s:25:\"additional_search_queries\";s:12:\"md, markdown\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"d3bec8e063d637bc285018241b783725\";a:15:{s:4:\"name\";s:21:\"WordPress.com Toolbar\";s:11:\"description\";s:91:\"Replaces the admin bar with a useful toolbar to quickly manage your site via WordPress.com.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"38\";s:20:\"recommendation_order\";s:2:\"16\";s:10:\"introduced\";s:3:\"4.8\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:7:\"General\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:19:\"adminbar, masterbar\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"6ab1c3e749bcfba2dedbaebe6c9fc614\";a:15:{s:4:\"name\";s:12:\"Mobile Theme\";s:11:\"description\";s:31:\"Enable the Jetpack Mobile theme\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"21\";s:20:\"recommendation_order\";s:2:\"11\";s:10:\"introduced\";s:3:\"1.8\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:31:\"Appearance, Mobile, Recommended\";s:7:\"feature\";s:10:\"Appearance\";s:25:\"additional_search_queries\";s:24:\"mobile, theme, minileven\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"b7be7da643ec641511839ecc6afb6def\";a:15:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:0:\"\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:0:\"\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:0:\"\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"d54f83ff429a8a37ace796de98459411\";a:15:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:0:\"\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:0:\"\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:0:\"\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"0f8b373fa12c825162c0b0bc20b8bbdd\";a:15:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:0:\"\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:0:\"\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:0:\"\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"5d7b0750cb34a4a72a44fa67790de639\";a:15:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:0:\"\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:0:\"\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:0:\"\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"f07fde8db279ffb0116c727df72c6374\";a:15:{s:4:\"name\";s:7:\"Monitor\";s:11:\"description\";s:118:\"Jetpack’s downtime monitoring will continuously watch your site, and alert you the moment that downtime is detected.\";s:14:\"jumpstart_desc\";s:61:\"Receive immediate notifications if your site goes down, 24/7.\";s:4:\"sort\";s:2:\"28\";s:20:\"recommendation_order\";s:2:\"10\";s:10:\"introduced\";s:3:\"2.6\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:11:\"Recommended\";s:7:\"feature\";s:19:\"Security, Jumpstart\";s:25:\"additional_search_queries\";s:123:\"monitor, uptime, downtime, monitoring, maintenance, maintenance mode, offline, site is down, site down, down, repair, error\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"136a5445a49150db75472862f3d3aefb\";a:15:{s:4:\"name\";s:13:\"Notifications\";s:11:\"description\";s:57:\"Receive instant notifications of site comments and likes.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"13\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"1.9\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:5:\"Other\";s:7:\"feature\";s:7:\"General\";s:25:\"additional_search_queries\";s:62:\"notification, notifications, toolbar, adminbar, push, comments\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"395d8ae651afabb54d1e98440674b384\";a:15:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:0:\"\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:0:\"\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:0:\"\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"0b7b5e3ff80355a67c5485b0d00cd1a2\";a:15:{s:4:\"name\";s:9:\"Asset CDN\";s:11:\"description\";s:154:\"Jetpack’s Site Accelerator loads your site faster by optimizing your images and serving your images and static files from our global network of servers.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"26\";s:20:\"recommendation_order\";s:1:\"1\";s:10:\"introduced\";s:3:\"6.6\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:42:\"Photos and Videos, Appearance, Recommended\";s:7:\"feature\";s:23:\"Recommended, Appearance\";s:25:\"additional_search_queries\";s:160:\"site accelerator, accelerate, static, assets, javascript, css, files, performance, seo, bandwidth, content delivery network, pagespeed, combine js, optimize css\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"4484ac68583fbbaab0ef698cdc986950\";a:15:{s:4:\"name\";s:9:\"Image CDN\";s:11:\"description\";s:141:\"Mirrors and serves your images from our free and fast image CDN, improving your site’s performance with no additional load on your servers.\";s:14:\"jumpstart_desc\";s:141:\"Mirrors and serves your images from our free and fast image CDN, improving your site’s performance with no additional load on your servers.\";s:4:\"sort\";s:2:\"25\";s:20:\"recommendation_order\";s:1:\"1\";s:10:\"introduced\";s:3:\"2.0\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:42:\"Photos and Videos, Appearance, Recommended\";s:7:\"feature\";s:34:\"Recommended, Jumpstart, Appearance\";s:25:\"additional_search_queries\";s:171:\"photon, photo cdn, image cdn, speed, compression, resize, responsive images, responsive, content distribution network, optimize, page speed, image optimize, photon jetpack\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"509aac35e28ac722a331f67613cd27ec\";a:15:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:0:\"\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:0:\"\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:0:\"\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"6f30193afa5b1360e3fa2676501b5e3a\";a:15:{s:4:\"name\";s:13:\"Post by email\";s:11:\"description\";s:33:\"Publish posts by sending an email\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"14\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"2.0\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:7:\"Writing\";s:7:\"feature\";s:7:\"Writing\";s:25:\"additional_search_queries\";s:20:\"post by email, email\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"3e9f8bd3755d92e8e5d06966a957beb8\";a:15:{s:4:\"name\";s:7:\"Protect\";s:11:\"description\";s:135:\"Protect yourself from brute force and distributed brute force attacks, which are the most common way for hackers to get into your site.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:1:\"1\";s:20:\"recommendation_order\";s:1:\"4\";s:10:\"introduced\";s:3:\"3.4\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:11:\"Recommended\";s:7:\"feature\";s:8:\"Security\";s:25:\"additional_search_queries\";s:173:\"security, jetpack protect, secure, protection, botnet, brute force, protect, login, bot, password, passwords, strong passwords, strong password, wp-login.php,  protect admin\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"0cacc8ab2145ad11cb54d181a98aa550\";a:15:{s:4:\"name\";s:9:\"Publicize\";s:11:\"description\";s:128:\"Publicize makes it easy to share your site’s posts on several social media networks automatically when you publish a new post.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"10\";s:20:\"recommendation_order\";s:1:\"7\";s:10:\"introduced\";s:3:\"2.0\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:19:\"Social, Recommended\";s:7:\"feature\";s:10:\"Engagement\";s:25:\"additional_search_queries\";s:220:\"facebook, jetpack publicize, twitter, tumblr, linkedin, social, tweet, connections, sharing, social media, automated, automated sharing, auto publish, auto tweet and like, auto tweet, facebook auto post, facebook posting\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"a528c2f803a92c5c2effa67cd33ab33a\";a:15:{s:4:\"name\";s:20:\"Progressive Web Apps\";s:11:\"description\";s:85:\"Speed up and improve the reliability of your site using the latest in web technology.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"38\";s:20:\"recommendation_order\";s:2:\"18\";s:10:\"introduced\";s:5:\"5.6.0\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:10:\"Developers\";s:7:\"feature\";s:7:\"Traffic\";s:25:\"additional_search_queries\";s:26:\"manifest, pwa, progressive\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"329b8efce059081d46936ece0c6736b3\";a:15:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:0:\"\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:0:\"\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:0:\"\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"5fdd42d482712fbdaf000b28ea7adce9\";a:15:{s:4:\"name\";s:13:\"Related posts\";s:11:\"description\";s:113:\"Keep visitors engaged on your blog by highlighting relevant and new content at the bottom of each published post.\";s:14:\"jumpstart_desc\";s:113:\"Keep visitors engaged on your blog by highlighting relevant and new content at the bottom of each published post.\";s:4:\"sort\";s:2:\"29\";s:20:\"recommendation_order\";s:1:\"9\";s:10:\"introduced\";s:3:\"2.9\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:11:\"Recommended\";s:7:\"feature\";s:21:\"Engagement, Jumpstart\";s:25:\"additional_search_queries\";s:360:\"related, jetpack related posts, related posts for wordpress, related posts, popular posts, popular, related content, related post, contextual, context, contextual related posts, related articles, similar posts, easy related posts, related page, simple related posts, free related posts, related thumbnails, similar, engagement, yet another related posts plugin\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"2c5096ef610018e98a8bcccfbea4471e\";a:15:{s:4:\"name\";s:6:\"Search\";s:11:\"description\";s:87:\"Enhanced search, powered by Elasticsearch, a powerful replacement for WordPress search.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"34\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"5.0\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:5:\"false\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:6:\"Search\";s:25:\"additional_search_queries\";s:110:\"search, elastic, elastic search, elasticsearch, fast search, search results, search performance, google search\";s:12:\"plan_classes\";s:8:\"business\";}s:32:\"0d81dd7df3ad2f245e84fd4fb66bf829\";a:15:{s:4:\"name\";s:9:\"SEO Tools\";s:11:\"description\";s:50:\"Better results on search engines and social media.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"35\";s:20:\"recommendation_order\";s:2:\"15\";s:10:\"introduced\";s:3:\"4.4\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:18:\"Social, Appearance\";s:7:\"feature\";s:7:\"Traffic\";s:25:\"additional_search_queries\";s:81:\"search engine optimization, social preview, meta description, custom title format\";s:12:\"plan_classes\";s:17:\"business, premium\";}s:32:\"32aaa676b3b6c9f3ef22430e1e0bca24\";a:15:{s:4:\"name\";s:7:\"Sharing\";s:11:\"description\";s:120:\"Add Twitter, Facebook and Google+ buttons at the bottom of each post, making it easy for visitors to share your content.\";s:14:\"jumpstart_desc\";s:119:\"Twitter, Facebook and many other buttons at the bottom of each post, making it easy for visitors to share your content.\";s:4:\"sort\";s:1:\"7\";s:20:\"recommendation_order\";s:1:\"6\";s:10:\"introduced\";s:3:\"1.1\";s:7:\"changed\";s:3:\"1.2\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:19:\"Social, Recommended\";s:7:\"feature\";s:21:\"Engagement, Jumpstart\";s:25:\"additional_search_queries\";s:229:\"share, sharing, sharedaddy, social buttons, buttons, share facebook, share twitter, social media sharing, social media share, social share, icons, email, facebook, twitter, linkedin, pinterest, pocket, social widget, social media\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"948472b453cda59b38bb7c37af889af0\";a:15:{s:4:\"name\";s:16:\"Shortcode Embeds\";s:11:\"description\";s:50:\"Embed media from popular sites without any coding.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:1:\"3\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"1.1\";s:7:\"changed\";s:3:\"1.2\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:46:\"Photos and Videos, Social, Writing, Appearance\";s:7:\"feature\";s:7:\"Writing\";s:25:\"additional_search_queries\";s:236:\"shortcodes, shortcode, embeds, media, bandcamp, dailymotion, facebook, flickr, google calendars, google maps, google+, polldaddy, recipe, recipes, scribd, slideshare, slideshow, slideshows, soundcloud, ted, twitter, vimeo, vine, youtube\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"7d00a6ca0a79fbe893275aaf6ed6ae42\";a:15:{s:4:\"name\";s:16:\"WP.me Shortlinks\";s:11:\"description\";s:54:\"Create short and simple links for all posts and pages.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:1:\"8\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"1.1\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:6:\"Social\";s:7:\"feature\";s:7:\"Writing\";s:25:\"additional_search_queries\";s:17:\"shortlinks, wp.me\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"372e711395f23c466e04d4fd07f73099\";a:15:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:0:\"\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:0:\"\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:0:\"\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"2ea687cec293289a2a3e5f0459e79768\";a:15:{s:4:\"name\";s:8:\"Sitemaps\";s:11:\"description\";s:50:\"Make it easy for search engines to find your site.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"13\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"3.9\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:6:\"Public\";s:11:\"module_tags\";s:20:\"Recommended, Traffic\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:39:\"sitemap, traffic, search, site map, seo\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"2fe9dc2c7389d4f0825a0b23bc8b19d1\";a:15:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:0:\"\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:0:\"\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:0:\"\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"e7cf8a7e0f151ccf7cbdc6d8f118f316\";a:15:{s:4:\"name\";s:14:\"Secure Sign On\";s:11:\"description\";s:62:\"Allow users to log into this site using WordPress.com accounts\";s:14:\"jumpstart_desc\";s:98:\"Lets you log in to all your Jetpack-enabled sites with one click using your WordPress.com account.\";s:4:\"sort\";s:2:\"30\";s:20:\"recommendation_order\";s:1:\"5\";s:10:\"introduced\";s:3:\"2.6\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:10:\"Developers\";s:7:\"feature\";s:19:\"Security, Jumpstart\";s:25:\"additional_search_queries\";s:34:\"sso, single sign on, login, log in\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"34fb073ed896af853ed48bd5739240cb\";a:15:{s:4:\"name\";s:10:\"Site Stats\";s:11:\"description\";s:44:\"Collect valuable traffic stats and insights.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:1:\"1\";s:20:\"recommendation_order\";s:1:\"2\";s:10:\"introduced\";s:3:\"1.1\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:23:\"Site Stats, Recommended\";s:7:\"feature\";s:10:\"Engagement\";s:25:\"additional_search_queries\";s:54:\"statistics, tracking, analytics, views, traffic, stats\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"8de0dfff24a17cf0fa0011dfc691a3f3\";a:15:{s:4:\"name\";s:13:\"Subscriptions\";s:11:\"description\";s:87:\"Allow users to subscribe to your posts and comments and receive notifications via email\";s:14:\"jumpstart_desc\";s:126:\"Give visitors two easy subscription options — while commenting, or via a separate email subscription widget you can display.\";s:4:\"sort\";s:1:\"9\";s:20:\"recommendation_order\";s:1:\"8\";s:10:\"introduced\";s:3:\"1.2\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:6:\"Social\";s:7:\"feature\";s:21:\"Engagement, Jumpstart\";s:25:\"additional_search_queries\";s:74:\"subscriptions, subscription, email, follow, followers, subscribers, signup\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"4744f348db095538d3edcacb0ed99c89\";a:15:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:0:\"\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:0:\"\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:0:\"\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"d89db0d934b39f86065ff58e73594070\";a:15:{s:4:\"name\";s:15:\"Tiled Galleries\";s:11:\"description\";s:61:\"Display image galleries in a variety of elegant arrangements.\";s:14:\"jumpstart_desc\";s:61:\"Display image galleries in a variety of elegant arrangements.\";s:4:\"sort\";s:2:\"24\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"2.1\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:17:\"Photos and Videos\";s:7:\"feature\";s:21:\"Appearance, Jumpstart\";s:25:\"additional_search_queries\";s:43:\"gallery, tiles, tiled, grid, mosaic, images\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"01987a7ba5e19786f2992501add8181a\";a:15:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:0:\"\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:0:\"\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:0:\"\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"20459cc462babfc5a82adf6b34f6e8b1\";a:15:{s:4:\"name\";s:20:\"Backups and Scanning\";s:11:\"description\";s:100:\"Protect your site with daily or real-time backups and automated virus scanning and threat detection.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"32\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:5:\"0:1.2\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:5:\"false\";s:4:\"free\";s:5:\"false\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:16:\"Security, Health\";s:25:\"additional_search_queries\";s:386:\"backup, cloud backup, database backup, restore, wordpress backup, backup plugin, wordpress backup plugin, back up, backup wordpress, backwpup, vaultpress, backups, off-site backups, offsite backup, offsite, off-site, antivirus, malware scanner, security, virus, viruses, prevent viruses, scan, anti-virus, antimalware, protection, safe browsing, malware, wp security, wordpress security\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"836245eb0a8f0c5272542305a88940c1\";a:15:{s:4:\"name\";s:17:\"Site verification\";s:11:\"description\";s:58:\"Establish your site\'s authenticity with external services.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"33\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"3.0\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:10:\"Engagement\";s:25:\"additional_search_queries\";s:56:\"webmaster, seo, google, bing, pinterest, search, console\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"e94397a5c47c1be995eff613e65a674f\";a:15:{s:4:\"name\";s:10:\"VideoPress\";s:11:\"description\";s:101:\"Save on hosting storage and bandwidth costs by streaming fast, ad-free video from our global network.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"27\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"2.5\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:5:\"false\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:17:\"Photos and Videos\";s:7:\"feature\";s:7:\"Writing\";s:25:\"additional_search_queries\";s:118:\"video, videos, videopress, video gallery, video player, videoplayer, mobile video, vimeo, youtube, html5 video, stream\";s:12:\"plan_classes\";s:17:\"business, premium\";}s:32:\"032cd76e08467c732ccb026efda0c9cd\";a:15:{s:4:\"name\";s:17:\"Widget Visibility\";s:11:\"description\";s:42:\"Control where widgets appear on your site.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"17\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"2.4\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:10:\"Appearance\";s:7:\"feature\";s:10:\"Appearance\";s:25:\"additional_search_queries\";s:54:\"widget visibility, logic, conditional, widgets, widget\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"9b3e84beedf2e96f1ac5dd6498d2b1aa\";a:15:{s:4:\"name\";s:21:\"Extra Sidebar Widgets\";s:11:\"description\";s:54:\"Add images, Twitter streams, and more to your sidebar.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:1:\"4\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"1.2\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:18:\"Social, Appearance\";s:7:\"feature\";s:10:\"Appearance\";s:25:\"additional_search_queries\";s:65:\"widget, widgets, facebook, gallery, twitter, gravatar, image, rss\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"7724fd9600745cf93e37cc09282e1a37\";a:15:{s:4:\"name\";s:3:\"Ads\";s:11:\"description\";s:60:\"Earn income by allowing Jetpack to display high quality ads.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:1:\"1\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:5:\"4.5.0\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:19:\"Traffic, Appearance\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:26:\"advertising, ad codes, ads\";s:12:\"plan_classes\";s:17:\"premium, business\";}s:32:\"5b8f8e5b5a1887e3c0393cb78d5143a3\";a:15:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:0:\"\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:0:\"\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:0:\"\";s:12:\"plan_classes\";s:0:\"\";}}','no'),(145,'_amn_wpforms-lite_last_checked','1567900800','yes'),(150,'wpforms_review','a:2:{s:4:\"time\";i:1567901544;s:9:\"dismissed\";b:0;}','yes'),(328,'_elementor_installed_time','1567902024','yes'),(329,'elementor_remote_info_library','a:3:{s:10:\"types_data\";a:2:{s:5:\"block\";a:1:{s:10:\"categories\";a:22:{i:0;s:8:\"404 page\";i:1;s:5:\"about\";i:2;s:7:\"archive\";i:3;s:14:\"call to action\";i:4;s:7:\"clients\";i:5;s:7:\"contact\";i:6;s:3:\"faq\";i:7;s:8:\"features\";i:8;s:6:\"footer\";i:9;s:6:\"header\";i:10;s:4:\"hero\";i:11;s:9:\"portfolio\";i:12;s:7:\"pricing\";i:13;s:15:\"product archive\";i:14;s:8:\"services\";i:15;s:11:\"single page\";i:16;s:11:\"single post\";i:17;s:14:\"single product\";i:18;s:5:\"stats\";i:19;s:9:\"subscribe\";i:20;s:4:\"team\";i:21;s:12:\"testimonials\";}}s:5:\"popup\";a:1:{s:10:\"categories\";a:6:{i:0;s:10:\"bottom bar\";i:1;s:7:\"classic\";i:2;s:6:\"fly-in\";i:3;s:11:\"full screen\";i:4;s:9:\"hello bar\";i:5;s:8:\"slide-in\";}}}s:10:\"categories\";s:247:\"[\"404 page\",\"about\",\"archive\",\"call to action\",\"clients\",\"contact\",\"faq\",\"features\",\"footer\",\"header\",\"hero\",\"portfolio\",\"pricing\",\"product archive\",\"services\",\"single page\",\"single post\",\"single product\",\"stats\",\"subscribe\",\"team\",\"testimonials\"]\";s:9:\"templates\";a:579:{i:0;a:14:{s:2:\"id\";s:4:\"5525\";s:5:\"title\";s:8:\"About 14\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_10.png\";s:12:\"tmpl_created\";s:10:\"1520443532\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/about-14/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"13\";s:11:\"trend_index\";s:1:\"7\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:1;a:14:{s:2:\"id\";s:5:\"10107\";s:5:\"title\";s:34:\"Classic | Promotion | Announcement\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/01/balls_small.png\";s:12:\"tmpl_created\";s:10:\"1547851373\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/popups/classic-promotion-announcement/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"312\";s:11:\"trend_index\";s:3:\"174\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:2;a:14:{s:2:\"id\";s:4:\"5533\";s:5:\"title\";s:8:\"About 15\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_10.png\";s:12:\"tmpl_created\";s:10:\"1520443534\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/about-15/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"41\";s:11:\"trend_index\";s:2:\"29\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:3;a:14:{s:2:\"id\";s:4:\"5575\";s:5:\"title\";s:5:\"CTA 7\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_3.png\";s:12:\"tmpl_created\";s:10:\"1520443543\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/cta-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"23\";s:11:\"trend_index\";s:2:\"12\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:4;a:14:{s:2:\"id\";s:4:\"5615\";s:5:\"title\";s:10:\"Features 6\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_5.png\";s:12:\"tmpl_created\";s:10:\"1520443551\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/features-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"features\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"39\";s:11:\"trend_index\";s:2:\"27\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:5;a:14:{s:2:\"id\";s:4:\"5624\";s:5:\"title\";s:10:\"Features 5\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_black_1.png\";s:12:\"tmpl_created\";s:10:\"1520443553\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/features-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"features\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"91\";s:11:\"trend_index\";s:2:\"88\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:6;a:14:{s:2:\"id\";s:4:\"5684\";s:5:\"title\";s:5:\"FAQ 8\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_white_1.png\";s:12:\"tmpl_created\";s:10:\"1520443565\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/faq-8/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"faq\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"78\";s:11:\"trend_index\";s:2:\"47\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:7;a:14:{s:2:\"id\";s:5:\"10158\";s:5:\"title\";s:17:\"Classic | Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/01/coco_small.png\";s:12:\"tmpl_created\";s:10:\"1547852227\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/popups/classic-contact/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"325\";s:11:\"trend_index\";s:3:\"192\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:8;a:14:{s:2:\"id\";s:4:\"5693\";s:5:\"title\";s:5:\"FAQ 9\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_black_1.png\";s:12:\"tmpl_created\";s:10:\"1520443567\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/faq-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"faq\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"213\";s:11:\"trend_index\";s:3:\"155\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:9;a:14:{s:2:\"id\";s:5:\"10169\";s:5:\"title\";s:37:\"Slide In | Register | Subscribe | App\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2019/01/slideinapp_small.png\";s:12:\"tmpl_created\";s:10:\"1547852334\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/popups/slide-in-register-subscribe-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"358\";s:11:\"trend_index\";s:3:\"331\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:10;a:14:{s:2:\"id\";s:4:\"5703\";s:5:\"title\";s:6:\"FAQ 13\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_white_2.png\";s:12:\"tmpl_created\";s:10:\"1520443569\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/faq-13/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"faq\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"38\";s:11:\"trend_index\";s:2:\"23\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:11;a:14:{s:2:\"id\";s:4:\"5711\";s:5:\"title\";s:5:\"FAQ 1\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_black_2.png\";s:12:\"tmpl_created\";s:10:\"1520443571\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/faq-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"faq\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"215\";s:11:\"trend_index\";s:3:\"215\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:12;a:14:{s:2:\"id\";s:5:\"10190\";s:5:\"title\";s:30:\"Classic | Register | Subscribe\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/01/engage_small.png\";s:12:\"tmpl_created\";s:10:\"1547885703\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/popups/classic-register-subscribe-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"334\";s:11:\"trend_index\";s:3:\"259\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:13;a:14:{s:2:\"id\";s:4:\"5719\";s:5:\"title\";s:5:\"FAQ 4\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_white_3.png\";s:12:\"tmpl_created\";s:10:\"1520443573\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/faq-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"faq\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"127\";s:11:\"trend_index\";s:3:\"125\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:14;a:14:{s:2:\"id\";s:4:\"5729\";s:5:\"title\";s:5:\"FAQ 5\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_black_3.png\";s:12:\"tmpl_created\";s:10:\"1520443575\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/faq-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"faq\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"309\";s:11:\"trend_index\";s:3:\"304\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:15;a:14:{s:2:\"id\";s:4:\"5737\";s:5:\"title\";s:6:\"FAQ 10\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_white_4.png\";s:12:\"tmpl_created\";s:10:\"1520443576\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/faq-10/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"faq\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"165\";s:11:\"trend_index\";s:3:\"145\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:16;a:14:{s:2:\"id\";s:4:\"5746\";s:5:\"title\";s:6:\"FAQ 11\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_black_4.png\";s:12:\"tmpl_created\";s:10:\"1520443578\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/faq-11/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"faq\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"207\";s:11:\"trend_index\";s:3:\"257\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:17;a:14:{s:2:\"id\";s:4:\"5755\";s:5:\"title\";s:5:\"FAQ 6\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_white_5.png\";s:12:\"tmpl_created\";s:10:\"1520443580\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/faq-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"faq\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"98\";s:11:\"trend_index\";s:2:\"78\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:18;a:14:{s:2:\"id\";s:4:\"5764\";s:5:\"title\";s:5:\"FAQ 7\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_black_5.png\";s:12:\"tmpl_created\";s:10:\"1520443582\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/faq-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"faq\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"306\";s:11:\"trend_index\";s:3:\"332\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:19;a:14:{s:2:\"id\";s:5:\"10256\";s:5:\"title\";s:20:\"Classic | Sale | Pop\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/01/fruit_small.png\";s:12:\"tmpl_created\";s:10:\"1547888909\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/popups/classic-sale-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"423\";s:11:\"trend_index\";s:3:\"303\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:20;a:14:{s:2:\"id\";s:4:\"5773\";s:5:\"title\";s:7:\"Hero 11\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/03/header_1.png\";s:12:\"tmpl_created\";s:10:\"1520443584\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/hero-11/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"37\";s:11:\"trend_index\";s:2:\"45\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:21;a:14:{s:2:\"id\";s:5:\"10267\";s:5:\"title\";s:29:\"Classic | Contact | Christmas\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2019/01/christmas_small.png\";s:12:\"tmpl_created\";s:10:\"1547889047\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/popups/classic-contact-christmas/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"382\";s:11:\"trend_index\";s:3:\"348\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:22;a:14:{s:2:\"id\";s:4:\"5783\";s:5:\"title\";s:7:\"Hero 10\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/03/header_2.png\";s:12:\"tmpl_created\";s:10:\"1520443586\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/hero-10/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"336\";s:11:\"trend_index\";s:3:\"315\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:23;a:14:{s:2:\"id\";s:4:\"5792\";s:5:\"title\";s:6:\"Hero 9\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/03/header_3.png\";s:12:\"tmpl_created\";s:10:\"1520443588\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/hero-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"228\";s:11:\"trend_index\";s:3:\"228\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:24;a:14:{s:2:\"id\";s:4:\"5801\";s:5:\"title\";s:6:\"Hero 7\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/03/header_4.png\";s:12:\"tmpl_created\";s:10:\"1520443589\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/hero-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:10:\"[\"header\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"24\";s:11:\"trend_index\";s:2:\"13\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:25;a:14:{s:2:\"id\";s:4:\"5811\";s:5:\"title\";s:6:\"Hero 8\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/03/header_5.png\";s:12:\"tmpl_created\";s:10:\"1520443591\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/hero-8/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"115\";s:11:\"trend_index\";s:2:\"82\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:26;a:14:{s:2:\"id\";s:5:\"10307\";s:5:\"title\";s:43:\"Fly In | Promotion | Christmas | Teddy Bear\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/01/teddy_small.png\";s:12:\"tmpl_created\";s:10:\"1547893266\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/popups/fly-in-promotion-christmas/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"515\";s:11:\"trend_index\";s:3:\"440\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:27;a:14:{s:2:\"id\";s:4:\"5820\";s:5:\"title\";s:9:\"Contact 2\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/contact_white_1.png\";s:12:\"tmpl_created\";s:10:\"1520443593\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/contact-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"contact\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"182\";s:11:\"trend_index\";s:3:\"216\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:28;a:14:{s:2:\"id\";s:5:\"10318\";s:5:\"title\";s:27:\"Classic | Contact | Bicycle\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2019/01/by_small.png\";s:12:\"tmpl_created\";s:10:\"1547893367\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/popups/classic-contact-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"374\";s:11:\"trend_index\";s:3:\"273\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:29;a:14:{s:2:\"id\";s:4:\"5828\";s:5:\"title\";s:9:\"Contact 3\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/contact_black_1.png\";s:12:\"tmpl_created\";s:10:\"1520443595\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/contact-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"contact\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"289\";s:11:\"trend_index\";s:3:\"312\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:30;a:14:{s:2:\"id\";s:4:\"5836\";s:5:\"title\";s:10:\"Contact 10\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/contact_white_2.png\";s:12:\"tmpl_created\";s:10:\"1520443597\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/contact-10/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"contact\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"118\";s:11:\"trend_index\";s:3:\"124\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:31;a:14:{s:2:\"id\";s:5:\"10339\";s:5:\"title\";s:22:\"Fly In | Contact | Spa\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/01/spa_small.png\";s:12:\"tmpl_created\";s:10:\"1547893603\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/popups/fly-in-contact-spa/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"419\";s:11:\"trend_index\";s:3:\"357\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:32;a:14:{s:2:\"id\";s:4:\"5844\";s:5:\"title\";s:10:\"Contact 11\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/contact_black_2.png\";s:12:\"tmpl_created\";s:10:\"1520443599\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/contact-11/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"contact\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"279\";s:11:\"trend_index\";s:3:\"298\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:33;a:14:{s:2:\"id\";s:5:\"10352\";s:5:\"title\";s:23:\"Fly In | Contact | Wine\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/01/fly_wine_small.png\";s:12:\"tmpl_created\";s:10:\"1547915335\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/popups/fly-in-contact/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"455\";s:11:\"trend_index\";s:3:\"378\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:34;a:14:{s:2:\"id\";s:4:\"5852\";s:5:\"title\";s:6:\"CTA 34\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2018/03/form_1.png\";s:12:\"tmpl_created\";s:10:\"1520443600\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-34/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:8:\"[\"form\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"449\";s:11:\"trend_index\";s:3:\"532\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:35;a:14:{s:2:\"id\";s:4:\"5947\";s:5:\"title\";s:7:\"Stats 8\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_white_1.png\";s:12:\"tmpl_created\";s:10:\"1520443621\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/stats-8/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"342\";s:11:\"trend_index\";s:3:\"328\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:36;a:14:{s:2:\"id\";s:5:\"10372\";s:5:\"title\";s:29:\"Fly In | Register | Subscribe\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/01/phone_small.png\";s:12:\"tmpl_created\";s:10:\"1547915554\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/popups/fly-in-register-subscribe-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"510\";s:11:\"trend_index\";s:3:\"528\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:37;a:14:{s:2:\"id\";s:4:\"5956\";s:5:\"title\";s:7:\"Stats 7\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_black_1.png\";s:12:\"tmpl_created\";s:10:\"1520443623\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/stats-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"441\";s:11:\"trend_index\";s:3:\"568\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:38;a:14:{s:2:\"id\";s:5:\"10382\";s:5:\"title\";s:35:\"Bottom Bar | Announcement | Cookies\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2019/01/bottom_pink_small.png\";s:12:\"tmpl_created\";s:10:\"1547916616\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/popups/bottom-bar-announcement/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"348\";s:11:\"trend_index\";s:3:\"226\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:39;a:14:{s:2:\"id\";s:4:\"5963\";s:5:\"title\";s:10:\"Features 7\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_white_2.png\";s:12:\"tmpl_created\";s:10:\"1520443626\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/features-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"features\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"75\";s:11:\"trend_index\";s:2:\"69\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:40;a:14:{s:2:\"id\";s:4:\"5974\";s:5:\"title\";s:10:\"Features 4\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_white_3.png\";s:12:\"tmpl_created\";s:10:\"1520443629\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/features-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"features\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"68\";s:11:\"trend_index\";s:2:\"48\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:41;a:14:{s:2:\"id\";s:4:\"5983\";s:5:\"title\";s:10:\"Features 3\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_black_3.png\";s:12:\"tmpl_created\";s:10:\"1520443630\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/features-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:11:\"[\"featues\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"245\";s:11:\"trend_index\";s:3:\"239\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:42;a:14:{s:2:\"id\";s:4:\"5991\";s:5:\"title\";s:11:\"Features 10\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_white_4.png\";s:12:\"tmpl_created\";s:10:\"1520443632\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/features-10/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"features\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"122\";s:11:\"trend_index\";s:3:\"122\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:43;a:14:{s:2:\"id\";s:4:\"5999\";s:5:\"title\";s:7:\"Team 14\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/team_black_10.png\";s:12:\"tmpl_created\";s:10:\"1520443634\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/team-14/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"83\";s:11:\"trend_index\";s:2:\"76\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:44;a:14:{s:2:\"id\";s:5:\"10434\";s:5:\"title\";s:27:\"Classic | Sale | Headphones\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/01/head_small.png\";s:12:\"tmpl_created\";s:10:\"1547961950\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/popups/classic-sale-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"399\";s:11:\"trend_index\";s:3:\"390\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:45;a:14:{s:2:\"id\";s:4:\"6008\";s:5:\"title\";s:6:\"Team 6\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_10.png\";s:12:\"tmpl_created\";s:10:\"1520443636\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/team-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"74\";s:11:\"trend_index\";s:2:\"67\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:46;a:14:{s:2:\"id\";s:5:\"10444\";s:5:\"title\";s:17:\"Classic | Contact\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/01/plant_small.png\";s:12:\"tmpl_created\";s:10:\"1547962029\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/popups/classic-contact-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"420\";s:11:\"trend_index\";s:3:\"340\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:47;a:14:{s:2:\"id\";s:4:\"6027\";s:5:\"title\";s:7:\"About 5\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_1-1.png\";s:12:\"tmpl_created\";s:10:\"1520443639\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/about-5-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"44\";s:11:\"trend_index\";s:2:\"35\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:48;a:14:{s:2:\"id\";s:4:\"6036\";s:5:\"title\";s:7:\"About 6\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_1-1.png\";s:12:\"tmpl_created\";s:10:\"1520443641\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/about-6-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"94\";s:11:\"trend_index\";s:2:\"94\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:49;a:14:{s:2:\"id\";s:5:\"10467\";s:5:\"title\";s:27:\"Bottom Bar | Contact | Lego\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/01/tro_small.png\";s:12:\"tmpl_created\";s:10:\"1547962277\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/popups/bottom-bar-contact/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"549\";s:11:\"trend_index\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:50;a:14:{s:2:\"id\";s:4:\"6044\";s:5:\"title\";s:11:\"Features 11\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_white_5.png\";s:12:\"tmpl_created\";s:10:\"1520443643\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/features-11/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"features\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"76\";s:11:\"trend_index\";s:2:\"74\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:51;a:14:{s:2:\"id\";s:4:\"6053\";s:5:\"title\";s:10:\"Features 1\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_black_5.png\";s:12:\"tmpl_created\";s:10:\"1520443645\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/features-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"features\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"171\";s:11:\"trend_index\";s:3:\"162\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:52;a:14:{s:2:\"id\";s:5:\"10487\";s:5:\"title\";s:18:\"Slide In | Contact\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/01/acc_small.png\";s:12:\"tmpl_created\";s:10:\"1547964527\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/popups/slide-in-contact-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"488\";s:11:\"trend_index\";s:3:\"491\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:53;a:14:{s:2:\"id\";s:4:\"6063\";s:5:\"title\";s:7:\"Stats 5\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_white_2.png\";s:12:\"tmpl_created\";s:10:\"1520443647\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/stats-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:11:\"[\"numbers\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"156\";s:11:\"trend_index\";s:3:\"146\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:54;a:14:{s:2:\"id\";s:5:\"10498\";s:5:\"title\";s:14:\"Classic | Sale\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/01/pink_small-1.png\";s:12:\"tmpl_created\";s:10:\"1547964616\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/popups/classic-sale-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"442\";s:11:\"trend_index\";s:3:\"359\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:55;a:14:{s:2:\"id\";s:4:\"6071\";s:5:\"title\";s:8:\"Stats 13\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_white_3.png\";s:12:\"tmpl_created\";s:10:\"1520443649\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/stats-13/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:11:\"[\"numbers\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"157\";s:11:\"trend_index\";s:3:\"139\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:56;a:14:{s:2:\"id\";s:4:\"6079\";s:5:\"title\";s:7:\"Stats 3\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_white_4.png\";s:12:\"tmpl_created\";s:10:\"1520443651\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/stats-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:11:\"[\"numbers\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"268\";s:11:\"trend_index\";s:3:\"310\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:57;a:14:{s:2:\"id\";s:5:\"10519\";s:5:\"title\";s:27:\"Hello Bar | Promotion | App\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/01/app_small-1.png\";s:12:\"tmpl_created\";s:10:\"1547964801\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/popups/hello-bar-promotion-app-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"507\";s:11:\"trend_index\";s:3:\"496\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:58;a:14:{s:2:\"id\";s:4:\"6089\";s:5:\"title\";s:7:\"Stats 4\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_white_5.png\";s:12:\"tmpl_created\";s:10:\"1520443653\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/stats-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"183\";s:11:\"trend_index\";s:3:\"191\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:59;a:14:{s:2:\"id\";s:4:\"6097\";s:5:\"title\";s:7:\"Stats 6\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_black_2.png\";s:12:\"tmpl_created\";s:10:\"1520443655\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/stats-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:11:\"[\"numbers\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"263\";s:11:\"trend_index\";s:3:\"236\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:60;a:14:{s:2:\"id\";s:4:\"6106\";s:5:\"title\";s:7:\"Stats 2\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_white_6.png\";s:12:\"tmpl_created\";s:10:\"1520443657\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/stats-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:11:\"[\"numbers\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"323\";s:11:\"trend_index\";s:3:\"336\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:61;a:14:{s:2:\"id\";s:4:\"6114\";s:5:\"title\";s:7:\"Stats 1\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_black_6.png\";s:12:\"tmpl_created\";s:10:\"1520443659\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/stats-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:11:\"[\"numbers\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"356\";s:11:\"trend_index\";s:3:\"403\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:62;a:14:{s:2:\"id\";s:4:\"6122\";s:5:\"title\";s:7:\"About 8\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_2-1.png\";s:12:\"tmpl_created\";s:10:\"1520443661\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/about-8/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"40\";s:11:\"trend_index\";s:2:\"34\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:63;a:14:{s:2:\"id\";s:5:\"10569\";s:5:\"title\";s:15:\"Slide In | Sale\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/01/off_small.png\";s:12:\"tmpl_created\";s:10:\"1547967812\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/popups/slide-in-sale/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"476\";s:11:\"trend_index\";s:3:\"425\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:64;a:14:{s:2:\"id\";s:4:\"6135\";s:5:\"title\";s:8:\"About 10\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_2.png\";s:12:\"tmpl_created\";s:10:\"1520443663\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/about-10/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"88\";s:11:\"trend_index\";s:2:\"86\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:65;a:14:{s:2:\"id\";s:4:\"6144\";s:5:\"title\";s:7:\"Team 17\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_11.png\";s:12:\"tmpl_created\";s:10:\"1520443664\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/team-17/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"150\";s:11:\"trend_index\";s:3:\"169\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:66;a:14:{s:2:\"id\";s:5:\"10590\";s:5:\"title\";s:19:\"Full Screen | Login\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/01/pass1_small.png\";s:12:\"tmpl_created\";s:10:\"1547967978\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/popups/classic-login-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"460\";s:11:\"trend_index\";s:3:\"369\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:67;a:14:{s:2:\"id\";s:4:\"6152\";s:5:\"title\";s:7:\"Stats 9\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/progress_black_1.png\";s:12:\"tmpl_created\";s:10:\"1520443666\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/stats-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"239\";s:11:\"trend_index\";s:3:\"248\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:68;a:14:{s:2:\"id\";s:5:\"10600\";s:5:\"title\";s:18:\"Slide In | Contact\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/01/orange_small.png\";s:12:\"tmpl_created\";s:10:\"1547968080\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/popups/slide-in-contact-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"458\";s:11:\"trend_index\";s:3:\"420\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:69;a:14:{s:2:\"id\";s:4:\"6162\";s:5:\"title\";s:11:\"Services 31\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/progress_white_1.png\";s:12:\"tmpl_created\";s:10:\"1520443668\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/services-31/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"319\";s:11:\"trend_index\";s:3:\"385\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:70;a:14:{s:2:\"id\";s:4:\"6170\";s:5:\"title\";s:8:\"Stats 11\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/progress_black_2.png\";s:12:\"tmpl_created\";s:10:\"1520443670\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/stats-11/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"320\";s:11:\"trend_index\";s:3:\"271\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:71;a:14:{s:2:\"id\";s:5:\"10622\";s:5:\"title\";s:34:\"Full Screen | Contact | Headphones\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2019/01/full_hear_small.png\";s:12:\"tmpl_created\";s:10:\"1547969678\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/popups/full-screen-contact-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"473\";s:11:\"trend_index\";s:3:\"432\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:72;a:14:{s:2:\"id\";s:4:\"6178\";s:5:\"title\";s:8:\"Stats 10\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/progress_white_2.png\";s:12:\"tmpl_created\";s:10:\"1520443676\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/stats-10/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"359\";s:11:\"trend_index\";s:3:\"354\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:73;a:14:{s:2:\"id\";s:5:\"10633\";s:5:\"title\";s:23:\"Slide In | Login | Lego\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/01/tro_small-1.png\";s:12:\"tmpl_created\";s:10:\"1547969858\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/popups/slide-in-login/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"532\";s:11:\"trend_index\";s:3:\"505\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:74;a:14:{s:2:\"id\";s:4:\"6186\";s:5:\"title\";s:8:\"Stats 12\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/progress_white_3.png\";s:12:\"tmpl_created\";s:10:\"1520443678\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/stats-12/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"413\";s:11:\"trend_index\";s:3:\"446\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:75;a:14:{s:2:\"id\";s:5:\"10644\";s:5:\"title\";s:26:\"Fly In | Contact | Webinar\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/01/blue_small-1.png\";s:12:\"tmpl_created\";s:10:\"1547970814\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/popups/fly-in-contact-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"446\";s:11:\"trend_index\";s:3:\"356\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:76;a:14:{s:2:\"id\";s:4:\"6196\";s:5:\"title\";s:10:\"Features 9\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_white_6.png\";s:12:\"tmpl_created\";s:10:\"1520443680\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/features-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"features\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"110\";s:11:\"trend_index\";s:3:\"100\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:77;a:14:{s:2:\"id\";s:5:\"10654\";s:5:\"title\";s:31:\"Full Screen | Login | Christmas\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2019/01/full_login_small.png\";s:12:\"tmpl_created\";s:10:\"1547970917\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/popups/full-screen-login-christmas/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"517\";s:11:\"trend_index\";s:3:\"531\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:78;a:14:{s:2:\"id\";s:4:\"6204\";s:5:\"title\";s:10:\"Features 8\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/progress_black_6.png\";s:12:\"tmpl_created\";s:10:\"1520443681\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/features-8/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"features\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"216\";s:11:\"trend_index\";s:3:\"230\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:79;a:14:{s:2:\"id\";s:5:\"10664\";s:5:\"title\";s:34:\"Slide In | Contact | Gym | Fitness\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2019/01/slide_gym_small.png\";s:12:\"tmpl_created\";s:10:\"1547973928\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/popups/slide-in-contact-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"470\";s:11:\"trend_index\";s:3:\"468\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:80;a:14:{s:2:\"id\";s:4:\"6212\";s:5:\"title\";s:11:\"Features 12\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_white_7.png\";s:12:\"tmpl_created\";s:10:\"1520443684\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/features-12/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"features\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"82\";s:11:\"trend_index\";s:2:\"84\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:81;a:14:{s:2:\"id\";s:5:\"10675\";s:5:\"title\";s:35:\"Full Screen | Login | Gym | Fitness\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/01/gym_full_small.png\";s:12:\"tmpl_created\";s:10:\"1547974110\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/popups/full-screen-login-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"465\";s:11:\"trend_index\";s:3:\"499\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:82;a:14:{s:2:\"id\";s:4:\"6220\";s:5:\"title\";s:10:\"Features 2\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_white_8.png\";s:12:\"tmpl_created\";s:10:\"1520443685\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/features-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"features\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"86\";s:11:\"trend_index\";s:2:\"70\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:83;a:14:{s:2:\"id\";s:4:\"6230\";s:5:\"title\";s:6:\"Hero 6\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/heroo_white_1.png\";s:12:\"tmpl_created\";s:10:\"1520443687\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/hero-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"360\";s:11:\"trend_index\";s:3:\"372\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:84;a:14:{s:2:\"id\";s:4:\"9719\";s:5:\"title\";s:30:\"Classic | Subscribe | Register\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/01/register_small.png\";s:12:\"tmpl_created\";s:10:\"1547976107\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/popups/classic-subscribe-register/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"435\";s:11:\"trend_index\";s:3:\"364\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:85;a:14:{s:2:\"id\";s:4:\"6239\";s:5:\"title\";s:6:\"Hero 3\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/heroo_black_1.png\";s:12:\"tmpl_created\";s:10:\"1520443689\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/hero-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"29\";s:11:\"trend_index\";s:2:\"19\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:86;a:14:{s:2:\"id\";s:4:\"6249\";s:5:\"title\";s:6:\"Hero 5\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/heroo_black_2.png\";s:12:\"tmpl_created\";s:10:\"1520443691\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/hero-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"63\";s:11:\"trend_index\";s:2:\"58\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:87;a:14:{s:2:\"id\";s:4:\"6258\";s:5:\"title\";s:6:\"Hero 4\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/heroo_black_3.png\";s:12:\"tmpl_created\";s:10:\"1520443693\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/hero-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"390\";s:11:\"trend_index\";s:3:\"490\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:88;a:14:{s:2:\"id\";s:5:\"10137\";s:5:\"title\";s:34:\"Full Screen | Contact | Restaurant\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/01/rest_small.png\";s:12:\"tmpl_created\";s:10:\"1547976342\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/popups/full-screen-contact/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"480\";s:11:\"trend_index\";s:3:\"384\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:89;a:14:{s:2:\"id\";s:4:\"6266\";s:5:\"title\";s:6:\"Hero 1\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/heroo_black_4.png\";s:12:\"tmpl_created\";s:10:\"1520443695\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/hero-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"55\";s:11:\"trend_index\";s:2:\"51\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:90;a:14:{s:2:\"id\";s:5:\"10244\";s:5:\"title\";s:17:\"Bottom Bar | Sale\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/01/wow_small.png\";s:12:\"tmpl_created\";s:10:\"1547976402\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/popups/bottom-bar-sale/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"504\";s:11:\"trend_index\";s:3:\"495\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:91;a:14:{s:2:\"id\";s:4:\"6274\";s:5:\"title\";s:6:\"Hero 2\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/heroo_black_5.png\";s:12:\"tmpl_created\";s:10:\"1520443698\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/hero-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"101\";s:11:\"trend_index\";s:3:\"129\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:92;a:14:{s:2:\"id\";s:4:\"6017\";s:5:\"title\";s:6:\"CTA 14\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_14.png\";s:12:\"tmpl_created\";s:10:\"1520520331\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-14/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"164\";s:11:\"trend_index\";s:3:\"140\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:93;a:14:{s:2:\"id\";s:5:\"10127\";s:5:\"title\";s:35:\"Fly In | Announcement | Maintenance\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/01/pizza_small.png\";s:12:\"tmpl_created\";s:10:\"1547984061\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/popups/fly-in-announcement-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"551\";s:11:\"trend_index\";s:3:\"530\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:94;a:14:{s:2:\"id\";s:4:\"4826\";s:5:\"title\";s:14:\"Testimonial 24\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_1.png\";s:12:\"tmpl_created\";s:10:\"1520520544\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/testimonial-24-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"259\";s:11:\"trend_index\";s:3:\"245\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:95;a:14:{s:2:\"id\";s:4:\"4835\";s:5:\"title\";s:14:\"Testimonial 16\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_1.png\";s:12:\"tmpl_created\";s:10:\"1520520546\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/testimonial-16/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"365\";s:11:\"trend_index\";s:3:\"405\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:96;a:14:{s:2:\"id\";s:4:\"4843\";s:5:\"title\";s:14:\"Testimonial 18\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_2.png\";s:12:\"tmpl_created\";s:10:\"1520520548\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/testimonial-18/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"388\";s:11:\"trend_index\";s:3:\"371\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:97;a:14:{s:2:\"id\";s:4:\"4854\";s:5:\"title\";s:14:\"Testimonial 13\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_2.png\";s:12:\"tmpl_created\";s:10:\"1520520549\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/testimonial-13/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"472\";s:11:\"trend_index\";s:3:\"456\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:98;a:14:{s:2:\"id\";s:4:\"4863\";s:5:\"title\";s:14:\"Testimonial 19\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_3.png\";s:12:\"tmpl_created\";s:10:\"1520520551\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/testimonial-19/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"254\";s:11:\"trend_index\";s:3:\"277\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:99;a:14:{s:2:\"id\";s:5:\"10776\";s:5:\"title\";s:33:\"Fly In | Contact | Social | Share\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/01/social1_small.png\";s:12:\"tmpl_created\";s:10:\"1548047055\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/popups/fly-in-contact-social-share/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"541\";s:11:\"trend_index\";s:3:\"564\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:100;a:14:{s:2:\"id\";s:4:\"4871\";s:5:\"title\";s:14:\"Testimonial 12\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_3.png\";s:12:\"tmpl_created\";s:10:\"1520520552\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/testimonial-12/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"242\";s:11:\"trend_index\";s:3:\"217\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:101;a:14:{s:2:\"id\";s:5:\"10785\";s:5:\"title\";s:33:\"Fly In | Contact | Social | Share\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/01/social2_small.png\";s:12:\"tmpl_created\";s:10:\"1548047593\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/popups/fly-in-contact-social-share-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"451\";s:11:\"trend_index\";s:3:\"305\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:102;a:14:{s:2:\"id\";s:4:\"4880\";s:5:\"title\";s:14:\"Testimonial 20\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/customers-1.jpg\";s:12:\"tmpl_created\";s:10:\"1520520554\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/testimonial-20/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"371\";s:11:\"trend_index\";s:3:\"365\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:103;a:14:{s:2:\"id\";s:4:\"4889\";s:5:\"title\";s:14:\"Testimonial 11\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/customers-2.jpg\";s:12:\"tmpl_created\";s:10:\"1520520556\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/testimonial-11/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"425\";s:11:\"trend_index\";s:3:\"493\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:104;a:14:{s:2:\"id\";s:4:\"4897\";s:5:\"title\";s:14:\"Testimonial 21\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_5.png\";s:12:\"tmpl_created\";s:10:\"1520520557\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/testimonial-21/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"81\";s:11:\"trend_index\";s:2:\"62\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:105;a:14:{s:2:\"id\";s:4:\"4905\";s:5:\"title\";s:14:\"Testimonial 22\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_6.png\";s:12:\"tmpl_created\";s:10:\"1520520559\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/testimonial-22/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"114\";s:11:\"trend_index\";s:2:\"79\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:106;a:14:{s:2:\"id\";s:4:\"4913\";s:5:\"title\";s:14:\"Testimonial 23\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_7.png\";s:12:\"tmpl_created\";s:10:\"1520520561\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/testimonial-23/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"237\";s:11:\"trend_index\";s:3:\"178\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:107;a:14:{s:2:\"id\";s:4:\"4921\";s:5:\"title\";s:14:\"Testimonial 10\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_5.png\";s:12:\"tmpl_created\";s:10:\"1520520562\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/testimonial-10/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"217\";s:11:\"trend_index\";s:3:\"222\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:108;a:14:{s:2:\"id\";s:4:\"4929\";s:5:\"title\";s:14:\"Testimonial 24\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_8.png\";s:12:\"tmpl_created\";s:10:\"1520520564\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/testimonial-24/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"45\";s:11:\"trend_index\";s:2:\"36\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:109;a:14:{s:2:\"id\";s:4:\"4939\";s:5:\"title\";s:13:\"Testimonial 9\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_8.png\";s:12:\"tmpl_created\";s:10:\"1520520565\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/blocks/testimonial-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"90\";s:11:\"trend_index\";s:2:\"73\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:110;a:14:{s:2:\"id\";s:4:\"4947\";s:5:\"title\";s:14:\"Testimonial 27\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_9.png\";s:12:\"tmpl_created\";s:10:\"1520520567\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/testimonial-27/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"192\";s:11:\"trend_index\";s:3:\"166\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:111;a:14:{s:2:\"id\";s:4:\"4955\";s:5:\"title\";s:14:\"Testimonial 29\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_9.png\";s:12:\"tmpl_created\";s:10:\"1520520569\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/testimonial-29/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"321\";s:11:\"trend_index\";s:3:\"301\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:112;a:14:{s:2:\"id\";s:4:\"4963\";s:5:\"title\";s:14:\"Testimonial 25\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_10.png\";s:12:\"tmpl_created\";s:10:\"1520520570\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/testimonial-25-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"377\";s:11:\"trend_index\";s:3:\"349\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:113;a:14:{s:2:\"id\";s:4:\"4971\";s:5:\"title\";s:14:\"Testimonial 26\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_11.png\";s:12:\"tmpl_created\";s:10:\"1520520572\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/testimonial-26/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"485\";s:11:\"trend_index\";s:3:\"510\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:114;a:14:{s:2:\"id\";s:4:\"4979\";s:5:\"title\";s:14:\"Testimonial 15\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_10.png\";s:12:\"tmpl_created\";s:10:\"1520520573\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/testimonial-15/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"443\";s:11:\"trend_index\";s:3:\"423\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:115;a:14:{s:2:\"id\";s:4:\"4987\";s:5:\"title\";s:14:\"Testimonial 17\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_12-1.png\";s:12:\"tmpl_created\";s:10:\"1520520575\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/testimonial-17/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"145\";s:11:\"trend_index\";s:3:\"121\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:116;a:14:{s:2:\"id\";s:4:\"4995\";s:5:\"title\";s:14:\"Testimonial 14\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_12.png\";s:12:\"tmpl_created\";s:10:\"1520520577\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/testimonial-14/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"352\";s:11:\"trend_index\";s:3:\"324\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:117;a:14:{s:2:\"id\";s:4:\"5007\";s:5:\"title\";s:11:\"Portfolio 7\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_1.png\";s:12:\"tmpl_created\";s:10:\"1520520578\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/portfolio-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"portfolio\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"48\";s:11:\"trend_index\";s:2:\"40\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:118;a:14:{s:2:\"id\";s:4:\"5019\";s:5:\"title\";s:11:\"Portfolio 1\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_black_1.png\";s:12:\"tmpl_created\";s:10:\"1520520580\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/portfolio-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"portfolio\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"167\";s:11:\"trend_index\";s:3:\"180\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:119;a:14:{s:2:\"id\";s:4:\"5027\";s:5:\"title\";s:12:\"Portfolio 11\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_2.png\";s:12:\"tmpl_created\";s:10:\"1520520581\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/blocks/portfolio-11/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"portfolio\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"295\";s:11:\"trend_index\";s:3:\"334\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:120;a:14:{s:2:\"id\";s:5:\"10794\";s:5:\"title\";s:34:\"Classic | Contact | Social | Share\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2019/01/s_small.png\";s:12:\"tmpl_created\";s:10:\"1548067619\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/popups/classic-contact-social-share/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"450\";s:11:\"trend_index\";s:3:\"426\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:121;a:14:{s:2:\"id\";s:4:\"5037\";s:5:\"title\";s:12:\"Portfolio 12\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_3.png\";s:12:\"tmpl_created\";s:10:\"1520520583\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/blocks/portfolio-12/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"portfolio\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"264\";s:11:\"trend_index\";s:3:\"232\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:122;a:14:{s:2:\"id\";s:4:\"5057\";s:5:\"title\";s:12:\"Portfolio 13\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_4.png\";s:12:\"tmpl_created\";s:10:\"1520520586\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/blocks/portfolio-13/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"portfolio\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"221\";s:11:\"trend_index\";s:3:\"250\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:123;a:14:{s:2:\"id\";s:4:\"5071\";s:5:\"title\";s:12:\"Portfolio 14\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_5.png\";s:12:\"tmpl_created\";s:10:\"1520520588\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/blocks/portfolio-14/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"portfolio\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"270\";s:11:\"trend_index\";s:3:\"235\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:124;a:14:{s:2:\"id\";s:5:\"10871\";s:5:\"title\";s:20:\"Bottom Bar | Contact\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2019/01/m_small.png\";s:12:\"tmpl_created\";s:10:\"1548074396\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/popups/bottom-bar-contact-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"535\";s:11:\"trend_index\";s:3:\"463\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:125;a:14:{s:2:\"id\";s:4:\"5082\";s:5:\"title\";s:11:\"Portfolio 4\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_black_4.png\";s:12:\"tmpl_created\";s:10:\"1520520589\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/portfolio-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"portfolio\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"408\";s:11:\"trend_index\";s:3:\"383\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:126;a:14:{s:2:\"id\";s:5:\"10936\";s:5:\"title\";s:25:\"Full Screen | Toggle Menu\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/01/menu_small.png\";s:12:\"tmpl_created\";s:10:\"1548874587\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/popups/full-screen-toggle-menu/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"432\";s:11:\"trend_index\";s:3:\"460\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:127;a:14:{s:2:\"id\";s:4:\"5090\";s:5:\"title\";s:12:\"Portfolio 15\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_6.png\";s:12:\"tmpl_created\";s:10:\"1520520591\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/blocks/portfolio-15/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"portfolio\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"188\";s:11:\"trend_index\";s:3:\"195\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:128;a:14:{s:2:\"id\";s:4:\"5098\";s:5:\"title\";s:12:\"Portfolio 16\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_7.png\";s:12:\"tmpl_created\";s:10:\"1520520593\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/blocks/portfolio-16/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"portfolio\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"158\";s:11:\"trend_index\";s:3:\"175\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:129;a:14:{s:2:\"id\";s:4:\"5107\";s:5:\"title\";s:11:\"Portfolio 5\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_black_7.png\";s:12:\"tmpl_created\";s:10:\"1520520594\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/portfolio-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"portfolio\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"347\";s:11:\"trend_index\";s:3:\"333\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:130;a:14:{s:2:\"id\";s:5:\"10964\";s:5:\"title\";s:59:\"Classic | Promotion | Coupon | Love | Valentine&#8217;s Day\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/02/love_small.png\";s:12:\"tmpl_created\";s:10:\"1550039106\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/popups/classic-promotion-coupon/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"525\";s:11:\"trend_index\";s:3:\"411\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:131;a:14:{s:2:\"id\";s:4:\"5115\";s:5:\"title\";s:12:\"Portfolio 17\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_8.png\";s:12:\"tmpl_created\";s:10:\"1520520596\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/blocks/portfolio-17/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"portfolio\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"26\";s:11:\"trend_index\";s:2:\"18\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:132;a:14:{s:2:\"id\";s:5:\"10992\";s:5:\"title\";s:59:\"Classic | Promotion | Coupon | Love | Valentine&#8217;s Day\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2019/02/h_small.png\";s:12:\"tmpl_created\";s:10:\"1550072007\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:141:\"https://library.elementor.com/popups/classic-promotion-coupon-love-valentines-day/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"534\";s:11:\"trend_index\";s:3:\"524\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:133;a:14:{s:2:\"id\";s:4:\"5125\";s:5:\"title\";s:11:\"Portfolio 6\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_black_8.png\";s:12:\"tmpl_created\";s:10:\"1520520597\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/portfolio-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"portfolio\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"236\";s:11:\"trend_index\";s:3:\"185\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:134;a:14:{s:2:\"id\";s:5:\"11005\";s:5:\"title\";s:50:\"Classic | Promotion | Love | Valentine&#8217;s Day\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/02/bear_small.png\";s:12:\"tmpl_created\";s:10:\"1550073303\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/classic-promotion-love-valentines-day/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"540\";s:11:\"trend_index\";s:3:\"563\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:135;a:14:{s:2:\"id\";s:4:\"5133\";s:5:\"title\";s:12:\"Portfolio 18\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_9.png\";s:12:\"tmpl_created\";s:10:\"1520520599\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/blocks/portfolio-18/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"portfolio\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"166\";s:11:\"trend_index\";s:3:\"163\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:136;a:14:{s:2:\"id\";s:4:\"5141\";s:5:\"title\";s:12:\"Portfolio 10\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_10.png\";s:12:\"tmpl_created\";s:10:\"1520520601\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/blocks/portfolio-10/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"portfolio\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"298\";s:11:\"trend_index\";s:3:\"498\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:137;a:14:{s:2:\"id\";s:4:\"5149\";s:5:\"title\";s:11:\"Portfolio 2\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_black_10.png\";s:12:\"tmpl_created\";s:10:\"1520520602\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/portfolio-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"portfolio\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"292\";s:11:\"trend_index\";s:3:\"410\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:138;a:14:{s:2:\"id\";s:4:\"5542\";s:5:\"title\";s:6:\"CTA 19\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_1.png\";s:12:\"tmpl_created\";s:10:\"1520520681\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-19/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"161\";s:11:\"trend_index\";s:3:\"161\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:139;a:14:{s:2:\"id\";s:4:\"5550\";s:5:\"title\";s:6:\"CTA 33\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_1.png\";s:12:\"tmpl_created\";s:10:\"1520520682\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-33/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"277\";s:11:\"trend_index\";s:3:\"306\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:140;a:14:{s:2:\"id\";s:4:\"5558\";s:5:\"title\";s:5:\"CTA 1\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_2.png\";s:12:\"tmpl_created\";s:10:\"1520520684\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/cta-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"125\";s:11:\"trend_index\";s:3:\"172\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:141;a:14:{s:2:\"id\";s:4:\"5567\";s:5:\"title\";s:5:\"CTA 2\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_2.png\";s:12:\"tmpl_created\";s:10:\"1520520685\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/cta-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"173\";s:11:\"trend_index\";s:3:\"188\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:142;a:14:{s:2:\"id\";s:5:\"11231\";s:5:\"title\";s:14:\"Digital Agency\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/07/Post_small1.png\";s:12:\"tmpl_created\";s:10:\"1564642380\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/digital-agency/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"marketing\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"386\";s:11:\"trend_index\";s:2:\"80\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:143;a:14:{s:2:\"id\";s:4:\"5583\";s:5:\"title\";s:6:\"CTA 26\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_3.png\";s:12:\"tmpl_created\";s:10:\"1520520689\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-26/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"241\";s:11:\"trend_index\";s:3:\"220\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:144;a:14:{s:2:\"id\";s:5:\"11220\";s:5:\"title\";s:14:\"Digital Agency\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/08/Archive_small1.png\";s:12:\"tmpl_created\";s:10:\"1564642385\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/digital-agency-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"marketing\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"332\";s:11:\"trend_index\";s:2:\"44\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:145;a:14:{s:2:\"id\";s:4:\"5591\";s:5:\"title\";s:5:\"CTA 5\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_4.png\";s:12:\"tmpl_created\";s:10:\"1520520691\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/cta-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"116\";s:11:\"trend_index\";s:3:\"138\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:146;a:14:{s:2:\"id\";s:5:\"11204\";s:5:\"title\";s:14:\"Digital Agency\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/07/404_small.jpg\";s:12:\"tmpl_created\";s:10:\"1564642389\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/digital-agency-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:36:\"[\"404\",\"Digital Agency\",\"marketing\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"461\";s:11:\"trend_index\";s:3:\"251\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:147;a:14:{s:2:\"id\";s:4:\"5599\";s:5:\"title\";s:5:\"CTA 6\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_4.png\";s:12:\"tmpl_created\";s:10:\"1520520693\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/cta-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"274\";s:11:\"trend_index\";s:3:\"253\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:148;a:14:{s:2:\"id\";s:5:\"11198\";s:5:\"title\";s:14:\"Digital Agency\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/07/Header_small_3.jpg\";s:12:\"tmpl_created\";s:10:\"1564642395\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/digital-agency-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:39:\"[\"Digital Agency\",\"header\",\"marketing\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"204\";s:11:\"trend_index\";s:2:\"15\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:149;a:14:{s:2:\"id\";s:4:\"5607\";s:5:\"title\";s:6:\"CTA 13\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_5.png\";s:12:\"tmpl_created\";s:10:\"1520520695\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-13/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"152\";s:11:\"trend_index\";s:3:\"144\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:150;a:14:{s:2:\"id\";s:5:\"11192\";s:5:\"title\";s:14:\"Digital Agency\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/07/Footer_small.jpg\";s:12:\"tmpl_created\";s:10:\"1564642399\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/digital-agency-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:39:\"[\"Digital Agency\",\"footer\",\"marketing\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"402\";s:11:\"trend_index\";s:3:\"133\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:151;a:14:{s:2:\"id\";s:4:\"5634\";s:5:\"title\";s:6:\"CTA 24\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_6.png\";s:12:\"tmpl_created\";s:10:\"1520520699\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-24/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"168\";s:11:\"trend_index\";s:3:\"171\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:152;a:14:{s:2:\"id\";s:5:\"11241\";s:5:\"title\";s:36:\"Classic | Digital Agency | Marketing\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/07/PopUp_small.jpg\";s:12:\"tmpl_created\";s:10:\"1564643043\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/popups/classic-digital-agency-marketing/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"468\";s:11:\"trend_index\";s:3:\"229\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:153;a:14:{s:2:\"id\";s:4:\"5642\";s:5:\"title\";s:6:\"CTA 25\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_6.png\";s:12:\"tmpl_created\";s:10:\"1520520701\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-25/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"235\";s:11:\"trend_index\";s:3:\"210\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:154;a:14:{s:2:\"id\";s:4:\"5650\";s:5:\"title\";s:5:\"CTA 9\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_7.png\";s:12:\"tmpl_created\";s:10:\"1520520702\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/cta-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"108\";s:11:\"trend_index\";s:3:\"101\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:155;a:14:{s:2:\"id\";s:4:\"5658\";s:5:\"title\";s:5:\"CTA 8\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_7.png\";s:12:\"tmpl_created\";s:10:\"1520520704\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/cta-8/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"203\";s:11:\"trend_index\";s:3:\"181\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:156;a:14:{s:2:\"id\";s:4:\"5667\";s:5:\"title\";s:5:\"CTA 3\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_8.png\";s:12:\"tmpl_created\";s:10:\"1520520705\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/cta-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"131\";s:11:\"trend_index\";s:3:\"170\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:157;a:14:{s:2:\"id\";s:4:\"5675\";s:5:\"title\";s:5:\"CTA 4\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_8.png\";s:12:\"tmpl_created\";s:10:\"1520520707\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/cta-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"363\";s:11:\"trend_index\";s:3:\"321\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:158;a:14:{s:2:\"id\";s:4:\"5860\";s:5:\"title\";s:6:\"CTA 17\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_9.png\";s:12:\"tmpl_created\";s:10:\"1520520746\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-17/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"132\";s:11:\"trend_index\";s:3:\"105\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:159;a:14:{s:2:\"id\";s:4:\"5869\";s:5:\"title\";s:6:\"CTA 18\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_10.png\";s:12:\"tmpl_created\";s:10:\"1520520747\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-18/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"280\";s:11:\"trend_index\";s:3:\"296\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:160;a:14:{s:2:\"id\";s:4:\"5877\";s:5:\"title\";s:6:\"CTA 16\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_10.png\";s:12:\"tmpl_created\";s:10:\"1520520749\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-16/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"422\";s:11:\"trend_index\";s:3:\"483\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:161;a:14:{s:2:\"id\";s:5:\"11468\";s:5:\"title\";s:20:\"Classic | Sale | Gym\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/08/PopUp_Small.png\";s:12:\"tmpl_created\";s:10:\"1567393182\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/popups/classic-sale-gym/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"579\";s:11:\"trend_index\";s:3:\"486\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:162;a:14:{s:2:\"id\";s:4:\"5885\";s:5:\"title\";s:6:\"CTA 15\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_11.png\";s:12:\"tmpl_created\";s:10:\"1520520751\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-15/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"293\";s:11:\"trend_index\";s:3:\"276\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:163;a:14:{s:2:\"id\";s:5:\"11461\";s:5:\"title\";s:3:\"GYM\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/08/Header_Small.png\";s:12:\"tmpl_created\";s:10:\"1567393219\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:100:\"https://library.elementor.com/blocks/gym/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:16:\"[\"Gym\",\"header\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"481\";s:11:\"trend_index\";s:3:\"104\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:164;a:14:{s:2:\"id\";s:4:\"5893\";s:5:\"title\";s:6:\"CTA 21\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_12.png\";s:12:\"tmpl_created\";s:10:\"1520520752\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-21/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"243\";s:11:\"trend_index\";s:3:\"179\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:165;a:14:{s:2:\"id\";s:5:\"11453\";s:5:\"title\";s:3:\"GYM\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/08/Footer_Small.png\";s:12:\"tmpl_created\";s:10:\"1567393224\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/gym-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:16:\"[\"footer\",\"Gym\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"501\";s:11:\"trend_index\";s:3:\"135\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:166;a:14:{s:2:\"id\";s:4:\"5904\";s:5:\"title\";s:6:\"CTA 27\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_13.png\";s:12:\"tmpl_created\";s:10:\"1520520754\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-27/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"397\";s:11:\"trend_index\";s:3:\"387\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:167;a:14:{s:2:\"id\";s:5:\"11445\";s:5:\"title\";s:3:\"GYM\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/08/Post_Small.png\";s:12:\"tmpl_created\";s:10:\"1567393229\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/gym-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"539\";s:11:\"trend_index\";s:3:\"227\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:168;a:14:{s:2:\"id\";s:4:\"5912\";s:5:\"title\";s:6:\"CTA 28\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_11.png\";s:12:\"tmpl_created\";s:10:\"1520520755\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-28/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"494\";s:11:\"trend_index\";s:3:\"492\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:169;a:14:{s:2:\"id\";s:5:\"11435\";s:5:\"title\";s:3:\"GYM\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/08/Archiv_Small.png\";s:12:\"tmpl_created\";s:10:\"1567393296\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/gym-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"529\";s:11:\"trend_index\";s:3:\"214\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:170;a:14:{s:2:\"id\";s:4:\"5921\";s:5:\"title\";s:6:\"CTA 12\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_14.png\";s:12:\"tmpl_created\";s:10:\"1520520757\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-12/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"252\";s:11:\"trend_index\";s:3:\"218\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:171;a:14:{s:2:\"id\";s:5:\"11424\";s:5:\"title\";s:3:\"GYM\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/08/404_Small.png\";s:12:\"tmpl_created\";s:10:\"1567393309\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/gym-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:13:\"[\"404\",\"Gym\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"576\";s:11:\"trend_index\";s:3:\"457\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:172;a:14:{s:2:\"id\";s:4:\"5930\";s:5:\"title\";s:6:\"CTA 11\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_15.png\";s:12:\"tmpl_created\";s:10:\"1520520758\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-11/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"70\";s:11:\"trend_index\";s:2:\"64\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:173;a:14:{s:2:\"id\";s:4:\"5939\";s:5:\"title\";s:6:\"CTA 10\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_13-1.png\";s:12:\"tmpl_created\";s:10:\"1520520760\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-10/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"184\";s:11:\"trend_index\";s:3:\"186\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:174;a:14:{s:2:\"id\";s:4:\"7596\";s:5:\"title\";s:8:\"Header 1\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.12.jpg\";s:12:\"tmpl_created\";s:10:\"1521546999\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/header-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:10:\"[\"header\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"34\";s:11:\"trend_index\";s:2:\"46\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:175;a:14:{s:2:\"id\";s:4:\"7615\";s:5:\"title\";s:8:\"Header 2\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.1.jpg\";s:12:\"tmpl_created\";s:10:\"1521547237\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/header-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:10:\"[\"header\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"31\";s:11:\"trend_index\";s:2:\"22\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:176;a:14:{s:2:\"id\";s:4:\"7627\";s:5:\"title\";s:8:\"Footer 8\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/footer_hero_1.png\";s:12:\"tmpl_created\";s:10:\"1521547332\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/footer-8/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:10:\"[\"footer\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"106\";s:11:\"trend_index\";s:3:\"157\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:177;a:14:{s:2:\"id\";s:4:\"7638\";s:5:\"title\";s:8:\"Footer 9\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/footer_hero_2.png\";s:12:\"tmpl_created\";s:10:\"1521547502\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/footer-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:10:\"[\"footer\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"121\";s:11:\"trend_index\";s:3:\"148\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:178;a:14:{s:2:\"id\";s:4:\"7663\";s:5:\"title\";s:13:\"Single Post 2\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/single_post_2_v2.jpg\";s:12:\"tmpl_created\";s:10:\"1521547761\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/blocks/single-post-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:24:\"[\"Blog\",\"Post\",\"Single\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"42\";s:11:\"trend_index\";s:2:\"50\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:179;a:14:{s:2:\"id\";s:4:\"7650\";s:5:\"title\";s:13:\"Single Post 1\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/single_post_1_v2.jpg\";s:12:\"tmpl_created\";s:10:\"1521557736\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/blocks/single-post-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:24:\"[\"Blog\",\"Post\",\"Single\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"84\";s:11:\"trend_index\";s:3:\"107\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:180;a:14:{s:2:\"id\";s:4:\"7686\";s:5:\"title\";s:12:\"Blog Posts 1\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2018/03/blog_posts.png\";s:12:\"tmpl_created\";s:10:\"1521558047\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/blocks/blog-posts-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:26:\"[\"archive\",\"Blog\",\"posts\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"113\";s:11:\"trend_index\";s:3:\"119\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:181;a:14:{s:2:\"id\";s:4:\"4676\";s:5:\"title\";s:8:\"Footer 7\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/03/footer_7.png\";s:12:\"tmpl_created\";s:10:\"1522014215\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/footer_7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:10:\"[\"footer\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"210\";s:11:\"trend_index\";s:3:\"275\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:182;a:14:{s:2:\"id\";s:4:\"7997\";s:5:\"title\";s:10:\"footer 014\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.1.jpg\";s:12:\"tmpl_created\";s:10:\"1524582343\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/footer-014/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"92\";s:11:\"trend_index\";s:2:\"81\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:183;a:14:{s:2:\"id\";s:4:\"7982\";s:5:\"title\";s:10:\"footer 013\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.2.jpg\";s:12:\"tmpl_created\";s:10:\"1524582468\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/footer-013/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"256\";s:11:\"trend_index\";s:3:\"234\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:184;a:14:{s:2:\"id\";s:4:\"7959\";s:5:\"title\";s:10:\"footer 012\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.3.jpg\";s:12:\"tmpl_created\";s:10:\"1524582605\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/footer-012/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"190\";s:11:\"trend_index\";s:3:\"202\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:185;a:14:{s:2:\"id\";s:4:\"7950\";s:5:\"title\";s:10:\"footer 011\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.4.jpg\";s:12:\"tmpl_created\";s:10:\"1524582631\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/footer-011/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"248\";s:11:\"trend_index\";s:3:\"260\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:186;a:14:{s:2:\"id\";s:4:\"7937\";s:5:\"title\";s:10:\"footer 010\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.5.jpg\";s:12:\"tmpl_created\";s:10:\"1524582665\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/footer-010/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"208\";s:11:\"trend_index\";s:3:\"224\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:187;a:14:{s:2:\"id\";s:4:\"7927\";s:5:\"title\";s:9:\"footer 09\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.6.jpg\";s:12:\"tmpl_created\";s:10:\"1524582691\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/footer-09/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"180\";s:11:\"trend_index\";s:3:\"165\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:188;a:14:{s:2:\"id\";s:4:\"7917\";s:5:\"title\";s:9:\"footer 08\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.7.jpg\";s:12:\"tmpl_created\";s:10:\"1524582788\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/footer-08/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"105\";s:11:\"trend_index\";s:3:\"114\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:189;a:14:{s:2:\"id\";s:4:\"7904\";s:5:\"title\";s:9:\"footer 07\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.8.jpg\";s:12:\"tmpl_created\";s:10:\"1524582814\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/footer-07/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"200\";s:11:\"trend_index\";s:3:\"194\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:190;a:14:{s:2:\"id\";s:4:\"7837\";s:5:\"title\";s:9:\"footer 01\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.14.jpg\";s:12:\"tmpl_created\";s:10:\"1524582852\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/footer-01/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"409\";s:11:\"trend_index\";s:3:\"433\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:191;a:14:{s:2:\"id\";s:4:\"7852\";s:5:\"title\";s:9:\"footer 02\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.13.jpg\";s:12:\"tmpl_created\";s:10:\"1524582875\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/footer-02/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"219\";s:11:\"trend_index\";s:3:\"270\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:192;a:14:{s:2:\"id\";s:4:\"7862\";s:5:\"title\";s:9:\"footer 03\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.12.jpg\";s:12:\"tmpl_created\";s:10:\"1524582903\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/footer-03/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"137\";s:11:\"trend_index\";s:3:\"164\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:193;a:14:{s:2:\"id\";s:4:\"7871\";s:5:\"title\";s:9:\"footer 04\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.11.jpg\";s:12:\"tmpl_created\";s:10:\"1524582927\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/footer-04/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"99\";s:11:\"trend_index\";s:2:\"92\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:194;a:14:{s:2:\"id\";s:4:\"7884\";s:5:\"title\";s:9:\"footer 05\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.10.jpg\";s:12:\"tmpl_created\";s:10:\"1524582944\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/footer-05/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"56\";s:11:\"trend_index\";s:3:\"196\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:195;a:14:{s:2:\"id\";s:4:\"7892\";s:5:\"title\";s:9:\"footer 06\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.9.jpg\";s:12:\"tmpl_created\";s:10:\"1524583015\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/footer-06/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"111\";s:11:\"trend_index\";s:3:\"110\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:196;a:14:{s:2:\"id\";s:4:\"4212\";s:5:\"title\";s:11:\"Services 23\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_1.png\";s:12:\"tmpl_created\";s:10:\"1520443248\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/services-23/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"services\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"128\";s:11:\"trend_index\";s:3:\"115\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:197;a:14:{s:2:\"id\";s:4:\"7825\";s:5:\"title\";s:9:\"header 12\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.11.jpg\";s:12:\"tmpl_created\";s:10:\"1524583273\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/header-12/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"79\";s:11:\"trend_index\";s:2:\"68\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:198;a:14:{s:2:\"id\";s:4:\"4227\";s:5:\"title\";s:11:\"Services 30\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_black_1.png\";s:12:\"tmpl_created\";s:10:\"1520443250\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/services-30/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"services\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"337\";s:11:\"trend_index\";s:3:\"285\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:199;a:14:{s:2:\"id\";s:4:\"7812\";s:5:\"title\";s:9:\"header 11\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.10.jpg\";s:12:\"tmpl_created\";s:10:\"1524583298\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/header-11/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"109\";s:11:\"trend_index\";s:3:\"120\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:200;a:14:{s:2:\"id\";s:4:\"4235\";s:5:\"title\";s:11:\"Services 18\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_2.png\";s:12:\"tmpl_created\";s:10:\"1520443251\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/services-18/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"services\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"296\";s:11:\"trend_index\";s:3:\"246\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:201;a:14:{s:2:\"id\";s:4:\"7724\";s:5:\"title\";s:8:\"header 4\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.3.jpg\";s:12:\"tmpl_created\";s:10:\"1524583367\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/header-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"33\";s:11:\"trend_index\";s:2:\"24\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:202;a:14:{s:2:\"id\";s:4:\"4244\";s:5:\"title\";s:11:\"Services 26\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_black_2.png\";s:12:\"tmpl_created\";s:10:\"1520443253\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/services-26/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"services\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"414\";s:11:\"trend_index\";s:3:\"489\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:203;a:14:{s:2:\"id\";s:4:\"7734\";s:5:\"title\";s:8:\"header 5\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.4.jpg\";s:12:\"tmpl_created\";s:10:\"1524583436\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/header-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"35\";s:11:\"trend_index\";s:2:\"38\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:204;a:14:{s:2:\"id\";s:4:\"4252\";s:5:\"title\";s:10:\"Services 9\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_3.png\";s:12:\"tmpl_created\";s:10:\"1520443255\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/services-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"services\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"49\";s:11:\"trend_index\";s:2:\"37\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:205;a:14:{s:2:\"id\";s:4:\"7771\";s:5:\"title\";s:8:\"header 8\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.7.jpg\";s:12:\"tmpl_created\";s:10:\"1524583540\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/header-8/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"107\";s:11:\"trend_index\";s:2:\"83\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:206;a:14:{s:2:\"id\";s:4:\"4260\";s:5:\"title\";s:11:\"Services 25\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_black_3.png\";s:12:\"tmpl_created\";s:10:\"1520443257\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/services-25/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"services\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"211\";s:11:\"trend_index\";s:3:\"237\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:207;a:14:{s:2:\"id\";s:4:\"7787\";s:5:\"title\";s:8:\"header 9\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.8.jpg\";s:12:\"tmpl_created\";s:10:\"1524583598\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/header-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"103\";s:11:\"trend_index\";s:3:\"103\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:208;a:14:{s:2:\"id\";s:4:\"4268\";s:5:\"title\";s:10:\"Services 8\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_4.png\";s:12:\"tmpl_created\";s:10:\"1520443259\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/services-8/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"services\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"153\";s:11:\"trend_index\";s:3:\"154\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:209;a:14:{s:2:\"id\";s:4:\"7801\";s:5:\"title\";s:9:\"header 10\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.9.jpg\";s:12:\"tmpl_created\";s:10:\"1524583659\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/header-10/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"60\";s:11:\"trend_index\";s:2:\"53\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:210;a:14:{s:2:\"id\";s:4:\"4276\";s:5:\"title\";s:11:\"Services 24\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_black_4.png\";s:12:\"tmpl_created\";s:10:\"1520443261\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/services-24/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"services\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"335\";s:11:\"trend_index\";s:3:\"326\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:211;a:14:{s:2:\"id\";s:4:\"7754\";s:5:\"title\";s:8:\"header 7\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.6.jpg\";s:12:\"tmpl_created\";s:10:\"1524583712\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/header-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"64\";s:11:\"trend_index\";s:3:\"160\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:212;a:14:{s:2:\"id\";s:4:\"4284\";s:5:\"title\";s:10:\"Services 7\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_5.png\";s:12:\"tmpl_created\";s:10:\"1520443263\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/services-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"services\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"65\";s:11:\"trend_index\";s:2:\"60\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:213;a:14:{s:2:\"id\";s:4:\"7713\";s:5:\"title\";s:8:\"header 3\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.2.jpg\";s:12:\"tmpl_created\";s:10:\"1524584780\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/header-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"47\";s:11:\"trend_index\";s:2:\"39\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:214;a:14:{s:2:\"id\";s:4:\"4293\";s:5:\"title\";s:10:\"Services 6\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_6.png\";s:12:\"tmpl_created\";s:10:\"1520443265\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/services-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"services\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"269\";s:11:\"trend_index\";s:3:\"339\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:215;a:14:{s:2:\"id\";s:4:\"7744\";s:5:\"title\";s:8:\"Header 6\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.5.jpg\";s:12:\"tmpl_created\";s:10:\"1524584784\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/header-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"59\";s:11:\"trend_index\";s:2:\"66\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:216;a:14:{s:2:\"id\";s:4:\"4302\";s:5:\"title\";s:10:\"Services 5\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_7.png\";s:12:\"tmpl_created\";s:10:\"1520443266\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/services-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"services\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"73\";s:11:\"trend_index\";s:2:\"72\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:217;a:14:{s:2:\"id\";s:4:\"4313\";s:5:\"title\";s:11:\"Services 13\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_8.png\";s:12:\"tmpl_created\";s:10:\"1520443268\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/services-13/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"services\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"126\";s:11:\"trend_index\";s:3:\"106\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:218;a:14:{s:2:\"id\";s:4:\"8523\";s:5:\"title\";s:11:\"404 page 06\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/006.jpg\";s:12:\"tmpl_created\";s:10:\"1526415291\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/404-page-06/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"299\";s:11:\"trend_index\";s:3:\"262\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:219;a:14:{s:2:\"id\";s:4:\"4324\";s:5:\"title\";s:11:\"Services 14\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_9.png\";s:12:\"tmpl_created\";s:10:\"1520443270\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/services-14/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"services\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"290\";s:11:\"trend_index\";s:3:\"300\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:220;a:14:{s:2:\"id\";s:4:\"8524\";s:5:\"title\";s:11:\"404 page 07\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/007.jpg\";s:12:\"tmpl_created\";s:10:\"1526415337\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/404-page-07/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"285\";s:11:\"trend_index\";s:3:\"272\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:221;a:14:{s:2:\"id\";s:4:\"4332\";s:5:\"title\";s:11:\"Services 22\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_10.png\";s:12:\"tmpl_created\";s:10:\"1520443272\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/services-22/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"services\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"142\";s:11:\"trend_index\";s:3:\"152\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:222;a:14:{s:2:\"id\";s:4:\"8525\";s:5:\"title\";s:11:\"404 page 08\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/008.jpg\";s:12:\"tmpl_created\";s:10:\"1526415374\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/404-page-08/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"411\";s:11:\"trend_index\";s:3:\"422\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:223;a:14:{s:2:\"id\";s:4:\"4341\";s:5:\"title\";s:11:\"Services 21\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_11.png\";s:12:\"tmpl_created\";s:10:\"1520443274\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/services-21/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"services\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"140\";s:11:\"trend_index\";s:3:\"132\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:224;a:14:{s:2:\"id\";s:4:\"8513\";s:5:\"title\";s:11:\"404 page 04\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/004.jpg\";s:12:\"tmpl_created\";s:10:\"1526415417\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/404-page-04/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"387\";s:11:\"trend_index\";s:3:\"375\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:225;a:14:{s:2:\"id\";s:4:\"4349\";s:5:\"title\";s:11:\"Services 29\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_black_11.png\";s:12:\"tmpl_created\";s:10:\"1520443275\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/services-29/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"services\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"314\";s:11:\"trend_index\";s:3:\"280\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:226;a:14:{s:2:\"id\";s:4:\"8512\";s:5:\"title\";s:11:\"404 page 03\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/003.jpg\";s:12:\"tmpl_created\";s:10:\"1526415449\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/404-page-03/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"416\";s:11:\"trend_index\";s:3:\"389\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:227;a:14:{s:2:\"id\";s:4:\"4357\";s:5:\"title\";s:11:\"Services 20\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_12.png\";s:12:\"tmpl_created\";s:10:\"1520443277\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/services-20/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"services\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"50\";s:11:\"trend_index\";s:2:\"63\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:228;a:14:{s:2:\"id\";s:4:\"8526\";s:5:\"title\";s:11:\"404 page 09\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/009.jpg\";s:12:\"tmpl_created\";s:10:\"1526415474\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/404-page-09/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"421\";s:11:\"trend_index\";s:3:\"475\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:229;a:14:{s:2:\"id\";s:4:\"4368\";s:5:\"title\";s:11:\"Services 16\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_13.png\";s:12:\"tmpl_created\";s:10:\"1520443279\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/services-16/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"services\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"71\";s:11:\"trend_index\";s:2:\"65\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:230;a:14:{s:2:\"id\";s:4:\"8505\";s:5:\"title\";s:11:\"404 page 01\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/001.jpg\";s:12:\"tmpl_created\";s:10:\"1526415501\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/404-page-01/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"483\";s:11:\"trend_index\";s:3:\"464\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:231;a:14:{s:2:\"id\";s:4:\"4376\";s:5:\"title\";s:11:\"Services 28\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_black_12.png\";s:12:\"tmpl_created\";s:10:\"1520443281\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/services-28/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"services\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"143\";s:11:\"trend_index\";s:3:\"131\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:232;a:14:{s:2:\"id\";s:4:\"8511\";s:5:\"title\";s:11:\"404 page 02\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/002.jpg\";s:12:\"tmpl_created\";s:10:\"1526415528\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/404-page-02/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"345\";s:11:\"trend_index\";s:3:\"317\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:233;a:14:{s:2:\"id\";s:4:\"4391\";s:5:\"title\";s:11:\"Services 17\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_14.png\";s:12:\"tmpl_created\";s:10:\"1520443283\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/services-17/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"services\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"148\";s:11:\"trend_index\";s:3:\"117\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:234;a:14:{s:2:\"id\";s:4:\"8514\";s:5:\"title\";s:11:\"404 Page 05\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/005.jpg\";s:12:\"tmpl_created\";s:10:\"1526415558\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/404-page-05/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"395\";s:11:\"trend_index\";s:3:\"361\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:235;a:14:{s:2:\"id\";s:4:\"4400\";s:5:\"title\";s:11:\"Services 27\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_black_13.png\";s:12:\"tmpl_created\";s:10:\"1520443285\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/services-27/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"services\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"260\";s:11:\"trend_index\";s:3:\"283\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:236;a:14:{s:2:\"id\";s:4:\"8676\";s:5:\"title\";s:13:\"single page 1\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/05/S_P350.6.jpg\";s:12:\"tmpl_created\";s:10:\"1527682423\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/blocks/single-page-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"330\";s:11:\"trend_index\";s:3:\"363\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:237;a:14:{s:2:\"id\";s:4:\"4411\";s:5:\"title\";s:9:\"Contact 3\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/02/map_white_1.png\";s:12:\"tmpl_created\";s:10:\"1520443287\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/contact-3-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"contact\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"96\";s:11:\"trend_index\";s:2:\"77\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:238;a:14:{s:2:\"id\";s:4:\"8678\";s:5:\"title\";s:13:\"single page 2\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/05/S_P350.2.jpg\";s:12:\"tmpl_created\";s:10:\"1527682780\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/blocks/single-page-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"178\";s:11:\"trend_index\";s:3:\"221\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:239;a:14:{s:2:\"id\";s:4:\"4420\";s:5:\"title\";s:9:\"Contact 1\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/02/map_black_1.png\";s:12:\"tmpl_created\";s:10:\"1520443289\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/contact-1-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"contact\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"181\";s:11:\"trend_index\";s:3:\"159\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:240;a:14:{s:2:\"id\";s:4:\"8679\";s:5:\"title\";s:13:\"single page 3\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/05/S_P350.3.jpg\";s:12:\"tmpl_created\";s:10:\"1527682847\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/blocks/single-page-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"199\";s:11:\"trend_index\";s:3:\"213\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:241;a:14:{s:2:\"id\";s:4:\"4428\";s:5:\"title\";s:9:\"Contact 4\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/02/map_white_2.png\";s:12:\"tmpl_created\";s:10:\"1520443291\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/contact-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"contact\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"97\";s:11:\"trend_index\";s:2:\"87\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:242;a:14:{s:2:\"id\";s:4:\"8680\";s:5:\"title\";s:13:\"single page 4\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/05/S_P350.1.jpg\";s:12:\"tmpl_created\";s:10:\"1527682896\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/blocks/single-page-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"398\";s:11:\"trend_index\";s:3:\"391\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:243;a:14:{s:2:\"id\";s:4:\"4436\";s:5:\"title\";s:11:\"Contact  16\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/02/map_black_2.png\";s:12:\"tmpl_created\";s:10:\"1520443293\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/contact-16/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"contact\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"162\";s:11:\"trend_index\";s:3:\"150\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:244;a:14:{s:2:\"id\";s:4:\"8681\";s:5:\"title\";s:13:\"single page 5\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/05/S_P350.5.jpg\";s:12:\"tmpl_created\";s:10:\"1527682969\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/blocks/single-page-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"304\";s:11:\"trend_index\";s:3:\"264\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:245;a:14:{s:2:\"id\";s:4:\"4444\";s:5:\"title\";s:9:\"Contact 5\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/contact_white_1.png\";s:12:\"tmpl_created\";s:10:\"1520443295\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/contact-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"contact\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"100\";s:11:\"trend_index\";s:2:\"90\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:246;a:14:{s:2:\"id\";s:4:\"8682\";s:5:\"title\";s:13:\"single page 6\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/05/S_P350.4.jpg\";s:12:\"tmpl_created\";s:10:\"1527683026\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/blocks/single-page-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"406\";s:11:\"trend_index\";s:3:\"343\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:247;a:14:{s:2:\"id\";s:4:\"4452\";s:5:\"title\";s:9:\"Contact 6\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/contact_black_1.png\";s:12:\"tmpl_created\";s:10:\"1520443296\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/contact-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"contact\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"151\";s:11:\"trend_index\";s:3:\"108\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:248;a:14:{s:2:\"id\";s:4:\"8703\";s:5:\"title\";s:13:\"single page 7\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/05/S_P350.7.jpg\";s:12:\"tmpl_created\";s:10:\"1527683072\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/blocks/single-page-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"391\";s:11:\"trend_index\";s:3:\"427\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:249;a:14:{s:2:\"id\";s:4:\"4460\";s:5:\"title\";s:9:\"Contact 9\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/contact_white_2.png\";s:12:\"tmpl_created\";s:10:\"1520443298\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/contact-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"contact\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"123\";s:11:\"trend_index\";s:3:\"116\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:250;a:14:{s:2:\"id\";s:4:\"8961\";s:5:\"title\";s:9:\"archive 1\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.1.jpg\";s:12:\"tmpl_created\";s:10:\"1528639909\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/archive-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"69\";s:11:\"trend_index\";s:2:\"55\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:251;a:14:{s:2:\"id\";s:4:\"4468\";s:5:\"title\";s:9:\"Contact 7\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/contact_white_3.png\";s:12:\"tmpl_created\";s:10:\"1520443301\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/contact-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:18:\"[\"contact\",\"form\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"133\";s:11:\"trend_index\";s:3:\"142\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:252;a:14:{s:2:\"id\";s:4:\"8969\";s:5:\"title\";s:9:\"archive 2\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.2.jpg\";s:12:\"tmpl_created\";s:10:\"1528700014\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/archive-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"187\";s:11:\"trend_index\";s:3:\"265\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:253;a:14:{s:2:\"id\";s:4:\"4476\";s:5:\"title\";s:10:\"Contact 15\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/contact_white_4.png\";s:12:\"tmpl_created\";s:10:\"1520443303\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/contact-15/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:18:\"[\"contact\",\"form\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"244\";s:11:\"trend_index\";s:3:\"252\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:254;a:14:{s:2:\"id\";s:4:\"8973\";s:5:\"title\";s:9:\"archive 3\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.3.jpg\";s:12:\"tmpl_created\";s:10:\"1528700205\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/archive-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"155\";s:11:\"trend_index\";s:3:\"256\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:255;a:14:{s:2:\"id\";s:4:\"4484\";s:5:\"title\";s:9:\"Contact 8\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/contact_black_3.png\";s:12:\"tmpl_created\";s:10:\"1520443305\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/contact-8/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:18:\"[\"contact\",\"form\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"326\";s:11:\"trend_index\";s:3:\"412\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:256;a:14:{s:2:\"id\";s:4:\"8977\";s:5:\"title\";s:9:\"archive 4\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.4.jpg\";s:12:\"tmpl_created\";s:10:\"1528700326\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/archive-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"318\";s:11:\"trend_index\";s:3:\"322\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:257;a:14:{s:2:\"id\";s:4:\"4492\";s:5:\"title\";s:9:\"Contact 5\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/02/map_white_3.png\";s:12:\"tmpl_created\";s:10:\"1520443307\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/contact-5-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"contact\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"52\";s:11:\"trend_index\";s:2:\"41\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:258;a:14:{s:2:\"id\";s:4:\"8981\";s:5:\"title\";s:9:\"archive 5\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.5.jpg\";s:12:\"tmpl_created\";s:10:\"1528700484\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/archive-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"283\";s:11:\"trend_index\";s:3:\"207\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:259;a:14:{s:2:\"id\";s:4:\"4500\";s:5:\"title\";s:9:\"Pricing 7\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_1.png\";s:12:\"tmpl_created\";s:10:\"1520443308\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/pricing-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"pricing\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"410\";s:11:\"trend_index\";s:3:\"435\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:260;a:14:{s:2:\"id\";s:4:\"8985\";s:5:\"title\";s:9:\"archive 6\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.6.jpg\";s:12:\"tmpl_created\";s:10:\"1528700612\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/archive-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"195\";s:11:\"trend_index\";s:3:\"211\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:261;a:14:{s:2:\"id\";s:4:\"4509\";s:5:\"title\";s:9:\"Pricing 1\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_black_1.png\";s:12:\"tmpl_created\";s:10:\"1520443310\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/pricing-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"pricing\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"522\";s:11:\"trend_index\";s:3:\"526\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:262;a:14:{s:2:\"id\";s:4:\"8989\";s:5:\"title\";s:9:\"archive 7\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.7.jpg\";s:12:\"tmpl_created\";s:10:\"1528701063\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/archive-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"185\";s:11:\"trend_index\";s:3:\"187\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:263;a:14:{s:2:\"id\";s:4:\"4521\";s:5:\"title\";s:9:\"Pricing 8\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_2.png\";s:12:\"tmpl_created\";s:10:\"1520443312\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/pricing-8/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"pricing\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"317\";s:11:\"trend_index\";s:3:\"289\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:264;a:14:{s:2:\"id\";s:4:\"8996\";s:5:\"title\";s:9:\"archive 8\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.8.jpg\";s:12:\"tmpl_created\";s:10:\"1528701290\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/archive-8/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"175\";s:11:\"trend_index\";s:3:\"233\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:265;a:14:{s:2:\"id\";s:4:\"4529\";s:5:\"title\";s:9:\"Pricing 2\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_black_2.png\";s:12:\"tmpl_created\";s:10:\"1520443314\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/pricing-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"pricing\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"474\";s:11:\"trend_index\";s:3:\"438\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:266;a:14:{s:2:\"id\";s:4:\"9001\";s:5:\"title\";s:9:\"archive 9\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.9.jpg\";s:12:\"tmpl_created\";s:10:\"1528701433\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/archive-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"223\";s:11:\"trend_index\";s:3:\"212\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:267;a:14:{s:2:\"id\";s:4:\"4537\";s:5:\"title\";s:9:\"Pricing 9\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_3.png\";s:12:\"tmpl_created\";s:10:\"1520443315\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/pricing-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"pricing\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"456\";s:11:\"trend_index\";s:3:\"381\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:268;a:14:{s:2:\"id\";s:4:\"9119\";s:5:\"title\";s:10:\"footer 015\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/07/Footer_GetStarted_350.png\";s:12:\"tmpl_created\";s:10:\"1532428138\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:101:\"https://library.elementor.com/blocks/demo/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"250\";s:11:\"trend_index\";s:3:\"199\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:269;a:14:{s:2:\"id\";s:4:\"4545\";s:5:\"title\";s:9:\"Pricing 3\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_black_3.png\";s:12:\"tmpl_created\";s:10:\"1520443317\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/pricing-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"pricing\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"519\";s:11:\"trend_index\";s:3:\"552\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:270;a:14:{s:2:\"id\";s:4:\"9127\";s:5:\"title\";s:9:\"header 13\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2018/07/Header_get_started_1200V3.png\";s:12:\"tmpl_created\";s:10:\"1532428699\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/header-13/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"51\";s:11:\"trend_index\";s:2:\"49\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:271;a:14:{s:2:\"id\";s:4:\"4553\";s:5:\"title\";s:10:\"Pricing 10\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_4.png\";s:12:\"tmpl_created\";s:10:\"1520443319\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/pricing-10/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"pricing\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"426\";s:11:\"trend_index\";s:3:\"445\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:272;a:14:{s:2:\"id\";s:4:\"4562\";s:5:\"title\";s:9:\"Pricing 4\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_black_4.png\";s:12:\"tmpl_created\";s:10:\"1520443322\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/pricing-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"pricing\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"516\";s:11:\"trend_index\";s:3:\"480\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:273;a:14:{s:2:\"id\";s:4:\"4572\";s:5:\"title\";s:10:\"Pricing 11\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_5.png\";s:12:\"tmpl_created\";s:10:\"1520443324\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/pricing-11/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"pricing\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"307\";s:11:\"trend_index\";s:3:\"335\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:274;a:14:{s:2:\"id\";s:4:\"9174\";s:5:\"title\";s:17:\"single product 01\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/07/single_product01_350.png\";s:12:\"tmpl_created\";s:10:\"1532950125\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/single-product-01/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"single product\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"72\";s:11:\"trend_index\";s:2:\"42\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:275;a:14:{s:2:\"id\";s:4:\"4580\";s:5:\"title\";s:10:\"Pricing 12\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_6.png\";s:12:\"tmpl_created\";s:10:\"1520443326\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/pricing-12/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"pricing\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"448\";s:11:\"trend_index\";s:3:\"380\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:276;a:14:{s:2:\"id\";s:4:\"9178\";s:5:\"title\";s:17:\"single product 02\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2018/07/single_product02_350new.png\";s:12:\"tmpl_created\";s:10:\"1532951997\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/single-product-02/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"single product\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"117\";s:11:\"trend_index\";s:2:\"97\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:277;a:14:{s:2:\"id\";s:4:\"4589\";s:5:\"title\";s:9:\"Pricing 5\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_black_6.png\";s:12:\"tmpl_created\";s:10:\"1520443327\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/pricing-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"pricing\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"523\";s:11:\"trend_index\";s:3:\"538\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:278;a:14:{s:2:\"id\";s:4:\"9180\";s:5:\"title\";s:17:\"single product 03\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/07/single_product03_350.png\";s:12:\"tmpl_created\";s:10:\"1532952302\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/single-product-03/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"single product\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"154\";s:11:\"trend_index\";s:3:\"143\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:279;a:14:{s:2:\"id\";s:4:\"4597\";s:5:\"title\";s:10:\"Pricing 13\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_7.png\";s:12:\"tmpl_created\";s:10:\"1520443330\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/pricing-13/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"pricing\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"462\";s:11:\"trend_index\";s:3:\"461\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:280;a:14:{s:2:\"id\";s:4:\"9182\";s:5:\"title\";s:17:\"single product 04\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/07/single_product040_350.png\";s:12:\"tmpl_created\";s:10:\"1532952606\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/single-product-04/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"single product\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"170\";s:11:\"trend_index\";s:3:\"153\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:281;a:14:{s:2:\"id\";s:4:\"4605\";s:5:\"title\";s:9:\"Pricing 6\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_black_7.png\";s:12:\"tmpl_created\";s:10:\"1520443332\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/pricing-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"pricing\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"537\";s:11:\"trend_index\";s:3:\"546\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:282;a:14:{s:2:\"id\";s:4:\"9239\";s:5:\"title\";s:17:\"product archive 1\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/07/product-archive-350-1.png\";s:12:\"tmpl_created\";s:10:\"1532953482\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/product-archive-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:15:\"product archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"120\";s:11:\"trend_index\";s:2:\"93\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:283;a:14:{s:2:\"id\";s:4:\"4613\";s:5:\"title\";s:10:\"Pricing 14\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_8.png\";s:12:\"tmpl_created\";s:10:\"1520443334\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/pricing-14/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"pricing\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"445\";s:11:\"trend_index\";s:3:\"481\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:284;a:14:{s:2:\"id\";s:4:\"9247\";s:5:\"title\";s:17:\"product archive 2\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/07/product-archive-350-2.png\";s:12:\"tmpl_created\";s:10:\"1532953793\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/product-archive-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:15:\"product archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"129\";s:11:\"trend_index\";s:2:\"89\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:285;a:14:{s:2:\"id\";s:4:\"9254\";s:5:\"title\";s:17:\"product archive 3\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/07/product-archive-350-3.png\";s:12:\"tmpl_created\";s:10:\"1532954032\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/product-archive-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:15:\"product archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"135\";s:11:\"trend_index\";s:3:\"128\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:286;a:14:{s:2:\"id\";s:4:\"9301\";s:5:\"title\";s:13:\"Single Post 4\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2018/09/3003.jpg\";s:12:\"tmpl_created\";s:10:\"1537440661\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/blocks/single-post-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"189\";s:11:\"trend_index\";s:3:\"293\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:287;a:14:{s:2:\"id\";s:4:\"9296\";s:5:\"title\";s:13:\"Single Post 3\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2018/09/3002.jpg\";s:12:\"tmpl_created\";s:10:\"1537440673\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/blocks/single-post-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"191\";s:11:\"trend_index\";s:3:\"183\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:288;a:14:{s:2:\"id\";s:4:\"9313\";s:5:\"title\";s:13:\"Single Post 5\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2018/09/3001.jpg\";s:12:\"tmpl_created\";s:10:\"1537440798\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/blocks/single-post-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"160\";s:11:\"trend_index\";s:3:\"134\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:289;a:14:{s:2:\"id\";s:4:\"9343\";s:5:\"title\";s:13:\"Single Post 6\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2018/09/3004.jpg\";s:12:\"tmpl_created\";s:10:\"1537443531\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/blocks/single-post-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"176\";s:11:\"trend_index\";s:3:\"158\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:290;a:14:{s:2:\"id\";s:4:\"9349\";s:5:\"title\";s:13:\"Single Post 7\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2018/09/3005.jpg\";s:12:\"tmpl_created\";s:10:\"1537443903\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/blocks/single-post-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"124\";s:11:\"trend_index\";s:2:\"85\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:291;a:14:{s:2:\"id\";s:4:\"4690\";s:5:\"title\";s:6:\"Team 7\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_1.png\";s:12:\"tmpl_created\";s:10:\"1520443348\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/team-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"233\";s:11:\"trend_index\";s:3:\"249\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:292;a:14:{s:2:\"id\";s:4:\"4698\";s:5:\"title\";s:7:\"Team 15\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_black_1.png\";s:12:\"tmpl_created\";s:10:\"1520443350\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/team-15/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"380\";s:11:\"trend_index\";s:3:\"313\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:293;a:14:{s:2:\"id\";s:4:\"4706\";s:5:\"title\";s:6:\"Team 5\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_2.png\";s:12:\"tmpl_created\";s:10:\"1520443352\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/team-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"136\";s:11:\"trend_index\";s:3:\"141\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:294;a:14:{s:2:\"id\";s:4:\"4718\";s:5:\"title\";s:6:\"Team 4\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_3.png\";s:12:\"tmpl_created\";s:10:\"1520443354\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/team-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"172\";s:11:\"trend_index\";s:3:\"177\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:295;a:14:{s:2:\"id\";s:4:\"4727\";s:5:\"title\";s:7:\"Team 13\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_black_2.png\";s:12:\"tmpl_created\";s:10:\"1520443356\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/team-13/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"351\";s:11:\"trend_index\";s:3:\"408\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:296;a:14:{s:2:\"id\";s:4:\"4736\";s:5:\"title\";s:7:\"Team 20\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_4.png\";s:12:\"tmpl_created\";s:10:\"1520443358\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/team-20/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"138\";s:11:\"trend_index\";s:3:\"147\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:297;a:14:{s:2:\"id\";s:4:\"4746\";s:5:\"title\";s:7:\"Team 23\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_black_4.png\";s:12:\"tmpl_created\";s:10:\"1520443360\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/team-23/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"247\";s:11:\"trend_index\";s:3:\"247\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:298;a:14:{s:2:\"id\";s:4:\"4759\";s:5:\"title\";s:7:\"Team 22\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_5.png\";s:12:\"tmpl_created\";s:10:\"1520443362\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/team-22/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"266\";s:11:\"trend_index\";s:3:\"307\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:299;a:14:{s:2:\"id\";s:4:\"4770\";s:5:\"title\";s:7:\"Team 12\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_6.png\";s:12:\"tmpl_created\";s:10:\"1520443364\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/team-12-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"357\";s:11:\"trend_index\";s:3:\"409\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:300;a:14:{s:2:\"id\";s:4:\"4781\";s:5:\"title\";s:7:\"Team 16\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_7.png\";s:12:\"tmpl_created\";s:10:\"1520443365\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/team-16/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"226\";s:11:\"trend_index\";s:3:\"319\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:301;a:14:{s:2:\"id\";s:4:\"9611\";s:5:\"title\";s:16:\"Hello Bar | Sale\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2019/01/Top-Bar_Sale_small_01.png\";s:12:\"tmpl_created\";s:10:\"1546965350\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/popups/hello-bar-sale-01/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"506\";s:11:\"trend_index\";s:3:\"474\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:302;a:14:{s:2:\"id\";s:4:\"4793\";s:5:\"title\";s:7:\"Team 18\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_8.png\";s:12:\"tmpl_created\";s:10:\"1520443367\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/team-18/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"186\";s:11:\"trend_index\";s:3:\"238\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:303;a:14:{s:2:\"id\";s:4:\"9622\";s:5:\"title\";s:19:\"Classic | Promotion\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2019/01/classic_promotion_small_02.png\";s:12:\"tmpl_created\";s:10:\"1546965896\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/popups/classic-promotion-02/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"495\";s:11:\"trend_index\";s:3:\"536\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:304;a:14:{s:2:\"id\";s:4:\"4801\";s:5:\"title\";s:7:\"Team 11\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_black_8.png\";s:12:\"tmpl_created\";s:10:\"1520443369\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/team-11/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"327\";s:11:\"trend_index\";s:3:\"345\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:305;a:14:{s:2:\"id\";s:4:\"9631\";s:5:\"title\";s:38:\"Slide-in | Sale | Register | Subscribe\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2019/01/Slide-in_Sale_small_01.png\";s:12:\"tmpl_created\";s:10:\"1546968270\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/popups/slide-in-sale-01/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"505\";s:11:\"trend_index\";s:3:\"455\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:306;a:14:{s:2:\"id\";s:4:\"4809\";s:5:\"title\";s:7:\"Team 19\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_9.png\";s:12:\"tmpl_created\";s:10:\"1520443371\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/team-19/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"258\";s:11:\"trend_index\";s:3:\"311\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:307;a:14:{s:2:\"id\";s:4:\"4818\";s:5:\"title\";s:7:\"Team 21\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_black_9.png\";s:12:\"tmpl_created\";s:10:\"1520443373\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/team-21/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"403\";s:11:\"trend_index\";s:3:\"449\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:308;a:14:{s:2:\"id\";s:4:\"5045\";s:5:\"title\";s:11:\"Portfolio 3\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_black_2.png\";s:12:\"tmpl_created\";s:10:\"1520443423\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/portfolio-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"portfolio\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"466\";s:11:\"trend_index\";s:3:\"469\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:309;a:14:{s:2:\"id\";s:4:\"9662\";s:5:\"title\";s:33:\"Bottom Bar | Register | Subscribe\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2019/01/Bottom-Bar_Register_small_01.png\";s:12:\"tmpl_created\";s:10:\"1547009087\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/popups/bottom-bar-register-01/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"530\";s:11:\"trend_index\";s:3:\"443\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:310;a:14:{s:2:\"id\";s:4:\"5157\";s:5:\"title\";s:11:\"Subscribe 1\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/subscribe_white_1.png\";s:12:\"tmpl_created\";s:10:\"1520443448\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/subscribe-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"subscribe\";s:4:\"tags\";s:20:\"[\"form\",\"subscribe\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"341\";s:11:\"trend_index\";s:3:\"302\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:311;a:14:{s:2:\"id\";s:4:\"5165\";s:5:\"title\";s:11:\"Subscribe 3\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/subscribe_black_1.png\";s:12:\"tmpl_created\";s:10:\"1520443450\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/subscribe-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"subscribe\";s:4:\"tags\";s:20:\"[\"form\",\"subscribe\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"430\";s:11:\"trend_index\";s:3:\"497\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:312;a:14:{s:2:\"id\";s:4:\"5173\";s:5:\"title\";s:11:\"Subscribe 5\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/subscribe_white_2.png\";s:12:\"tmpl_created\";s:10:\"1520443452\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/subscribe-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"subscribe\";s:4:\"tags\";s:20:\"[\"form\",\"subscribe\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"273\";s:11:\"trend_index\";s:3:\"241\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:313;a:14:{s:2:\"id\";s:4:\"9690\";s:5:\"title\";s:17:\"Classic | Contact\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2019/01/Classic_Contact_small_01.png\";s:12:\"tmpl_created\";s:10:\"1547011716\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/popups/classic-contact-01/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"400\";s:11:\"trend_index\";s:3:\"362\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:314;a:14:{s:2:\"id\";s:4:\"5181\";s:5:\"title\";s:11:\"Subscribe 2\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/subscribe_black_2.png\";s:12:\"tmpl_created\";s:10:\"1520443454\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/blocks/subscribe-2-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"subscribe\";s:4:\"tags\";s:20:\"[\"form\",\"subscribe\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"401\";s:11:\"trend_index\";s:3:\"434\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:315;a:14:{s:2:\"id\";s:4:\"9699\";s:5:\"title\";s:33:\"Classic | Contact | Gym | Fitness\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2019/01/Classic_Contact_small_02.png\";s:12:\"tmpl_created\";s:10:\"1547015827\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/popups/classic-contact-02/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"436\";s:11:\"trend_index\";s:3:\"367\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:316;a:14:{s:2:\"id\";s:4:\"5189\";s:5:\"title\";s:6:\"CTA 29\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_1.png\";s:12:\"tmpl_created\";s:10:\"1520443456\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-29/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:8:\"[\"form\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"389\";s:11:\"trend_index\";s:3:\"393\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:317;a:14:{s:2:\"id\";s:4:\"5198\";s:5:\"title\";s:6:\"CTA 30\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_black_1.png\";s:12:\"tmpl_created\";s:10:\"1520443458\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-30/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:8:\"[\"form\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"437\";s:11:\"trend_index\";s:3:\"450\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:318;a:14:{s:2:\"id\";s:4:\"9571\";s:5:\"title\";s:14:\"Fly In | Login\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2019/01/FlyIn_Login_01_small.png\";s:12:\"tmpl_created\";s:10:\"1547726151\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/popups/fly-in-login-01/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"503\";s:11:\"trend_index\";s:3:\"415\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:319;a:14:{s:2:\"id\";s:4:\"5206\";s:5:\"title\";s:6:\"CTA 31\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_black_2.png\";s:12:\"tmpl_created\";s:10:\"1520443459\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-31/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:8:\"[\"form\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"457\";s:11:\"trend_index\";s:3:\"494\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:320;a:14:{s:2:\"id\";s:4:\"5214\";s:5:\"title\";s:10:\"Contact 16\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_2.png\";s:12:\"tmpl_created\";s:10:\"1520443462\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/blocks/contact-16-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:18:\"[\"contact\",\"form\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"201\";s:11:\"trend_index\";s:3:\"203\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:321;a:14:{s:2:\"id\";s:4:\"5222\";s:5:\"title\";s:11:\"Subscribe 4\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/subscribe_black_3.png\";s:12:\"tmpl_created\";s:10:\"1520443464\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/subscribe-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"subscribe\";s:4:\"tags\";s:20:\"[\"form\",\"subscribe\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"376\";s:11:\"trend_index\";s:3:\"366\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:322;a:14:{s:2:\"id\";s:4:\"9740\";s:5:\"title\";s:25:\"Classic | Promotion | App\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/01/app_small.png\";s:12:\"tmpl_created\";s:10:\"1547822836\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/popups/classic-promotion-app/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"490\";s:11:\"trend_index\";s:3:\"444\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:323;a:14:{s:2:\"id\";s:4:\"5230\";s:5:\"title\";s:10:\"Contact 17\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_3.png\";s:12:\"tmpl_created\";s:10:\"1520443466\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/contact-17/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:18:\"[\"contact\",\"form\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"311\";s:11:\"trend_index\";s:3:\"309\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:324;a:14:{s:2:\"id\";s:4:\"5238\";s:5:\"title\";s:7:\"Hero 12\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_4.png\";s:12:\"tmpl_created\";s:10:\"1520443468\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/hero-12/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"463\";s:11:\"trend_index\";s:3:\"521\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:325;a:14:{s:2:\"id\";s:4:\"9762\";s:5:\"title\";s:36:\"Classic | Register | Subscribe | Spa\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2019/01/spa_small_classic.png\";s:12:\"tmpl_created\";s:10:\"1547824145\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/popups/classic-register-subscribe-spa/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"433\";s:11:\"trend_index\";s:3:\"327\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:326;a:14:{s:2:\"id\";s:4:\"5249\";s:5:\"title\";s:6:\"CTA 32\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_black_4.png\";s:12:\"tmpl_created\";s:10:\"1520443470\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-32/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:8:\"[\"form\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"428\";s:11:\"trend_index\";s:3:\"478\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:327;a:14:{s:2:\"id\";s:4:\"9772\";s:5:\"title\";s:27:\"Hello bar | Promotion | App\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2019/01/app_hello_small.png\";s:12:\"tmpl_created\";s:10:\"1547824279\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/popups/hello-bar-promotion-app/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"565\";s:11:\"trend_index\";s:3:\"571\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:328;a:14:{s:2:\"id\";s:4:\"5257\";s:5:\"title\";s:10:\"Contact 18\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_5.png\";s:12:\"tmpl_created\";s:10:\"1520443472\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/contact-18/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:8:\"[\"form\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"384\";s:11:\"trend_index\";s:3:\"337\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:329;a:14:{s:2:\"id\";s:4:\"5266\";s:5:\"title\";s:9:\"Clients 4\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_white_1.png\";s:12:\"tmpl_created\";s:10:\"1520443474\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/clients-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"clients\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"119\";s:11:\"trend_index\";s:3:\"111\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:330;a:14:{s:2:\"id\";s:4:\"9793\";s:5:\"title\";s:13:\"Fly In | Sale\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2019/01/flyin_black_small.png\";s:12:\"tmpl_created\";s:10:\"1547831151\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/popups/fly-in-sale/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"524\";s:11:\"trend_index\";s:3:\"566\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:331;a:14:{s:2:\"id\";s:4:\"5275\";s:5:\"title\";s:9:\"Clients 5\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_black_1.png\";s:12:\"tmpl_created\";s:10:\"1520443476\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/clients-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"clients\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"331\";s:11:\"trend_index\";s:3:\"308\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:332;a:14:{s:2:\"id\";s:4:\"5283\";s:5:\"title\";s:9:\"Clients 1\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_white_2.png\";s:12:\"tmpl_created\";s:10:\"1520443478\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/clients-1-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"clients\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"281\";s:11:\"trend_index\";s:3:\"314\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:333;a:14:{s:2:\"id\";s:4:\"5290\";s:5:\"title\";s:9:\"Clients 3\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_black_2.png\";s:12:\"tmpl_created\";s:10:\"1520443480\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/clients-3-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"clients\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"439\";s:11:\"trend_index\";s:3:\"473\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:334;a:14:{s:2:\"id\";s:4:\"5298\";s:5:\"title\";s:10:\"Clients 15\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_white_3.png\";s:12:\"tmpl_created\";s:10:\"1520443482\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/clients-15/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"clients\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"394\";s:11:\"trend_index\";s:3:\"436\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:335;a:14:{s:2:\"id\";s:4:\"9836\";s:5:\"title\";s:21:\"Classic | Login | Pop\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/01/login_b_small.png\";s:12:\"tmpl_created\";s:10:\"1547835635\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/popups/classic-login/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"499\";s:11:\"trend_index\";s:3:\"506\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:336;a:14:{s:2:\"id\";s:4:\"5306\";s:5:\"title\";s:10:\"Clients 10\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_black_3.png\";s:12:\"tmpl_created\";s:10:\"1520443484\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/clients-10/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"clients\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"493\";s:11:\"trend_index\";s:3:\"554\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:337;a:14:{s:2:\"id\";s:4:\"9847\";s:5:\"title\";s:25:\"Fly In | Promotion | Lego\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2019/01/fly_in_promotion_tro.png\";s:12:\"tmpl_created\";s:10:\"1547836956\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/popups/fly-in-promotion/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"556\";s:11:\"trend_index\";s:3:\"543\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:338;a:14:{s:2:\"id\";s:4:\"5315\";s:5:\"title\";s:10:\"Clients 12\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_4-1.png\";s:12:\"tmpl_created\";s:10:\"1520443486\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/clients-12/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"clients\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"412\";s:11:\"trend_index\";s:3:\"439\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:339;a:14:{s:2:\"id\";s:4:\"9858\";s:5:\"title\";s:27:\"Slide In | Promotion | Wine\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2019/01/slide-in_promotion_wine_small.png\";s:12:\"tmpl_created\";s:10:\"1547837100\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/popups/slide-in-promotion/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"572\";s:11:\"trend_index\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:340;a:14:{s:2:\"id\";s:4:\"5324\";s:5:\"title\";s:9:\"Clients 8\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_5-1.png\";s:12:\"tmpl_created\";s:10:\"1520443488\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/clients-8/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"clients\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"431\";s:11:\"trend_index\";s:3:\"515\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:341;a:14:{s:2:\"id\";s:4:\"5333\";s:5:\"title\";s:10:\"Clients 13\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_6.png\";s:12:\"tmpl_created\";s:10:\"1520443489\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/clients-13/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"clients\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"234\";s:11:\"trend_index\";s:3:\"198\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:342;a:14:{s:2:\"id\";s:4:\"5341\";s:5:\"title\";s:10:\"Clients 11\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_black_4.png\";s:12:\"tmpl_created\";s:10:\"1520443491\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/clients-11/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"clients\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"464\";s:11:\"trend_index\";s:3:\"509\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:343;a:14:{s:2:\"id\";s:4:\"5349\";s:5:\"title\";s:9:\"Clients 7\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_7.png\";s:12:\"tmpl_created\";s:10:\"1520443493\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/clients-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"clients\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"238\";s:11:\"trend_index\";s:3:\"184\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:344;a:14:{s:2:\"id\";s:4:\"5357\";s:5:\"title\";s:9:\"Clients 2\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_black_7.png\";s:12:\"tmpl_created\";s:10:\"1520443495\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/clients-2-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"clients\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"310\";s:11:\"trend_index\";s:3:\"355\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:345;a:14:{s:2:\"id\";s:4:\"5368\";s:5:\"title\";s:9:\"Clients 9\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_8.png\";s:12:\"tmpl_created\";s:10:\"1520443497\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/clients-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"clients\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"227\";s:11:\"trend_index\";s:3:\"261\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:346;a:14:{s:2:\"id\";s:4:\"5381\";s:5:\"title\";s:10:\"Clients 16\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_9.png\";s:12:\"tmpl_created\";s:10:\"1520443499\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/clients-16/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"clients\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"179\";s:11:\"trend_index\";s:3:\"193\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:347;a:14:{s:2:\"id\";s:4:\"5389\";s:5:\"title\";s:10:\"Clients 14\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_black_9.png\";s:12:\"tmpl_created\";s:10:\"1520443501\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/clients-14/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"clients\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"368\";s:11:\"trend_index\";s:3:\"318\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:348;a:14:{s:2:\"id\";s:4:\"9944\";s:5:\"title\";s:33:\"Slide In | Promotion | Headphones\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2019/01/slidein_head_small.png\";s:12:\"tmpl_created\";s:10:\"1547841939\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/popups/slide-in-promotion-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"555\";s:11:\"trend_index\";s:3:\"550\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:349;a:14:{s:2:\"id\";s:4:\"5397\";s:5:\"title\";s:8:\"About 11\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_1.png\";s:12:\"tmpl_created\";s:10:\"1520443503\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/about-11/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"144\";s:11:\"trend_index\";s:3:\"173\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:350;a:14:{s:2:\"id\";s:4:\"9955\";s:5:\"title\";s:14:\"Fly In | Login\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2019/01/flyin_login_lock_small.png\";s:12:\"tmpl_created\";s:10:\"1547842065\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/popups/fly-in-login/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"486\";s:11:\"trend_index\";s:3:\"388\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:351;a:14:{s:2:\"id\";s:4:\"5405\";s:5:\"title\";s:8:\"About 12\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_1.png\";s:12:\"tmpl_created\";s:10:\"1520443505\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/about-12/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"232\";s:11:\"trend_index\";s:3:\"219\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:352;a:14:{s:2:\"id\";s:4:\"9965\";s:5:\"title\";s:30:\"Classic | Register | Subscribe\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2019/01/classic_moon_small.png\";s:12:\"tmpl_created\";s:10:\"1547842174\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/popups/classic-register-subscribe-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"469\";s:11:\"trend_index\";s:3:\"537\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:353;a:14:{s:2:\"id\";s:4:\"5413\";s:5:\"title\";s:8:\"About 21\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_2.png\";s:12:\"tmpl_created\";s:10:\"1520443507\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/about-21/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"134\";s:11:\"trend_index\";s:3:\"137\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:354;a:14:{s:2:\"id\";s:4:\"5421\";s:5:\"title\";s:8:\"About 13\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_3.png\";s:12:\"tmpl_created\";s:10:\"1520443509\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/about-13/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"246\";s:11:\"trend_index\";s:3:\"206\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:355;a:14:{s:2:\"id\";s:4:\"5429\";s:5:\"title\";s:8:\"About 16\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_4.png\";s:12:\"tmpl_created\";s:10:\"1520443510\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/about-16/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"95\";s:11:\"trend_index\";s:3:\"102\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:356;a:14:{s:2:\"id\";s:4:\"9995\";s:5:\"title\";s:27:\"Slide In | Sale | Christmas\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2019/01/slidein_christmas_small.png\";s:12:\"tmpl_created\";s:10:\"1547844802\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/popups/slide-in-sale-christmas/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"577\";s:11:\"trend_index\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:357;a:14:{s:2:\"id\";s:4:\"5438\";s:5:\"title\";s:7:\"About 1\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_4.png\";s:12:\"tmpl_created\";s:10:\"1520443512\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/about-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"212\";s:11:\"trend_index\";s:3:\"200\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:358;a:14:{s:2:\"id\";s:4:\"5447\";s:5:\"title\";s:7:\"About 3\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_5.png\";s:12:\"tmpl_created\";s:10:\"1520443514\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/about-3-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"66\";s:11:\"trend_index\";s:2:\"59\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:359;a:14:{s:2:\"id\";s:5:\"10016\";s:5:\"title\";s:16:\"Hello Bar | Sale\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2019/01/Hello-Bar_Promotion_bag_small.png\";s:12:\"tmpl_created\";s:10:\"1547845062\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/popups/hello-bar-sale/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"578\";s:11:\"trend_index\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:360;a:14:{s:2:\"id\";s:4:\"5455\";s:5:\"title\";s:8:\"About 20\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_6.png\";s:12:\"tmpl_created\";s:10:\"1520443516\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/about-20/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"130\";s:11:\"trend_index\";s:3:\"109\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:361;a:14:{s:2:\"id\";s:5:\"10026\";s:5:\"title\";s:46:\"Classic | Register | Subscribe | Gym | Fitness\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2019/01/classic_register_small.png\";s:12:\"tmpl_created\";s:10:\"1547845205\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/popups/classic-register-subscribe-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"471\";s:11:\"trend_index\";s:3:\"512\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:362;a:14:{s:2:\"id\";s:4:\"5464\";s:5:\"title\";s:8:\"About 17\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_6.png\";s:12:\"tmpl_created\";s:10:\"1520443518\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/about-17/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"231\";s:11:\"trend_index\";s:3:\"231\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:363;a:14:{s:2:\"id\";s:5:\"10036\";s:5:\"title\";s:43:\"Full Screen | Sale | Promotion | Headphones\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2019/01/full_sale_head_small.png\";s:12:\"tmpl_created\";s:10:\"1547845409\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/popups/full-screen-sale-promotion/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"497\";s:11:\"trend_index\";s:3:\"517\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:364;a:14:{s:2:\"id\";s:4:\"5472\";s:5:\"title\";s:7:\"About 2\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_7.png\";s:12:\"tmpl_created\";s:10:\"1520443520\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/about-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"193\";s:11:\"trend_index\";s:3:\"197\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:365;a:14:{s:2:\"id\";s:4:\"5480\";s:5:\"title\";s:7:\"About 4\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_7-1.png\";s:12:\"tmpl_created\";s:10:\"1520443522\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/about-4-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"392\";s:11:\"trend_index\";s:3:\"395\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:366;a:14:{s:2:\"id\";s:5:\"10057\";s:5:\"title\";s:48:\"Hello Bar | Register | Subscribe | Gym | Fitness\";s:9:\"thumbnail\";s:91:\"https://library.elementor.com/wp-content/uploads/2019/01/hello-bar_register_sport_small.png\";s:12:\"tmpl_created\";s:10:\"1547847938\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/popups/hello-bar-register-subscribe/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"569\";s:11:\"trend_index\";s:3:\"542\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:367;a:14:{s:2:\"id\";s:4:\"5488\";s:5:\"title\";s:7:\"About 7\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_8.png\";s:12:\"tmpl_created\";s:10:\"1520443524\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/about-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"288\";s:11:\"trend_index\";s:3:\"320\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:368;a:14:{s:2:\"id\";s:4:\"5496\";s:5:\"title\";s:7:\"About 9\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_8-1.png\";s:12:\"tmpl_created\";s:10:\"1520443526\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/about-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"424\";s:11:\"trend_index\";s:3:\"448\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:369;a:14:{s:2:\"id\";s:4:\"5504\";s:5:\"title\";s:8:\"About 18\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_9.png\";s:12:\"tmpl_created\";s:10:\"1520443528\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/about-18/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"93\";s:11:\"trend_index\";s:3:\"113\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:370;a:14:{s:2:\"id\";s:5:\"10087\";s:5:\"title\";s:25:\"Full Screen | Login | Spa\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2019/01/full-screen_login_spa_small.png\";s:12:\"tmpl_created\";s:10:\"1547848301\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/popups/full-screen-login-spa/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"502\";s:11:\"trend_index\";s:3:\"451\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:371;a:14:{s:2:\"id\";s:4:\"5515\";s:5:\"title\";s:8:\"About 19\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_9.png\";s:12:\"tmpl_created\";s:10:\"1520443530\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/about-19/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"257\";s:11:\"trend_index\";s:3:\"351\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:372;a:14:{s:2:\"id\";s:5:\"10097\";s:5:\"title\";s:37:\"Classic | Register | Subscribe | Lego\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2019/01/classic_lego_small.png\";s:12:\"tmpl_created\";s:10:\"1547848411\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/popups/classic-register-subscribe-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"527\";s:11:\"trend_index\";s:3:\"520\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:373;a:14:{s:2:\"id\";s:4:\"1190\";s:5:\"title\";s:26:\"Landing Page &#8211; Hotel\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2017/03/lp2-l.png\";s:12:\"tmpl_created\";s:10:\"1490707391\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/landing-page-hotel/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"1\";s:16:\"popularity_index\";s:1:\"5\";s:11:\"trend_index\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:374;a:14:{s:2:\"id\";s:4:\"9816\";s:5:\"title\";s:30:\"Classic | Sale | Gym | Fitness\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2019/01/classic_sale_sport_small.png\";s:12:\"tmpl_created\";s:10:\"1547991876\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/popups/classic-sale-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"1\";s:16:\"popularity_index\";s:3:\"536\";s:11:\"trend_index\";s:3:\"535\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:375;a:14:{s:2:\"id\";s:4:\"9602\";s:5:\"title\";s:35:\"Bottom Bar | Announcement | Cookies\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2019/01/Bottombar_Announcement_small_01.png\";s:12:\"tmpl_created\";s:10:\"1546964559\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/popups/bottom-bar-announcement-01/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"1\";s:16:\"popularity_index\";s:3:\"496\";s:11:\"trend_index\";s:3:\"511\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:376;a:14:{s:2:\"id\";s:3:\"225\";s:5:\"title\";s:27:\"Homepage &#8211; Restaurant\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/08/0016.png\";s:12:\"tmpl_created\";s:10:\"1470829872\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/homepage-restaurant/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:32:\"[\"Food\",\"Homepage\",\"Restaurant\"]\";s:10:\"menu_order\";s:1:\"2\";s:16:\"popularity_index\";s:1:\"2\";s:11:\"trend_index\";s:1:\"2\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:377;a:14:{s:2:\"id\";s:3:\"463\";s:5:\"title\";s:22:\"Homepage &#8211; Study\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/10/0022.png\";s:12:\"tmpl_created\";s:10:\"1477388340\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/homepage-study/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:32:\"[\"Education\",\"Homepage\",\"Study\"]\";s:10:\"menu_order\";s:1:\"3\";s:16:\"popularity_index\";s:1:\"4\";s:11:\"trend_index\";s:1:\"3\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:378;a:14:{s:2:\"id\";s:5:\"10277\";s:5:\"title\";s:36:\"Bottom Bar | Promotion | Sale | Book\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/01/book_small.png\";s:12:\"tmpl_created\";s:10:\"1548055999\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/popups/bottom-bar-promotion-book/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"3\";s:16:\"popularity_index\";s:3:\"548\";s:11:\"trend_index\";s:3:\"502\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:379;a:14:{s:2:\"id\";s:3:\"181\";s:5:\"title\";s:23:\"Homepage &#8211; Agency\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/08/0019.png\";s:12:\"tmpl_created\";s:10:\"1470826567\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/homepage-agency/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:32:\"[\"Agency\",\"Creative\",\"Homepage\"]\";s:10:\"menu_order\";s:1:\"4\";s:16:\"popularity_index\";s:1:\"3\";s:11:\"trend_index\";s:1:\"4\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:380;a:14:{s:2:\"id\";s:4:\"9903\";s:5:\"title\";s:34:\"Bottom Bar | Promotion | Olive Oil\";s:9:\"thumbnail\";s:93:\"https://library.elementor.com/wp-content/uploads/2019/01/bottom-bar_promotion_olive_small.png\";s:12:\"tmpl_created\";s:10:\"1547838896\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/popups/bottom-bar-promotion/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"4\";s:16:\"popularity_index\";s:3:\"563\";s:11:\"trend_index\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:381;a:14:{s:2:\"id\";s:3:\"150\";s:5:\"title\";s:19:\"Product &#8211; App\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/08/0003.png\";s:12:\"tmpl_created\";s:10:\"1470829879\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:101:\"https://library.elementor.com/product-app/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"5\";s:16:\"popularity_index\";s:2:\"12\";s:11:\"trend_index\";s:1:\"5\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:382;a:14:{s:2:\"id\";s:5:\"10549\";s:5:\"title\";s:33:\"Bottom Bar | Register | Subscribe\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/01/com_small.png\";s:12:\"tmpl_created\";s:10:\"1547967595\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/popups/bottom-bar-register-subscribe/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"6\";s:16:\"popularity_index\";s:3:\"542\";s:11:\"trend_index\";s:3:\"549\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:383;a:14:{s:2:\"id\";s:5:\"11163\";s:5:\"title\";s:32:\"Digital Agency &#8211; Home Page\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/07/Home_small.png\";s:12:\"tmpl_created\";s:10:\"1564641877\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/digital-agency-home-page/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"marketing\"]\";s:10:\"menu_order\";s:1:\"6\";s:16:\"popularity_index\";s:3:\"205\";s:11:\"trend_index\";s:2:\"20\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:384;a:14:{s:2:\"id\";s:5:\"11129\";s:5:\"title\";s:28:\"Digital Agency &#8211; About\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/07/About_small.png\";s:12:\"tmpl_created\";s:10:\"1564641889\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/digital-agency-about/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"marketing\"]\";s:10:\"menu_order\";s:1:\"7\";s:16:\"popularity_index\";s:3:\"355\";s:11:\"trend_index\";s:2:\"98\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:385;a:14:{s:2:\"id\";s:5:\"11074\";s:5:\"title\";s:31:\"Digital Agency &#8211; Services\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/07/Services_small.png\";s:12:\"tmpl_created\";s:10:\"1564641872\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/digital-agency-services/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"marketing\"]\";s:10:\"menu_order\";s:1:\"8\";s:16:\"popularity_index\";s:3:\"329\";s:11:\"trend_index\";s:2:\"57\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:386;a:14:{s:2:\"id\";s:5:\"10529\";s:5:\"title\";s:36:\"Classic | Announcement | Maintenance\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/01/icon_small.png\";s:12:\"tmpl_created\";s:10:\"1548046309\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/popups/classic-announcement/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"9\";s:16:\"popularity_index\";s:3:\"452\";s:11:\"trend_index\";s:3:\"470\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:387;a:14:{s:2:\"id\";s:5:\"11056\";s:5:\"title\";s:35:\"Digital Agency &#8211; Social Media\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2019/07/Social-Media_small.png\";s:12:\"tmpl_created\";s:10:\"1564641867\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/digital-agency-social-media/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"marketing\"]\";s:10:\"menu_order\";s:1:\"9\";s:16:\"popularity_index\";s:3:\"417\";s:11:\"trend_index\";s:3:\"190\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:388;a:14:{s:2:\"id\";s:5:\"11094\";s:5:\"title\";s:30:\"Digital Agency &#8211; Clients\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/07/Clients_small.png\";s:12:\"tmpl_created\";s:10:\"1564641885\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/digital-agency-clients/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"marketing\"]\";s:10:\"menu_order\";s:2:\"10\";s:16:\"popularity_index\";s:3:\"482\";s:11:\"trend_index\";s:3:\"279\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:389;a:14:{s:2:\"id\";s:5:\"11034\";s:5:\"title\";s:30:\"Digital Agency &#8211; Contact\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2019/07/Contsct-Us_small.png\";s:12:\"tmpl_created\";s:10:\"1564641881\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/contact-digital-agency/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"marketing\"]\";s:10:\"menu_order\";s:2:\"11\";s:16:\"popularity_index\";s:3:\"370\";s:11:\"trend_index\";s:2:\"96\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:390;a:14:{s:2:\"id\";s:3:\"519\";s:5:\"title\";s:24:\"Homepage &#8211; Fitness\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/10/0023.png\";s:12:\"tmpl_created\";s:10:\"1477388808\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/homepage-fitness/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:45:\"[\"Fitness\",\"Gym\",\"Health\",\"Homepage\",\"Sport\"]\";s:10:\"menu_order\";s:2:\"12\";s:16:\"popularity_index\";s:1:\"8\";s:11:\"trend_index\";s:2:\"11\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:391;a:14:{s:2:\"id\";s:4:\"9139\";s:5:\"title\";s:25:\"Homepage &#8211; Business\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/07/Get_Started_250.png\";s:12:\"tmpl_created\";s:10:\"1532949924\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/homepage-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:167:\"[\"Agency\",\"bootstrap\",\"business\",\"corporate\",\"Landing Page\",\"marketing campaign\",\"marketing landing page\",\"product launch\",\"software\",\"Startup\",\"startup landing page\"]\";s:10:\"menu_order\";s:2:\"13\";s:16:\"popularity_index\";s:1:\"7\";s:11:\"trend_index\";s:1:\"6\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:392;a:14:{s:2:\"id\";s:4:\"1504\";s:5:\"title\";s:33:\"Landing Page &#8211; Mobile App 3\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-app2.png\";s:12:\"tmpl_created\";s:10:\"1494352112\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/landing-page-mobile-app-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"14\";s:16:\"popularity_index\";s:3:\"139\";s:11:\"trend_index\";s:3:\"136\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:393;a:14:{s:2:\"id\";s:4:\"1503\";s:5:\"title\";s:33:\"Landing Page &#8211; Mobile App 2\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-app1.png\";s:12:\"tmpl_created\";s:10:\"1494352113\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/landing-page-mobile-app-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"15\";s:16:\"popularity_index\";s:3:\"141\";s:11:\"trend_index\";s:3:\"176\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:394;a:14:{s:2:\"id\";s:4:\"1634\";s:5:\"title\";s:33:\"Landing Page &#8211; Chiropractor\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-Chiropractor.png\";s:12:\"tmpl_created\";s:10:\"1494352119\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/landing-page-chiropractor/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"16\";s:16:\"popularity_index\";s:3:\"194\";s:11:\"trend_index\";s:3:\"182\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:395;a:14:{s:2:\"id\";s:5:\"10413\";s:5:\"title\";s:28:\"Classic | Content Lock | Pop\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/01/hot_small.png\";s:12:\"tmpl_created\";s:10:\"1547961774\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/popups/classic-content-lock/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"17\";s:16:\"popularity_index\";s:3:\"553\";s:11:\"trend_index\";s:3:\"562\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:396;a:14:{s:2:\"id\";s:5:\"11545\";s:5:\"title\";s:21:\"Gym &#8211; Home Page\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/08/Home_Small.png\";s:12:\"tmpl_created\";s:10:\"1567392943\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/gym-home-page/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";s:2:\"17\";s:16:\"popularity_index\";s:3:\"475\";s:11:\"trend_index\";s:3:\"118\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:397;a:14:{s:2:\"id\";s:5:\"11478\";s:5:\"title\";s:17:\"Gym &#8211; About\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/08/About_Small.png\";s:12:\"tmpl_created\";s:10:\"1567392939\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:99:\"https://library.elementor.com/gym-about/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";s:2:\"18\";s:16:\"popularity_index\";s:3:\"520\";s:11:\"trend_index\";s:3:\"240\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:398;a:14:{s:2:\"id\";s:5:\"10223\";s:5:\"title\";s:15:\"Classic | Login\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/01/welcome_small.png\";s:12:\"tmpl_created\";s:10:\"1547887343\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/popups/classic-login-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"19\";s:16:\"popularity_index\";s:3:\"440\";s:11:\"trend_index\";s:3:\"471\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:399;a:14:{s:2:\"id\";s:5:\"10559\";s:5:\"title\";s:33:\"Bottom Bar | Register | Subscribe\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/01/fly_small.png\";s:12:\"tmpl_created\";s:10:\"1547967711\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/popups/bottom-bar-register-subscribe-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"19\";s:16:\"popularity_index\";s:3:\"513\";s:11:\"trend_index\";s:3:\"527\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:400;a:14:{s:2:\"id\";s:5:\"11572\";s:5:\"title\";s:19:\"Gym &#8211; Trainer\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/08/Trainer_Small.png\";s:12:\"tmpl_created\";s:10:\"1567392934\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:101:\"https://library.elementor.com/gym-trainer/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";s:2:\"19\";s:16:\"popularity_index\";s:3:\"559\";s:11:\"trend_index\";s:3:\"278\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:401;a:14:{s:2:\"id\";s:5:\"10403\";s:5:\"title\";s:15:\"Classic | Login\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/01/hello_small.png\";s:12:\"tmpl_created\";s:10:\"1548056371\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/popups/classic-login-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"20\";s:16:\"popularity_index\";s:3:\"492\";s:11:\"trend_index\";s:3:\"452\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:402;a:14:{s:2:\"id\";s:5:\"11506\";s:5:\"title\";s:19:\"Gym &#8211; Classes\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/08/Classes_Small.png\";s:12:\"tmpl_created\";s:10:\"1567392930\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:101:\"https://library.elementor.com/gym-classes/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";s:2:\"20\";s:16:\"popularity_index\";s:3:\"554\";s:11:\"trend_index\";s:3:\"266\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:403;a:14:{s:2:\"id\";s:5:\"11536\";s:5:\"title\";s:19:\"Gym &#8211; Fitness\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/08/Fitness_Small.png\";s:12:\"tmpl_created\";s:10:\"1567392927\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:101:\"https://library.elementor.com/gym-fitness/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";s:2:\"21\";s:16:\"popularity_index\";s:3:\"562\";s:11:\"trend_index\";s:3:\"394\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:404;a:14:{s:2:\"id\";s:4:\"9913\";s:5:\"title\";s:27:\"Classic | Login | Christmas\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/01/log_small.png\";s:12:\"tmpl_created\";s:10:\"1547841430\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/popups/classic-login-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"21\";s:16:\"popularity_index\";s:3:\"484\";s:11:\"trend_index\";s:3:\"386\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:405;a:14:{s:2:\"id\";s:5:\"11563\";s:5:\"title\";s:19:\"Gym &#8211; Pricing\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/08/Pricing_Small.png\";s:12:\"tmpl_created\";s:10:\"1567392923\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:101:\"https://library.elementor.com/gym-pricing/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";s:2:\"22\";s:16:\"popularity_index\";s:3:\"558\";s:11:\"trend_index\";s:3:\"316\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:406;a:14:{s:2:\"id\";s:5:\"11528\";s:5:\"title\";s:19:\"Gym &#8211; Contact\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/08/Contact_Small.png\";s:12:\"tmpl_created\";s:10:\"1567392917\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:101:\"https://library.elementor.com/gym-contact/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";s:2:\"23\";s:16:\"popularity_index\";s:3:\"547\";s:11:\"trend_index\";s:3:\"288\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:407;a:14:{s:2:\"id\";s:3:\"487\";s:5:\"title\";s:29:\"Landing Page &#8211; Vacation\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/10/0021.png\";s:12:\"tmpl_created\";s:10:\"1477388357\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/landing-page-vacation/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"24\";s:16:\"popularity_index\";s:2:\"22\";s:11:\"trend_index\";s:2:\"21\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:408;a:14:{s:2:\"id\";s:3:\"855\";s:5:\"title\";s:37:\"Landing Page &#8211; Personal Trainer\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2017/02/Landing-Page-Personal-Trainer.png\";s:12:\"tmpl_created\";s:10:\"1494352061\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/landing-page-personal-trainer/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"25\";s:16:\"popularity_index\";s:3:\"218\";s:11:\"trend_index\";s:3:\"208\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:409;a:14:{s:2:\"id\";s:3:\"955\";s:5:\"title\";s:31:\"Landing Page &#8211; Law Office\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2017/02/Landing-Page-Law-Office.png\";s:12:\"tmpl_created\";s:10:\"1494352069\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/landing-page-law-office/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:31:\"[\"Landing Page\",\"Law\",\"Office\"]\";s:10:\"menu_order\";s:2:\"26\";s:16:\"popularity_index\";s:3:\"146\";s:11:\"trend_index\";s:3:\"123\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:410;a:14:{s:2:\"id\";s:4:\"9592\";s:5:\"title\";s:26:\"Classic | Promotion | Sale\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2019/01/Classic_Promotion_small_01.png\";s:12:\"tmpl_created\";s:10:\"1546963720\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/popups/classic-promotion-01/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"26\";s:16:\"popularity_index\";s:3:\"508\";s:11:\"trend_index\";s:3:\"482\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:411;a:14:{s:2:\"id\";s:5:\"10210\";s:5:\"title\";s:29:\"Classic | Promotion | Webinar\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/01/web_small-1.png\";s:12:\"tmpl_created\";s:10:\"1547886103\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/popups/classic-promotion-webinar/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"27\";s:16:\"popularity_index\";s:3:\"574\";s:11:\"trend_index\";s:3:\"565\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:412;a:14:{s:2:\"id\";s:4:\"9373\";s:5:\"title\";s:33:\"Landing Page &#8211; Conference 5\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2018/11/conference-250.png\";s:12:\"tmpl_created\";s:10:\"1542811219\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/landing-page-conference-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"27\";s:16:\"popularity_index\";s:3:\"214\";s:11:\"trend_index\";s:3:\"269\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:413;a:14:{s:2:\"id\";s:3:\"974\";s:5:\"title\";s:28:\"Landing Page &#8211; Stylist\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2017/03/Landing-Page-Stylist.png\";s:12:\"tmpl_created\";s:10:\"1494352071\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/landing-page-stylist/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:146:\"[\"cosmetics\",\"fashion\",\"girly\",\"hairdresser\",\"lifestyle\",\"makeup\",\"manicure\",\"pedicure\",\"products\",\"salon\",\"Shop\",\"skincare\",\"stylist\",\"wellness\"]\";s:10:\"menu_order\";s:2:\"28\";s:16:\"popularity_index\";s:3:\"272\";s:11:\"trend_index\";s:3:\"341\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:414;a:14:{s:2:\"id\";s:3:\"754\";s:5:\"title\";s:25:\"Services &#8211; Interior\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2017/01/Interior-Services.png\";s:12:\"tmpl_created\";s:10:\"1485269691\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/services-interior/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"29\";s:16:\"popularity_index\";s:3:\"224\";s:11:\"trend_index\";s:3:\"263\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:415;a:14:{s:2:\"id\";s:3:\"752\";s:5:\"title\";s:24:\"Contact &#8211; Interior\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2017/01/interior-contact.png\";s:12:\"tmpl_created\";s:10:\"1485269737\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/contact-interior/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"30\";s:16:\"popularity_index\";s:3:\"271\";s:11:\"trend_index\";s:3:\"292\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:416;a:14:{s:2:\"id\";s:5:\"10047\";s:5:\"title\";s:15:\"Classic | Login\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/01/yellow_small.png\";s:12:\"tmpl_created\";s:10:\"1547847757\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/popups/classic-login-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"30\";s:16:\"popularity_index\";s:3:\"453\";s:11:\"trend_index\";s:3:\"441\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:417;a:14:{s:2:\"id\";s:3:\"753\";s:5:\"title\";s:22:\"About &#8211; Interior\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2017/01/Interior-About.png\";s:12:\"tmpl_created\";s:10:\"1485269710\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/about-interior/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"31\";s:16:\"popularity_index\";s:3:\"253\";s:11:\"trend_index\";s:3:\"287\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:418;a:14:{s:2:\"id\";s:4:\"9879\";s:5:\"title\";s:38:\"Classic | Register | Subscribe | Leads\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/01/dog_small.png\";s:12:\"tmpl_created\";s:10:\"1547838416\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/popups/classic-register-subscribe/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"31\";s:16:\"popularity_index\";s:3:\"511\";s:11:\"trend_index\";s:3:\"477\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:419;a:14:{s:2:\"id\";s:3:\"751\";s:5:\"title\";s:25:\"Homepage &#8211; Interior\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2017/01/interior-home.png\";s:12:\"tmpl_created\";s:10:\"1485269743\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/homepage-interior/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"32\";s:16:\"popularity_index\";s:3:\"222\";s:11:\"trend_index\";s:3:\"297\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:420;a:14:{s:2:\"id\";s:4:\"2402\";s:5:\"title\";s:32:\"Homepage &#8211; Interior Design\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2017/09/Interior.png\";s:12:\"tmpl_created\";s:10:\"1506441447\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/homepage-interior-design/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:193:\"[\"Architecture\",\"building\",\"business\",\"Creative\",\"exterior design\",\"furniture design\",\"Gallery\",\"garden design\",\"house\",\"interior design\",\"landscape design\",\"multipurpose\",\"portfolio\",\"studio\"]\";s:10:\"menu_order\";s:2:\"33\";s:16:\"popularity_index\";s:2:\"67\";s:11:\"trend_index\";s:3:\"149\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:421;a:14:{s:2:\"id\";s:4:\"3626\";s:5:\"title\";s:30:\"Snowboard Site &#8211; Contact\";s:9:\"thumbnail\";s:62:\"https://library.elementor.com/wp-content/uploads/2017/12/3.png\";s:12:\"tmpl_created\";s:10:\"1513513193\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/snowboard-site-contact/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"34\";s:16:\"popularity_index\";s:3:\"220\";s:11:\"trend_index\";s:3:\"223\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:422;a:14:{s:2:\"id\";s:5:\"10297\";s:5:\"title\";s:14:\"Classic | Sale\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/01/s_yellow_small.png\";s:12:\"tmpl_created\";s:10:\"1548056099\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/popups/classic-sale-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"35\";s:16:\"popularity_index\";s:3:\"487\";s:11:\"trend_index\";s:3:\"539\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:423;a:14:{s:2:\"id\";s:4:\"3632\";s:5:\"title\";s:31:\"Snowboard Site &#8211; Services\";s:9:\"thumbnail\";s:62:\"https://library.elementor.com/wp-content/uploads/2017/12/2.png\";s:12:\"tmpl_created\";s:10:\"1513513171\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/snowboard-site-services/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"35\";s:16:\"popularity_index\";s:3:\"177\";s:11:\"trend_index\";s:3:\"168\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:424;a:14:{s:2:\"id\";s:5:\"10393\";s:5:\"title\";s:14:\"Classic | Sale\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/01/blue_small.png\";s:12:\"tmpl_created\";s:10:\"1548056682\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/popups/classic-sale-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"36\";s:16:\"popularity_index\";s:3:\"528\";s:11:\"trend_index\";s:3:\"534\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:425;a:14:{s:2:\"id\";s:4:\"3619\";s:5:\"title\";s:31:\"Snowboard Site &#8211; Homepage\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2017/12/home.png\";s:12:\"tmpl_created\";s:10:\"1513513137\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/snowboard-site-homepage/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"36\";s:16:\"popularity_index\";s:3:\"202\";s:11:\"trend_index\";s:3:\"205\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:426;a:14:{s:2:\"id\";s:4:\"9425\";s:5:\"title\";s:38:\"Black Friday &#8211;  80&#8217;s style\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/11/unnamed-file.png\";s:12:\"tmpl_created\";s:10:\"1542901234\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/black-friday-80s-style/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"37\";s:16:\"popularity_index\";s:3:\"287\";s:11:\"trend_index\";s:3:\"325\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:427;a:14:{s:2:\"id\";s:5:\"10579\";s:5:\"title\";s:14:\"Classic | Sale\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/01/sale1_small.png\";s:12:\"tmpl_created\";s:10:\"1547967887\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/popups/classic-sale-8/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"38\";s:16:\"popularity_index\";s:3:\"533\";s:11:\"trend_index\";s:3:\"545\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:428;a:14:{s:2:\"id\";s:5:\"10180\";s:5:\"title\";s:21:\"Fly In | Announcement\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/01/glass_small.png\";s:12:\"tmpl_created\";s:10:\"1548045309\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/popups/fly-in-announcement-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"43\";s:16:\"popularity_index\";s:3:\"526\";s:11:\"trend_index\";s:3:\"513\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:429;a:14:{s:2:\"id\";s:4:\"9731\";s:5:\"title\";s:26:\"Classic | Sale | Promotion\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/01/icecream_small.png\";s:12:\"tmpl_created\";s:10:\"1547976166\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/popups/classic-sale/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"46\";s:16:\"popularity_index\";s:3:\"498\";s:11:\"trend_index\";s:3:\"417\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:430;a:14:{s:2:\"id\";s:3:\"147\";s:5:\"title\";s:20:\"Homepage &#8211; App\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/08/0004.png\";s:12:\"tmpl_created\";s:10:\"1470829868\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/homepage-app/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"App\",\"Homepage\"]\";s:10:\"menu_order\";s:2:\"51\";s:16:\"popularity_index\";s:1:\"1\";s:11:\"trend_index\";s:1:\"8\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:431;a:14:{s:2:\"id\";s:3:\"777\";s:5:\"title\";s:28:\"Homepage &#8211; Coffee Shop\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2017/01/rest-home.jpg\";s:12:\"tmpl_created\";s:10:\"1485273092\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/homepage-coffee-shop/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:41:\"[\"Coffee\",\"Homepage\",\"Restaurant\",\"Shop\"]\";s:10:\"menu_order\";s:2:\"52\";s:16:\"popularity_index\";s:3:\"102\";s:11:\"trend_index\";s:3:\"295\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:432;a:14:{s:2:\"id\";s:4:\"2404\";s:5:\"title\";s:24:\"Homepage &#8211; Product\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2017/09/product.png\";s:12:\"tmpl_created\";s:10:\"1506441452\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/homepage-product/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:103:\"[\"business\",\"colorful\",\"ecommerce\",\"flat\",\"mobile\",\"modern\",\"responsive\",\"retina\",\"Shop\",\"woocommerce\"]\";s:10:\"menu_order\";s:2:\"53\";s:16:\"popularity_index\";s:3:\"104\";s:11:\"trend_index\";s:3:\"209\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:433;a:14:{s:2:\"id\";s:3:\"492\";s:5:\"title\";s:25:\"Homepage &#8211; Law firm\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/10/0024.png\";s:12:\"tmpl_created\";s:10:\"1477388365\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/homepage-law-firm/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:25:\"[\"Firm\",\"Homepage\",\"Law\"]\";s:10:\"menu_order\";s:2:\"54\";s:16:\"popularity_index\";s:1:\"9\";s:11:\"trend_index\";s:2:\"26\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:434;a:14:{s:2:\"id\";s:5:\"10005\";s:5:\"title\";s:38:\"Fly In | Promotion | Spa | Body Lotion\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2019/01/Flyin_lotion_small.png\";s:12:\"tmpl_created\";s:10:\"1547844909\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/popups/fly-in-promotion-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"54\";s:16:\"popularity_index\";s:3:\"557\";s:11:\"trend_index\";s:3:\"558\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:435;a:14:{s:2:\"id\";s:5:\"10424\";s:5:\"title\";s:21:\"Fly In | Announcement\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/01/flower_small.png\";s:12:\"tmpl_created\";s:10:\"1547961866\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/popups/fly-in-announcement-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"55\";s:16:\"popularity_index\";s:3:\"491\";s:11:\"trend_index\";s:3:\"560\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:436;a:14:{s:2:\"id\";s:4:\"3451\";s:5:\"title\";s:39:\"Homepage &#8211; Goodness meal services\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2017/11/goodness-featured-image.png\";s:12:\"tmpl_created\";s:10:\"1512054116\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/homepage-goodness-meal-services/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"55\";s:16:\"popularity_index\";s:3:\"174\";s:11:\"trend_index\";s:3:\"286\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:437;a:14:{s:2:\"id\";s:4:\"9975\";s:5:\"title\";s:24:\"Fly In | Promotion | App\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2019/01/flyin_webinar_app_small.png\";s:12:\"tmpl_created\";s:10:\"1547842284\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/popups/fly-in-promotion-webinar/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"55\";s:16:\"popularity_index\";s:3:\"573\";s:11:\"trend_index\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:438;a:14:{s:2:\"id\";s:4:\"2152\";s:5:\"title\";s:26:\"Homepage &#8211; Cake Shop\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2017/07/cake-home.png\";s:12:\"tmpl_created\";s:10:\"1499774132\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/homepage-cake-shop/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:39:\"[\"Cake\",\"Homepage\",\"Restaurant\",\"Shop\"]\";s:10:\"menu_order\";s:2:\"56\";s:16:\"popularity_index\";s:3:\"276\";s:11:\"trend_index\";s:3:\"347\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:439;a:14:{s:2:\"id\";s:5:\"10067\";s:5:\"title\";s:31:\"Fly In | Announcement | Cookies\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2019/01/fly-in_cookie_yellow_small.png\";s:12:\"tmpl_created\";s:10:\"1547848075\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/popups/fly-in-announcement/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"56\";s:16:\"popularity_index\";s:3:\"477\";s:11:\"trend_index\";s:3:\"467\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:440;a:14:{s:2:\"id\";s:4:\"1068\";s:5:\"title\";s:27:\"Homepage &#8211; Copywriter\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2017/03/copywriter.png\";s:12:\"tmpl_created\";s:10:\"1488805928\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/homepage-copywriter/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:25:\"[\"Copywriter\",\"Homepage\"]\";s:10:\"menu_order\";s:2:\"57\";s:16:\"popularity_index\";s:3:\"159\";s:11:\"trend_index\";s:3:\"267\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:441;a:14:{s:2:\"id\";s:4:\"2813\";s:5:\"title\";s:32:\"Homepage &#8211; Creative Agency\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2017/11/Creative-Agency-–-Home-Page.png\";s:12:\"tmpl_created\";s:10:\"1509615049\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/homepage-creative-agency/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:32:\"[\"Agency\",\"Creative\",\"Homepage\"]\";s:10:\"menu_order\";s:2:\"58\";s:16:\"popularity_index\";s:2:\"77\";s:11:\"trend_index\";s:3:\"126\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:442;a:14:{s:2:\"id\";s:5:\"10329\";s:5:\"title\";s:25:\"Fly In | Sale | Promotion\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/01/organic_small.png\";s:12:\"tmpl_created\";s:10:\"1547893478\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/popups/fly-in-sale-promotion/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"59\";s:16:\"popularity_index\";s:3:\"575\";s:11:\"trend_index\";s:3:\"548\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:443;a:14:{s:2:\"id\";s:3:\"728\";s:5:\"title\";s:33:\"Homepage &#8211; Delivery Company\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2017/01/delivery-company-home-page.jpg\";s:12:\"tmpl_created\";s:10:\"1485269993\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/homepage-delivery-company/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:23:\"[\"Delivery\",\"Homepage\"]\";s:10:\"menu_order\";s:2:\"59\";s:16:\"popularity_index\";s:3:\"206\";s:11:\"trend_index\";s:3:\"294\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:444;a:14:{s:2:\"id\";s:4:\"2403\";s:5:\"title\";s:29:\"Homepage &#8211; Luxury Hotel\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2017/09/Hotel.png\";s:12:\"tmpl_created\";s:10:\"1506441428\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/homepage-luxury-hotel/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"60\";s:16:\"popularity_index\";s:3:\"197\";s:11:\"trend_index\";s:3:\"254\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:445;a:14:{s:2:\"id\";s:4:\"9650\";s:5:\"title\";s:36:\"Fly In | Register | Subscribe | Sale\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2019/01/Fly-In_Register_small_01a.png\";s:12:\"tmpl_created\";s:10:\"1547007598\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/popups/fly-in-register_big-01/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"60\";s:16:\"popularity_index\";s:3:\"568\";s:11:\"trend_index\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:446;a:14:{s:2:\"id\";s:4:\"1903\";s:5:\"title\";s:20:\"One Page &#8211; Spa\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2017/06/spa.png\";s:12:\"tmpl_created\";s:10:\"1496822325\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/one-page-spa/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:132:\"[\"beauty\",\"care\",\"girly\",\"hair\",\"Health\",\"hospitality\",\"massage\",\"medical\",\"parlor\",\"physiotherapy\",\"salon\",\"spa\",\"wellness\",\"yoga\"]\";s:10:\"menu_order\";s:2:\"61\";s:16:\"popularity_index\";s:3:\"147\";s:11:\"trend_index\";s:3:\"244\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:447;a:14:{s:2:\"id\";s:4:\"2123\";s:5:\"title\";s:33:\"One Page &#8211; Architect Office\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2017/06/architect.png\";s:12:\"tmpl_created\";s:10:\"1499772989\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/one-page-architect-office/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"62\";s:16:\"popularity_index\";s:2:\"10\";s:11:\"trend_index\";s:2:\"10\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:448;a:14:{s:2:\"id\";s:5:\"10200\";s:5:\"title\";s:33:\"Full Screen | Content Lock | Wine\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2019/01/lock_wine_small.png\";s:12:\"tmpl_created\";s:10:\"1548055635\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/popups/full-screen-content-lock/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"63\";s:16:\"popularity_index\";s:3:\"546\";s:11:\"trend_index\";s:3:\"567\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:449;a:14:{s:2:\"id\";s:4:\"1888\";s:5:\"title\";s:32:\"One Page &#8211; Creative Meetup\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2017/06/creative-meetup.png\";s:12:\"tmpl_created\";s:10:\"1496822319\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/one-page-creative-meetup/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"63\";s:16:\"popularity_index\";s:3:\"196\";s:11:\"trend_index\";s:3:\"377\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:450;a:14:{s:2:\"id\";s:5:\"10287\";s:5:\"title\";s:34:\"Full Screen | Register | Subscribe\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2019/01/glass_pink_small.png\";s:12:\"tmpl_created\";s:10:\"1547994301\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/popups/full-screen-login-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"64\";s:16:\"popularity_index\";s:3:\"489\";s:11:\"trend_index\";s:3:\"431\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:451;a:14:{s:2:\"id\";s:4:\"1891\";s:5:\"title\";s:35:\"One Page &#8211; Textile Convention\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2017/06/textile-meetup.png\";s:12:\"tmpl_created\";s:10:\"1496822323\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/one-page-textile-convention/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"64\";s:16:\"popularity_index\";s:3:\"343\";s:11:\"trend_index\";s:3:\"454\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:452;a:14:{s:2:\"id\";s:4:\"1880\";s:5:\"title\";s:24:\"One Page &#8211; Wedding\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2017/06/wedding.png\";s:12:\"tmpl_created\";s:10:\"1496822317\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/one-page-wedding/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:82:\"[\"bride\",\"ceremony\",\"cute\",\"event\",\"fancy\",\"girly\",\"groom\",\"guestbook\",\"marriage\"]\";s:10:\"menu_order\";s:2:\"65\";s:16:\"popularity_index\";s:3:\"364\";s:11:\"trend_index\";s:3:\"522\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:453;a:14:{s:2:\"id\";s:4:\"1885\";s:5:\"title\";s:29:\"One Page &#8211; Yacht Rental\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2017/06/yacht-home.png\";s:12:\"tmpl_created\";s:10:\"1496822321\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/one-page-yacht-rental/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"66\";s:16:\"popularity_index\";s:3:\"163\";s:11:\"trend_index\";s:3:\"330\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:454;a:14:{s:2:\"id\";s:4:\"9889\";s:5:\"title\";s:28:\"Full Screen | Login | Cactus\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/01/cac_small.png\";s:12:\"tmpl_created\";s:10:\"1547838722\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/popups/full-screen-login/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"66\";s:16:\"popularity_index\";s:3:\"561\";s:11:\"trend_index\";s:3:\"570\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:455;a:14:{s:2:\"id\";s:4:\"2723\";s:5:\"title\";s:34:\"Portfolio &#8211; Graphic Designer\";s:9:\"thumbnail\";s:91:\"https://library.elementor.com/wp-content/uploads/2017/11/Graphic-Designer-–-Portfolio.png\";s:12:\"tmpl_created\";s:10:\"1509633883\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/portfolio-graphic-designer/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"67\";s:16:\"popularity_index\";s:3:\"149\";s:11:\"trend_index\";s:3:\"242\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:456;a:14:{s:2:\"id\";s:5:\"10077\";s:5:\"title\";s:29:\"Fly In | Register | Subscribe\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2019/01/flyin_register_blue_small.png\";s:12:\"tmpl_created\";s:10:\"1547848197\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/popups/fly-in-register-subscribe/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"67\";s:16:\"popularity_index\";s:3:\"447\";s:11:\"trend_index\";s:3:\"485\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:457;a:14:{s:2:\"id\";s:4:\"2145\";s:5:\"title\";s:30:\"About &#8211; Delivery Company\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2017/07/delivery-about.png\";s:12:\"tmpl_created\";s:10:\"1499774125\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/about-delivery-company/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:10:\"[\"moving\"]\";s:10:\"menu_order\";s:2:\"68\";s:16:\"popularity_index\";s:3:\"282\";s:11:\"trend_index\";s:3:\"421\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:458;a:14:{s:2:\"id\";s:5:\"10362\";s:5:\"title\";s:32:\"Full Screen | Login | Restaurant\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/01/vip_small.png\";s:12:\"tmpl_created\";s:10:\"1548056253\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/popups/full-screen-login-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"69\";s:16:\"popularity_index\";s:3:\"500\";s:11:\"trend_index\";s:3:\"447\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:459;a:14:{s:2:\"id\";s:4:\"2155\";s:5:\"title\";s:23:\"About &#8211; Cake Shop\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2017/07/cake-about.png\";s:12:\"tmpl_created\";s:10:\"1499774130\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/about-cake-shop/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:8:\"[\"Food\"]\";s:10:\"menu_order\";s:2:\"69\";s:16:\"popularity_index\";s:3:\"340\";s:11:\"trend_index\";s:3:\"401\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:460;a:14:{s:2:\"id\";s:4:\"1085\";s:5:\"title\";s:21:\"About &#8211; Startup\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2017/03/Startup.png\";s:12:\"tmpl_created\";s:10:\"1488810874\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/about-startup/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:19:\"[\"About\",\"Startup\"]\";s:10:\"menu_order\";s:2:\"70\";s:16:\"popularity_index\";s:1:\"6\";s:11:\"trend_index\";s:1:\"9\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:461;a:14:{s:2:\"id\";s:3:\"143\";s:5:\"title\";s:22:\"About &#8211; Personal\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/08/0010.png\";s:12:\"tmpl_created\";s:10:\"1470820447\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/about-personal/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:20:\"[\"About\",\"Personal\"]\";s:10:\"menu_order\";s:2:\"71\";s:16:\"popularity_index\";s:2:\"19\";s:11:\"trend_index\";s:2:\"30\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:462;a:14:{s:2:\"id\";s:5:\"10454\";s:5:\"title\";s:29:\"Full Screen | Promotion | App\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/01/appy_small.png\";s:12:\"tmpl_created\";s:10:\"1548056896\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/popups/full-screen-promotion-app/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"71\";s:16:\"popularity_index\";s:3:\"570\";s:11:\"trend_index\";s:3:\"572\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:463;a:14:{s:2:\"id\";s:3:\"101\";s:5:\"title\";s:16:\"About &#8211; CV\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/08/0018.png\";s:12:\"tmpl_created\";s:10:\"1470829785\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:98:\"https://library.elementor.com/about-cv/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:77:\"[\"creative portfolio\",\"Personal\",\"portfolio\",\"professional\",\"resume\",\"vcard\"]\";s:10:\"menu_order\";s:2:\"72\";s:16:\"popularity_index\";s:2:\"28\";s:11:\"trend_index\";s:2:\"56\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:464;a:14:{s:2:\"id\";s:4:\"9803\";s:5:\"title\";s:41:\"Full Screen | Register | Contact | Meetup\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2019/01/designme_full_small.png\";s:12:\"tmpl_created\";s:10:\"1547831298\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/popups/full-screen-register-contact/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"72\";s:16:\"popularity_index\";s:3:\"521\";s:11:\"trend_index\";s:3:\"555\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:465;a:14:{s:2:\"id\";s:3:\"140\";s:5:\"title\";s:25:\"About &#8211; Art Gallery\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/08/0009.png\";s:12:\"tmpl_created\";s:10:\"1470820463\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/about-art-gallery/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:25:\"[\"About\",\"Art\",\"Gallery\"]\";s:10:\"menu_order\";s:2:\"73\";s:16:\"popularity_index\";s:2:\"15\";s:11:\"trend_index\";s:2:\"25\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:466;a:14:{s:2:\"id\";s:5:\"10611\";s:5:\"title\";s:18:\"Full Screen | Sale\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/01/fla_small.png\";s:12:\"tmpl_created\";s:10:\"1547968868\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/popups/full-screen-sale/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"73\";s:16:\"popularity_index\";s:3:\"571\";s:11:\"trend_index\";s:3:\"541\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:467;a:14:{s:2:\"id\";s:3:\"213\";s:5:\"title\";s:26:\"About &#8211; Architecture\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/08/0008.png\";s:12:\"tmpl_created\";s:10:\"1470829766\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/about-architecture/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:24:\"[\"About\",\"Architecture\"]\";s:10:\"menu_order\";s:2:\"74\";s:16:\"popularity_index\";s:2:\"16\";s:11:\"trend_index\";s:2:\"32\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:468;a:14:{s:2:\"id\";s:5:\"10508\";s:5:\"title\";s:25:\"Full Screen | Welcome Mat\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/01/hand_small-1.png\";s:12:\"tmpl_created\";s:10:\"1547964711\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/popups/full-screen-welcome-mat-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"75\";s:16:\"popularity_index\";s:3:\"531\";s:11:\"trend_index\";s:3:\"519\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:469;a:14:{s:2:\"id\";s:4:\"2802\";s:5:\"title\";s:38:\"Portfolio &#8211; Fashion Photographer\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2017/11/Fashion-photographer-–-Portfolio.png\";s:12:\"tmpl_created\";s:10:\"1509615440\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/portfolio-fashion-photographer/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"75\";s:16:\"popularity_index\";s:3:\"169\";s:11:\"trend_index\";s:3:\"225\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:470;a:14:{s:2:\"id\";s:4:\"2828\";s:5:\"title\";s:35:\"Landing Page &#8211; Law Convention\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2017/11/Law-Convention-–-Landing-Page.png\";s:12:\"tmpl_created\";s:10:\"1509631636\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/landing-page-law-convention/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:35:\"[\"Convention\",\"Landing Page\",\"Law\"]\";s:10:\"menu_order\";s:2:\"76\";s:16:\"popularity_index\";s:3:\"297\";s:11:\"trend_index\";s:3:\"258\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:471;a:14:{s:2:\"id\";s:4:\"9934\";s:5:\"title\";s:38:\"Full Screen | Welcome Mat | Teddy Bear\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2019/01/full_mat_teddy_small.png\";s:12:\"tmpl_created\";s:10:\"1547841787\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/popups/full-screen-welcome-mat/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"76\";s:16:\"popularity_index\";s:3:\"514\";s:11:\"trend_index\";s:3:\"540\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:472;a:14:{s:2:\"id\";s:4:\"1461\";s:5:\"title\";s:28:\"Landing Page &#8211; Ebook 1\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-Ebook-1.png\";s:12:\"tmpl_created\";s:10:\"1494352121\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/landing-page-ebook-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:127:\"[\"App\",\"author\",\"book\",\"brochure\",\"download\",\"e-book\",\"ebook\",\"marketing\",\"product\",\"publisher\",\"sell online\",\"seo\",\"showcase\"]\";s:10:\"menu_order\";s:2:\"77\";s:16:\"popularity_index\";s:3:\"294\";s:11:\"trend_index\";s:3:\"370\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:473;a:14:{s:2:\"id\";s:4:\"1460\";s:5:\"title\";s:28:\"Landing Page &#8211; Ebook 2\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-Ebook-2.png\";s:12:\"tmpl_created\";s:10:\"1494352124\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/landing-page-ebook-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"78\";s:16:\"popularity_index\";s:3:\"305\";s:11:\"trend_index\";s:3:\"424\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:474;a:14:{s:2:\"id\";s:4:\"9709\";s:5:\"title\";s:25:\"Full Screen | Welcome Mat\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2019/01/Full-Screen_Welcome-Mat_01_small-1.png\";s:12:\"tmpl_created\";s:10:\"1547023834\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/popups/full-screen-welcome-mat-01/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"78\";s:16:\"popularity_index\";s:3:\"545\";s:11:\"trend_index\";s:3:\"559\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:475;a:14:{s:2:\"id\";s:4:\"1459\";s:5:\"title\";s:28:\"Landing Page &#8211; Ebook 3\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-Ebook-3.png\";s:12:\"tmpl_created\";s:10:\"1494352125\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/landing-page-ebook-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"79\";s:16:\"popularity_index\";s:3:\"198\";s:11:\"trend_index\";s:3:\"291\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:476;a:14:{s:2:\"id\";s:4:\"9671\";s:5:\"title\";s:34:\"Hello Bar | Announcement | Cookies\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2019/01/Top-Bar_Announcement_small_01.png\";s:12:\"tmpl_created\";s:10:\"1547010259\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/popups/hello-bar-announcement-01/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"79\";s:16:\"popularity_index\";s:3:\"509\";s:11:\"trend_index\";s:3:\"429\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:477;a:14:{s:2:\"id\";s:4:\"1052\";s:5:\"title\";s:33:\"Landing Page &#8211; Mobile App 1\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2017/03/app.png\";s:12:\"tmpl_created\";s:10:\"1488810873\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/landing-page-mobile-app/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"80\";s:16:\"popularity_index\";s:2:\"25\";s:11:\"trend_index\";s:2:\"52\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:478;a:14:{s:2:\"id\";s:5:\"10234\";s:5:\"title\";s:38:\"Hello Bar | Announcement | Maintenance\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/01/pink_small.png\";s:12:\"tmpl_created\";s:10:\"1548055049\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/popups/hello-bar-announcement/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"80\";s:16:\"popularity_index\";s:3:\"566\";s:11:\"trend_index\";s:3:\"525\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:479;a:14:{s:2:\"id\";s:4:\"1505\";s:5:\"title\";s:33:\"Landing Page &#8211; Mobile App 4\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-app3.png\";s:12:\"tmpl_created\";s:10:\"1494352110\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/landing-page-mobile-app-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"81\";s:16:\"popularity_index\";s:3:\"333\";s:11:\"trend_index\";s:3:\"442\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:480;a:14:{s:2:\"id\";s:3:\"726\";s:5:\"title\";s:33:\"Landing Page &#8211; Conference 1\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2017/01/convention-landing-page.jpg\";s:12:\"tmpl_created\";s:10:\"1485270062\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/landing-page-conference/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"82\";s:16:\"popularity_index\";s:3:\"353\";s:11:\"trend_index\";s:3:\"501\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:481;a:14:{s:2:\"id\";s:4:\"1613\";s:5:\"title\";s:33:\"Landing Page &#8211; Conference 2\";s:9:\"thumbnail\";s:109:\"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-International-Womens-Day-Conference.png\";s:12:\"tmpl_created\";s:10:\"1494352129\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/landing-page-conference-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"83\";s:16:\"popularity_index\";s:3:\"367\";s:11:\"trend_index\";s:3:\"484\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:482;a:14:{s:2:\"id\";s:4:\"9869\";s:5:\"title\";s:28:\"Hello Bar | Promotion | Sale\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2019/01/ru_small.png\";s:12:\"tmpl_created\";s:10:\"1547837269\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/popups/hello-bar-promotion/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"83\";s:16:\"popularity_index\";s:3:\"564\";s:11:\"trend_index\";s:3:\"547\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:483;a:14:{s:2:\"id\";s:5:\"10539\";s:5:\"title\";s:19:\"Hello Bar | Contact\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2019/01/hello_pink_small.png\";s:12:\"tmpl_created\";s:10:\"1548056994\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/popups/hello-bar-register-subscribe-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"84\";s:16:\"popularity_index\";s:3:\"543\";s:11:\"trend_index\";s:3:\"551\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:484;a:14:{s:2:\"id\";s:4:\"1612\";s:5:\"title\";s:33:\"Landing Page &#8211; Conference 3\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-Tech-Conference.png\";s:12:\"tmpl_created\";s:10:\"1494352127\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/landing-page-conference-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"84\";s:16:\"popularity_index\";s:3:\"381\";s:11:\"trend_index\";s:3:\"472\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:485;a:14:{s:2:\"id\";s:4:\"1614\";s:5:\"title\";s:33:\"Landing Page &#8211; Conference 4\";s:9:\"thumbnail\";s:99:\"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-Sustainability-Conference.png\";s:12:\"tmpl_created\";s:10:\"1494352131\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/landing-page-conference-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"85\";s:16:\"popularity_index\";s:3:\"316\";s:11:\"trend_index\";s:3:\"329\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:486;a:14:{s:2:\"id\";s:3:\"906\";s:5:\"title\";s:29:\"Landing Page &#8211;  Coacher\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2017/02/Landin-Page-Coacher.png\";s:12:\"tmpl_created\";s:10:\"1494352066\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/landing-page-coacher/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"86\";s:16:\"popularity_index\";s:3:\"209\";s:11:\"trend_index\";s:3:\"290\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:487;a:14:{s:2:\"id\";s:3:\"879\";s:5:\"title\";s:41:\"Landing Page &#8211; Financial Consultant\";s:9:\"thumbnail\";s:94:\"https://library.elementor.com/wp-content/uploads/2017/02/Landing-Page-Financial-consultant.png\";s:12:\"tmpl_created\";s:10:\"1494352064\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/landing-page-financial-consultant/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"87\";s:16:\"popularity_index\";s:3:\"229\";s:11:\"trend_index\";s:3:\"284\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:488;a:14:{s:2:\"id\";s:3:\"926\";s:5:\"title\";s:33:\"Landing Page &#8211; Private Chef\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2017/02/Landing-Page-Private-Chef.png\";s:12:\"tmpl_created\";s:10:\"1494352068\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/landing-page-private-chef/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"88\";s:16:\"popularity_index\";s:3:\"339\";s:11:\"trend_index\";s:3:\"397\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:489;a:14:{s:2:\"id\";s:4:\"1032\";s:5:\"title\";s:27:\"Landing Page &#8211; Agency\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2017/03/Agency.png\";s:12:\"tmpl_created\";s:10:\"1488810866\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/landing-page-agency/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"89\";s:16:\"popularity_index\";s:3:\"328\";s:11:\"trend_index\";s:3:\"462\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:490;a:14:{s:2:\"id\";s:5:\"10147\";s:5:\"title\";s:34:\"Hello Bar | Sale | Promotion | Pop\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/01/donut_small.png\";s:12:\"tmpl_created\";s:10:\"1548055522\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/popups/hello-bar-sale-promotion/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"89\";s:16:\"popularity_index\";s:3:\"567\";s:11:\"trend_index\";s:3:\"544\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:491;a:14:{s:2:\"id\";s:3:\"730\";s:5:\"title\";s:24:\"Landing Page &#8211; App\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2017/01/app.-landing-page.jpg\";s:12:\"tmpl_created\";s:10:\"1485273430\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/landing-page-app/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"90\";s:16:\"popularity_index\";s:3:\"302\";s:11:\"trend_index\";s:3:\"338\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:492;a:14:{s:2:\"id\";s:4:\"9923\";s:5:\"title\";s:23:\"Slide In | Announcement\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2019/01/slide-in_ann_italian_small.png\";s:12:\"tmpl_created\";s:10:\"1547841537\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/popups/slide-in-announcement/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"90\";s:16:\"popularity_index\";s:3:\"518\";s:11:\"trend_index\";s:3:\"466\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:493;a:14:{s:2:\"id\";s:3:\"643\";s:5:\"title\";s:29:\"Landing Page &#8211; Festival\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2016/12/festival.jpg\";s:12:\"tmpl_created\";s:10:\"1481549290\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/landing-page-festival/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"91\";s:16:\"popularity_index\";s:3:\"350\";s:11:\"trend_index\";s:3:\"428\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:494;a:14:{s:2:\"id\";s:5:\"10117\";s:5:\"title\";s:23:\"Slide In | Announcement\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/01/white_small.png\";s:12:\"tmpl_created\";s:10:\"1548066998\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/popups/slide-in-announcement-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"91\";s:16:\"popularity_index\";s:3:\"544\";s:11:\"trend_index\";s:3:\"529\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:495;a:14:{s:2:\"id\";s:3:\"542\";s:5:\"title\";s:28:\"Landing Page &#8211; Wedding\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/10/0025.png\";s:12:\"tmpl_created\";s:10:\"1477388484\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/landing-page-wedding/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"92\";s:16:\"popularity_index\";s:2:\"61\";s:11:\"trend_index\";s:3:\"189\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:496;a:14:{s:2:\"id\";s:4:\"9826\";s:5:\"title\";s:33:\"Slide In | Announcement | webinar\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/01/web_small-2.png\";s:12:\"tmpl_created\";s:10:\"1547835513\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/popups/slide-in-announcement-webinar/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"92\";s:16:\"popularity_index\";s:3:\"550\";s:11:\"trend_index\";s:3:\"514\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:497;a:14:{s:2:\"id\";s:4:\"1187\";s:5:\"title\";s:32:\"Landing Page &#8211; Photography\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2017/03/lp1-l.png\";s:12:\"tmpl_created\";s:10:\"1490707385\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/landing-page-photography/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"93\";s:16:\"popularity_index\";s:2:\"30\";s:11:\"trend_index\";s:2:\"54\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:498;a:14:{s:2:\"id\";s:5:\"10478\";s:5:\"title\";s:18:\"Slide In | Contact\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2019/01/slide_wow_small.png\";s:12:\"tmpl_created\";s:10:\"1548056829\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/popups/slide-in-contact/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"93\";s:16:\"popularity_index\";s:3:\"478\";s:11:\"trend_index\";s:3:\"508\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:499;a:14:{s:2:\"id\";s:3:\"641\";s:5:\"title\";s:28:\"Landing Page &#8211; Fashion\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2016/12/fashion-landing-page.jpg\";s:12:\"tmpl_created\";s:10:\"1481549264\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/landing-page-fashion/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"94\";s:16:\"popularity_index\";s:3:\"265\";s:11:\"trend_index\";s:3:\"396\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:500;a:14:{s:2:\"id\";s:3:\"189\";s:5:\"title\";s:30:\"Landing Page &#8211; Tourism 1\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/08/0005.png\";s:12:\"tmpl_created\";s:10:\"1470820715\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/landing-page-tourism/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"95\";s:16:\"popularity_index\";s:2:\"14\";s:11:\"trend_index\";s:2:\"14\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:501;a:14:{s:2:\"id\";s:5:\"10685\";s:5:\"title\";s:32:\"Hello Bar | Register | Subscribe\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/01/env_small.png\";s:12:\"tmpl_created\";s:10:\"1547974729\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/popups/hello-bar-register-subscribe-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"96\";s:16:\"popularity_index\";s:3:\"512\";s:11:\"trend_index\";s:3:\"561\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:502;a:14:{s:2:\"id\";s:4:\"1547\";s:5:\"title\";s:30:\"Landing Page &#8211; Tourism 2\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-Truism-1.png\";s:12:\"tmpl_created\";s:10:\"1494352115\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/landing-page-tourism-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"96\";s:16:\"popularity_index\";s:3:\"284\";s:11:\"trend_index\";s:3:\"402\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:503;a:14:{s:2:\"id\";s:4:\"1546\";s:5:\"title\";s:30:\"Landing Page &#8211; Tourism 3\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-Truism-2.png\";s:12:\"tmpl_created\";s:10:\"1494352116\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/landing-page-tourism-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"97\";s:16:\"popularity_index\";s:3:\"375\";s:11:\"trend_index\";s:3:\"516\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:504;a:14:{s:2:\"id\";s:4:\"1545\";s:5:\"title\";s:30:\"Landing Page &#8211; Tourism 4\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-Truism-3.png\";s:12:\"tmpl_created\";s:10:\"1494352118\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/landing-page-tourism-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"98\";s:16:\"popularity_index\";s:3:\"315\";s:11:\"trend_index\";s:3:\"352\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:505;a:14:{s:2:\"id\";s:4:\"9985\";s:5:\"title\";s:20:\"Slide In | Promotion\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2019/01/slidein_promotion_av_small.png\";s:12:\"tmpl_created\";s:10:\"1547844661\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/popups/slide-in-promotion-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"98\";s:16:\"popularity_index\";s:3:\"560\";s:11:\"trend_index\";s:3:\"553\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:506;a:14:{s:2:\"id\";s:4:\"2714\";s:5:\"title\";s:30:\"Landing Page &#8211; Tourism 5\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2017/11/Vacation-–-Landing-Page.png\";s:12:\"tmpl_created\";s:10:\"1509631782\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/landing-page-tourism-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"99\";s:16:\"popularity_index\";s:3:\"313\";s:11:\"trend_index\";s:3:\"398\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:507;a:14:{s:2:\"id\";s:3:\"195\";s:5:\"title\";s:28:\"Landing Page &#8211; Product\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/08/0006.png\";s:12:\"tmpl_created\";s:10:\"1470820765\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/landing-page-product/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"100\";s:16:\"popularity_index\";s:2:\"36\";s:11:\"trend_index\";s:2:\"75\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:508;a:14:{s:2:\"id\";s:3:\"197\";s:5:\"title\";s:34:\"Landing Page &#8211; Real Estate 1\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/08/0007.png\";s:12:\"tmpl_created\";s:10:\"1470825711\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/landing-page-real-estate/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"101\";s:16:\"popularity_index\";s:2:\"85\";s:11:\"trend_index\";s:3:\"167\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:509;a:14:{s:2:\"id\";s:4:\"1193\";s:5:\"title\";s:34:\"Landing Page &#8211; Real Estate 2\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2017/03/lp3-l.png\";s:12:\"tmpl_created\";s:10:\"1490707422\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/landing-page-real-estate-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"102\";s:16:\"popularity_index\";s:2:\"46\";s:11:\"trend_index\";s:2:\"95\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:510;a:14:{s:2:\"id\";s:4:\"1415\";s:5:\"title\";s:34:\"Landing Page &#8211; Real Estate 3\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-Real-Estate-1.png\";s:12:\"tmpl_created\";s:10:\"1494352106\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/landing-page-real-estate-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"103\";s:16:\"popularity_index\";s:3:\"301\";s:11:\"trend_index\";s:3:\"243\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:511;a:14:{s:2:\"id\";s:4:\"1414\";s:5:\"title\";s:34:\"Landing Page &#8211; Real Estate 4\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-Real-Estate-2.png\";s:12:\"tmpl_created\";s:10:\"1494352107\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/landing-page-real-estate-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"104\";s:16:\"popularity_index\";s:3:\"404\";s:11:\"trend_index\";s:3:\"413\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:512;a:14:{s:2:\"id\";s:4:\"1413\";s:5:\"title\";s:34:\"Landing Page &#8211; Real Estate 5\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-Real-Estate-3.png\";s:12:\"tmpl_created\";s:10:\"1494352109\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/landing-page-real-estate-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:134:\"[\"Agent\",\"business\",\"clean\",\"corporate\",\"flat\",\"google maps\",\"homes\",\"listing\",\"modern\",\"real estate\",\"realestate\",\"realtor\",\"realty\"]\";s:10:\"menu_order\";s:3:\"105\";s:16:\"popularity_index\";s:3:\"369\";s:11:\"trend_index\";s:3:\"406\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:513;a:14:{s:2:\"id\";s:4:\"9559\";s:5:\"title\";s:16:\"Slide In | Login\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2019/01/slidein_login_01_small.png\";s:12:\"tmpl_created\";s:10:\"1546946547\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/popups/slide-in-login-01/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"105\";s:16:\"popularity_index\";s:3:\"459\";s:11:\"trend_index\";s:3:\"488\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:514;a:14:{s:2:\"id\";s:4:\"1573\";s:5:\"title\";s:29:\"Landing Page &#8211; Coupon 1\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2017/05/Coupon-02.png\";s:12:\"tmpl_created\";s:10:\"1494352133\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/landing-page-coupon-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"106\";s:16:\"popularity_index\";s:3:\"407\";s:11:\"trend_index\";s:3:\"556\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:515;a:14:{s:2:\"id\";s:4:\"1572\";s:5:\"title\";s:29:\"Landing Page &#8211; Coupon 2\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2017/05/Coupon-03.png\";s:12:\"tmpl_created\";s:10:\"1494352134\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/landing-page-coupon-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"107\";s:16:\"popularity_index\";s:3:\"434\";s:11:\"trend_index\";s:3:\"419\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:516;a:14:{s:2:\"id\";s:4:\"9752\";s:5:\"title\";s:27:\"Slide In | Sale | Promotion\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/01/rush_small.png\";s:12:\"tmpl_created\";s:10:\"1547823982\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/popups/slide-in-sale-promotion/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"107\";s:16:\"popularity_index\";s:3:\"538\";s:11:\"trend_index\";s:3:\"569\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:517;a:14:{s:2:\"id\";s:4:\"1570\";s:5:\"title\";s:29:\"Landing Page &#8211; Coupon 3\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2017/05/Coupon-01.png\";s:12:\"tmpl_created\";s:10:\"1494352136\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/landing-page-coupon-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"108\";s:16:\"popularity_index\";s:3:\"467\";s:11:\"trend_index\";s:3:\"518\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:518;a:14:{s:2:\"id\";s:4:\"1571\";s:5:\"title\";s:29:\"Landing Page &#8211; Coupon 4\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2017/05/Coupon-04.png\";s:12:\"tmpl_created\";s:10:\"1494352138\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/landing-page-coupon-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"109\";s:16:\"popularity_index\";s:3:\"444\";s:11:\"trend_index\";s:3:\"507\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:519;a:14:{s:2:\"id\";s:3:\"192\";s:5:\"title\";s:28:\"Landing Page &#8211; Webinar\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/08/0015.png\";s:12:\"tmpl_created\";s:10:\"1470820734\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/landing-page-webinar/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"110\";s:16:\"popularity_index\";s:2:\"80\";s:11:\"trend_index\";s:3:\"151\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:520;a:14:{s:2:\"id\";s:4:\"2141\";s:5:\"title\";s:32:\"Contact &#8211; Delivery Company\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2017/07/delivery-contact.png\";s:12:\"tmpl_created\";s:10:\"1499774122\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/contact-delivery-company/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"111\";s:16:\"popularity_index\";s:3:\"275\";s:11:\"trend_index\";s:3:\"376\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:521;a:14:{s:2:\"id\";s:3:\"137\";s:5:\"title\";s:22:\"Contact &#8211; Modern\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/08/0013.png\";s:12:\"tmpl_created\";s:10:\"1470829828\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/contact-modern/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"112\";s:16:\"popularity_index\";s:2:\"32\";s:11:\"trend_index\";s:2:\"61\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:522;a:14:{s:2:\"id\";s:3:\"256\";s:5:\"title\";s:26:\"Contact &#8211; Restaurant\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/08/0011.png\";s:12:\"tmpl_created\";s:10:\"1470829796\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/contact-restaurant/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"113\";s:16:\"popularity_index\";s:2:\"89\";s:11:\"trend_index\";s:3:\"156\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:523;a:14:{s:2:\"id\";s:4:\"2150\";s:5:\"title\";s:25:\"Contact &#8211; Cake Shop\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2017/07/cake-contact.png\";s:12:\"tmpl_created\";s:10:\"1499774127\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/contact-cake-shop/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"114\";s:16:\"popularity_index\";s:2:\"53\";s:11:\"trend_index\";s:2:\"91\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:524;a:14:{s:2:\"id\";s:3:\"223\";s:5:\"title\";s:21:\"Contact &#8211; Hotel\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/08/0002.png\";s:12:\"tmpl_created\";s:10:\"1470820471\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/contact-hotel/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"115\";s:16:\"popularity_index\";s:2:\"87\";s:11:\"trend_index\";s:3:\"201\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:525;a:14:{s:2:\"id\";s:4:\"9680\";s:5:\"title\";s:23:\"Slide In | Content Lock\";s:9:\"thumbnail\";s:91:\"https://library.elementor.com/wp-content/uploads/2019/01/Slide-in_Content-lock_small_01.png\";s:12:\"tmpl_created\";s:10:\"1547010967\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/popups/slide-in-content-lock-01/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"115\";s:16:\"popularity_index\";s:3:\"552\";s:11:\"trend_index\";s:3:\"533\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:526;a:14:{s:2:\"id\";s:2:\"24\";s:5:\"title\";s:25:\"Contact &#8211; Corporate\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/08/0012.png\";s:12:\"tmpl_created\";s:10:\"1470248619\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/contact-corporate/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"116\";s:16:\"popularity_index\";s:2:\"11\";s:11:\"trend_index\";s:2:\"16\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:527;a:14:{s:2:\"id\";s:3:\"184\";s:5:\"title\";s:23:\"Services &#8211; Moving\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/08/0017.png\";s:12:\"tmpl_created\";s:10:\"1470829889\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/services-moving/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"117\";s:16:\"popularity_index\";s:2:\"21\";s:11:\"trend_index\";s:2:\"33\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:528;a:14:{s:2:\"id\";s:4:\"9783\";s:5:\"title\";s:31:\"Slide In | Register | Subscribe\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2019/01/slidein_yellow_small.png\";s:12:\"tmpl_created\";s:10:\"1547831059\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/popups/slide-in-register-subscribe/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"117\";s:16:\"popularity_index\";s:3:\"454\";s:11:\"trend_index\";s:3:\"418\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:529;a:14:{s:2:\"id\";s:3:\"625\";s:5:\"title\";s:31:\"Services &#8211; Cake Shop Menu\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2016/12/cake-shop-menu.jpg\";s:12:\"tmpl_created\";s:10:\"1481549196\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/services-cake-shop-menu/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"118\";s:16:\"popularity_index\";s:3:\"429\";s:11:\"trend_index\";s:3:\"557\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:530;a:14:{s:2:\"id\";s:3:\"187\";s:5:\"title\";s:20:\"Services &#8211; Fun\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/08/0001.png\";s:12:\"tmpl_created\";s:10:\"1470829892\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/services-fun/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"119\";s:16:\"popularity_index\";s:2:\"54\";s:11:\"trend_index\";s:3:\"127\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:531;a:14:{s:2:\"id\";s:3:\"238\";s:5:\"title\";s:27:\"Services &#8211; Consulting\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/08/0014.png\";s:12:\"tmpl_created\";s:10:\"1470829865\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/services-consulting/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"120\";s:16:\"popularity_index\";s:2:\"20\";s:11:\"trend_index\";s:2:\"31\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:532;a:14:{s:2:\"id\";s:3:\"647\";s:5:\"title\";s:33:\"Services &#8211; Coffee Shop Menu\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2016/12/restaurant-menu.jpg\";s:12:\"tmpl_created\";s:10:\"1481549320\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/services-coffee-shop-menu/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"121\";s:16:\"popularity_index\";s:3:\"383\";s:11:\"trend_index\";s:3:\"465\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:533;a:14:{s:2:\"id\";s:4:\"2138\";s:5:\"title\";s:33:\"Services &#8211; Delivery Company\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2017/07/delivery-services.png\";s:12:\"tmpl_created\";s:10:\"1499774119\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/services-delivery-company/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"122\";s:16:\"popularity_index\";s:3:\"338\";s:11:\"trend_index\";s:3:\"407\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:534;a:14:{s:2:\"id\";s:3:\"823\";s:5:\"title\";s:19:\"Pricing &#8211; App\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2017/01/pricing-app.jpg\";s:12:\"tmpl_created\";s:10:\"1485272966\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/pricing-app-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"123\";s:16:\"popularity_index\";s:3:\"303\";s:11:\"trend_index\";s:3:\"344\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:535;a:14:{s:2:\"id\";s:3:\"824\";s:5:\"title\";s:24:\"Pricing &#8211; Software\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2017/01/pricing-software.png\";s:12:\"tmpl_created\";s:10:\"1485272900\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/pricing-software-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"124\";s:16:\"popularity_index\";s:3:\"324\";s:11:\"trend_index\";s:3:\"414\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:536;a:14:{s:2:\"id\";s:3:\"825\";s:5:\"title\";s:24:\"Product &#8211; Speakers\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2017/01/product-page.jpg\";s:12:\"tmpl_created\";s:10:\"1485272513\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/product-speakers/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"125\";s:16:\"popularity_index\";s:3:\"344\";s:11:\"trend_index\";s:3:\"342\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:537;a:14:{s:2:\"id\";s:3:\"245\";s:5:\"title\";s:21:\"Product &#8211; Clean\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/08/0020.png\";s:12:\"tmpl_created\";s:10:\"1470829876\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/product-clean/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:48:\"[\"fast\",\"minimal\",\"minimalistic\",\"seo\",\"simple\"]\";s:10:\"menu_order\";s:3:\"126\";s:16:\"popularity_index\";s:2:\"62\";s:11:\"trend_index\";s:3:\"112\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:538;a:14:{s:2:\"id\";s:4:\"1075\";s:5:\"title\";s:19:\"Shop &#8211; Sweets\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2017/03/Sweets.png\";s:12:\"tmpl_created\";s:10:\"1488810871\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:101:\"https://library.elementor.com/shop-sweets/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:154:\"[\"bakery\",\"beverage\",\"business\",\"cafe\",\"candy bar\",\"catering\",\"delivery service\",\"Food\",\"online shop\",\"pastry\",\"Restaurant\",\"store\",\"sweet shop\",\"sweets\"]\";s:10:\"menu_order\";s:3:\"127\";s:16:\"popularity_index\";s:2:\"43\";s:11:\"trend_index\";s:2:\"99\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:539;a:14:{s:2:\"id\";s:4:\"1051\";s:5:\"title\";s:24:\"Blog Post &#8211; Launch\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2017/03/post-cloud.png\";s:12:\"tmpl_created\";s:10:\"1488810869\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blog-post-launch/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:210:\"[\"Agency\",\"bootstrap\",\"business\",\"corporate\",\"Landing Page\",\"launch\",\"marketing campaign\",\"marketing landing page\",\"marketing template landing page\",\"product launch\",\"software\",\"Startup\",\"startup landing page\"]\";s:10:\"menu_order\";s:3:\"128\";s:16:\"popularity_index\";s:2:\"17\";s:11:\"trend_index\";s:2:\"17\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:540;a:14:{s:2:\"id\";s:4:\"1245\";s:5:\"title\";s:13:\"Coming Soon 1\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2017/03/Coming-Soon-1.png\";s:12:\"tmpl_created\";s:10:\"1491207184\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/coming-soon-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"129\";s:16:\"popularity_index\";s:3:\"240\";s:11:\"trend_index\";s:3:\"281\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:541;a:14:{s:2:\"id\";s:4:\"1247\";s:5:\"title\";s:13:\"Coming Soon 2\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2017/03/Coming-Soon-2.png\";s:12:\"tmpl_created\";s:10:\"1491207138\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/coming-soon-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"130\";s:16:\"popularity_index\";s:2:\"27\";s:11:\"trend_index\";s:2:\"43\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:542;a:14:{s:2:\"id\";s:4:\"1248\";s:5:\"title\";s:13:\"Coming Soon 3\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2017/03/Coming-Soon-3.png\";s:12:\"tmpl_created\";s:10:\"1491207050\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/coming-soon-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"131\";s:16:\"popularity_index\";s:3:\"346\";s:11:\"trend_index\";s:3:\"379\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:543;a:14:{s:2:\"id\";s:4:\"1249\";s:5:\"title\";s:13:\"Coming Soon 4\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2017/03/Coming-Soon-4.png\";s:12:\"tmpl_created\";s:10:\"1491207380\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/coming-soon-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"132\";s:16:\"popularity_index\";s:3:\"373\";s:11:\"trend_index\";s:3:\"360\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:544;a:14:{s:2:\"id\";s:4:\"1250\";s:5:\"title\";s:13:\"Coming Soon 5\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2017/03/Coming-Soon-5.png\";s:12:\"tmpl_created\";s:10:\"1491207450\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/coming-soon-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"133\";s:16:\"popularity_index\";s:2:\"58\";s:11:\"trend_index\";s:3:\"130\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:545;a:14:{s:2:\"id\";s:4:\"1260\";s:5:\"title\";s:13:\"Coming Soon 6\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2017/03/Coming-Soon-6.png\";s:12:\"tmpl_created\";s:10:\"1491207507\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/coming-soon-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"134\";s:16:\"popularity_index\";s:3:\"379\";s:11:\"trend_index\";s:3:\"358\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:546;a:14:{s:2:\"id\";s:4:\"1261\";s:5:\"title\";s:13:\"Coming Soon 7\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2017/04/Coming-Soon-7.png\";s:12:\"tmpl_created\";s:10:\"1491207584\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/coming-soon-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"135\";s:16:\"popularity_index\";s:2:\"57\";s:11:\"trend_index\";s:2:\"71\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:547;a:14:{s:2:\"id\";s:4:\"1272\";s:5:\"title\";s:13:\"Coming Soon 8\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2017/03/Coming-Soon-8.png\";s:12:\"tmpl_created\";s:10:\"1491207674\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/coming-soon-8/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"136\";s:16:\"popularity_index\";s:3:\"255\";s:11:\"trend_index\";s:3:\"282\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:548;a:14:{s:2:\"id\";s:4:\"1279\";s:5:\"title\";s:13:\"Coming Soon 9\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2017/03/Coming-Soon-9.png\";s:12:\"tmpl_created\";s:10:\"1491207756\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/coming-soon-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"137\";s:16:\"popularity_index\";s:3:\"112\";s:11:\"trend_index\";s:3:\"204\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:549;a:14:{s:2:\"id\";s:4:\"1745\";s:5:\"title\";s:14:\"Coming Soon 10\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2017/05/login-002.png\";s:12:\"tmpl_created\";s:10:\"1494849745\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/coming-soon-10/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"138\";s:16:\"popularity_index\";s:3:\"251\";s:11:\"trend_index\";s:3:\"274\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:550;a:14:{s:2:\"id\";s:4:\"1742\";s:5:\"title\";s:12:\"Login Page 1\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2017/05/login-003.png\";s:12:\"tmpl_created\";s:10:\"1494849744\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:100:\"https://library.elementor.com/login-page/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"139\";s:16:\"popularity_index\";s:3:\"366\";s:11:\"trend_index\";s:3:\"487\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:551;a:14:{s:2:\"id\";s:4:\"1748\";s:5:\"title\";s:12:\"Login Page 2\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2017/05/login-001.png\";s:12:\"tmpl_created\";s:10:\"1494849742\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/login-page-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"140\";s:16:\"popularity_index\";s:3:\"267\";s:11:\"trend_index\";s:3:\"404\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:552;a:14:{s:2:\"id\";s:4:\"3963\";s:5:\"title\";s:32:\"Restaurant Site &#8211; Homepage\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/01/R.HomepageThumb.png\";s:12:\"tmpl_created\";s:10:\"1516284821\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/restaurant-site-homepage/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:109:\"[\"bar\",\"cafe\",\"cooking\",\"drink\",\"events\",\"fast food\",\"Food\",\"menu\",\"modern\",\"reservation\",\"Shop\",\"snack bar\"]\";s:10:\"menu_order\";s:3:\"141\";s:16:\"popularity_index\";s:3:\"225\";s:11:\"trend_index\";s:3:\"268\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:553;a:14:{s:2:\"id\";s:4:\"3969\";s:5:\"title\";s:28:\"Restaurant Site &#8211; Menu\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/01/R.MenuThumb.png\";s:12:\"tmpl_created\";s:10:\"1516284829\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/restaurant-site-menu/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:109:\"[\"bar\",\"cafe\",\"cooking\",\"drink\",\"events\",\"fast food\",\"Food\",\"menu\",\"modern\",\"reservation\",\"Shop\",\"snack bar\"]\";s:10:\"menu_order\";s:3:\"142\";s:16:\"popularity_index\";s:3:\"361\";s:11:\"trend_index\";s:3:\"382\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:554;a:14:{s:2:\"id\";s:4:\"3966\";s:5:\"title\";s:29:\"Restaurant Site &#8211; About\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/01/R.AboutThumb.png.png\";s:12:\"tmpl_created\";s:10:\"1516284839\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/restaurant-site-about/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:109:\"[\"bar\",\"cafe\",\"cooking\",\"drink\",\"events\",\"fast food\",\"Food\",\"menu\",\"modern\",\"reservation\",\"Shop\",\"snack bar\"]\";s:10:\"menu_order\";s:3:\"143\";s:16:\"popularity_index\";s:3:\"230\";s:11:\"trend_index\";s:3:\"323\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:555;a:14:{s:2:\"id\";s:4:\"3972\";s:5:\"title\";s:31:\"Restaurant Site &#8211; Contact\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2018/01/R.ContactThumb.png\";s:12:\"tmpl_created\";s:10:\"1516284847\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/restaurant-site-contact/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:109:\"[\"bar\",\"cafe\",\"cooking\",\"drink\",\"events\",\"fast food\",\"Food\",\"menu\",\"modern\",\"reservation\",\"Shop\",\"snack bar\"]\";s:10:\"menu_order\";s:3:\"144\";s:16:\"popularity_index\";s:3:\"322\";s:11:\"trend_index\";s:3:\"392\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:556;a:14:{s:2:\"id\";s:4:\"2080\";s:5:\"title\";s:27:\"Ski Resort &#8211; Homepage\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2017/10/Ski-Resort-Home-Page.png\";s:12:\"tmpl_created\";s:10:\"1508161124\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/ski-resort-homepage/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"145\";s:16:\"popularity_index\";s:3:\"291\";s:11:\"trend_index\";s:3:\"416\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:557;a:14:{s:2:\"id\";s:4:\"2088\";s:5:\"title\";s:24:\"Ski Resort &#8211; About\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2017/10/Ski-Resort-About.png\";s:12:\"tmpl_created\";s:10:\"1508161129\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/ski-resort-about/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"146\";s:16:\"popularity_index\";s:3:\"362\";s:11:\"trend_index\";s:3:\"430\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:558;a:14:{s:2:\"id\";s:4:\"2085\";s:5:\"title\";s:27:\"Ski Resort &#8211; Services\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2017/10/Ski-Resort-Services.png\";s:12:\"tmpl_created\";s:10:\"1508161134\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/ski-resort-services/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"147\";s:16:\"popularity_index\";s:3:\"427\";s:11:\"trend_index\";s:3:\"503\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:559;a:14:{s:2:\"id\";s:4:\"2462\";s:5:\"title\";s:23:\"Architect &#8211; About\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2017/10/architect-–-about.png\";s:12:\"tmpl_created\";s:10:\"1508243317\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/architect-about/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"148\";s:16:\"popularity_index\";s:3:\"286\";s:11:\"trend_index\";s:3:\"400\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:560;a:14:{s:2:\"id\";s:4:\"2362\";s:5:\"title\";s:26:\"Architect &#8211; Projects\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2017/10/Architect-Projects.png\";s:12:\"tmpl_created\";s:10:\"1508243335\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/architect-projects/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"149\";s:16:\"popularity_index\";s:3:\"354\";s:11:\"trend_index\";s:3:\"399\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:561;a:14:{s:2:\"id\";s:3:\"614\";s:5:\"title\";s:25:\"Architect &#8211; Contact\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2016/12/architect-contact.jpg\";s:12:\"tmpl_created\";s:10:\"1481549169\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/architect-contact/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"150\";s:16:\"popularity_index\";s:3:\"249\";s:11:\"trend_index\";s:3:\"350\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:562;a:14:{s:2:\"id\";s:4:\"2126\";s:5:\"title\";s:37:\"Construction Company &#8211; Homepage\";s:9:\"thumbnail\";s:91:\"https://library.elementor.com/wp-content/uploads/2017/10/Construction-Company-Home-Page.png\";s:12:\"tmpl_created\";s:10:\"1508325849\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/construction-company-homepage/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"151\";s:16:\"popularity_index\";s:3:\"261\";s:11:\"trend_index\";s:3:\"255\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:563;a:14:{s:2:\"id\";s:4:\"2129\";s:5:\"title\";s:34:\"Construction Company &#8211; About\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2017/10/Construction-Company-About.png\";s:12:\"tmpl_created\";s:10:\"1508325881\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/construction-company-about/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"152\";s:16:\"popularity_index\";s:3:\"278\";s:11:\"trend_index\";s:3:\"374\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:564;a:14:{s:2:\"id\";s:4:\"2135\";s:5:\"title\";s:36:\"Construction Company &#8211; Contact\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2017/10/Construction-Company-Contact.png\";s:12:\"tmpl_created\";s:10:\"1508325922\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/construction-company-contact/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"153\";s:16:\"popularity_index\";s:3:\"300\";s:11:\"trend_index\";s:3:\"346\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:565;a:14:{s:2:\"id\";s:4:\"2094\";s:5:\"title\";s:28:\"Plants Shop &#8211; Homepage\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2017/11/Plants-Shop-Home.png\";s:12:\"tmpl_created\";s:10:\"1509621053\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/plants-shop-homepage/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"154\";s:16:\"popularity_index\";s:3:\"262\";s:11:\"trend_index\";s:3:\"299\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:566;a:14:{s:2:\"id\";s:4:\"2120\";s:5:\"title\";s:25:\"Plants Shop &#8211; About\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2017/11/Plants-Shop-About.png\";s:12:\"tmpl_created\";s:10:\"1509631820\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/plants-shop-about/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"155\";s:16:\"popularity_index\";s:3:\"308\";s:11:\"trend_index\";s:3:\"353\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:567;a:14:{s:2:\"id\";s:4:\"3153\";s:5:\"title\";s:14:\"Halloween Pack\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2017/10/halloween.png\";s:12:\"tmpl_created\";s:10:\"1508950132\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/halloween-pack/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"156\";s:16:\"popularity_index\";s:3:\"479\";s:11:\"trend_index\";s:3:\"523\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:568;a:14:{s:2:\"id\";s:4:\"3338\";s:5:\"title\";s:31:\"Black Friday &#8211; Nature Set\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2017/11/black-friday-1.png\";s:12:\"tmpl_created\";s:10:\"1511203351\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/black-friday-nature-set/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"157\";s:16:\"popularity_index\";s:3:\"418\";s:11:\"trend_index\";s:3:\"504\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:569;a:14:{s:2:\"id\";s:4:\"3339\";s:5:\"title\";s:35:\"Black Friday &#8211; Pop-Styled Set\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2017/11/black-friday-2.png\";s:12:\"tmpl_created\";s:10:\"1511203636\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/black-friday-pop-styled-set/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"158\";s:16:\"popularity_index\";s:3:\"396\";s:11:\"trend_index\";s:3:\"373\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:570;a:14:{s:2:\"id\";s:4:\"3335\";s:5:\"title\";s:31:\"Black Friday &#8211; Retail Set\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2017/11/black-friday-4.png\";s:12:\"tmpl_created\";s:10:\"1511203246\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/black-friday-retail-set/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"159\";s:16:\"popularity_index\";s:3:\"393\";s:11:\"trend_index\";s:3:\"479\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:571;a:14:{s:2:\"id\";s:4:\"3340\";s:5:\"title\";s:41:\"Black Friday &#8211; Software Product Set\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2017/11/black-friday-3.png\";s:12:\"tmpl_created\";s:10:\"1511203713\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/black-friday-software-product-set/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"160\";s:16:\"popularity_index\";s:3:\"385\";s:11:\"trend_index\";s:3:\"476\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:572;a:14:{s:2:\"id\";s:4:\"3517\";s:5:\"title\";s:27:\"Christmas &#8211; Gift Shop\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2017/12/XmasThumb.png\";s:12:\"tmpl_created\";s:10:\"1513877937\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/christmas-gift-shop/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"161\";s:16:\"popularity_index\";s:3:\"438\";s:11:\"trend_index\";s:3:\"500\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:573;a:14:{s:2:\"id\";s:4:\"3734\";s:5:\"title\";s:28:\"Christmas &#8211; Car Agency\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2017/12/cover-lib-v3.png\";s:12:\"tmpl_created\";s:10:\"1514197794\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/christmas-car-agency/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"162\";s:16:\"popularity_index\";s:3:\"415\";s:11:\"trend_index\";s:3:\"368\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:574;a:14:{s:2:\"id\";s:4:\"3764\";s:5:\"title\";s:33:\"Christmas &#8211; Interior Design\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2017/12/cover-lib-v6.png\";s:12:\"tmpl_created\";s:10:\"1514198234\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/christmas-interior-design/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"163\";s:16:\"popularity_index\";s:3:\"405\";s:11:\"trend_index\";s:3:\"453\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:575;a:14:{s:2:\"id\";s:4:\"3565\";s:5:\"title\";s:27:\"Christmas &#8211; Tree Shop\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2017/12/XmasTreeThumb.png\";s:12:\"tmpl_created\";s:10:\"1514204382\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/christmas-tree-shop/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"164\";s:16:\"popularity_index\";s:3:\"378\";s:11:\"trend_index\";s:3:\"437\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:576;a:14:{s:2:\"id\";s:4:\"3862\";s:5:\"title\";s:35:\"Christmas &#8211; Design Conference\";s:9:\"thumbnail\";s:63:\"https://library.elementor.com/wp-content/uploads/2017/12/q1.png\";s:12:\"tmpl_created\";s:10:\"1514206745\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/christmas-design-conference/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"165\";s:16:\"popularity_index\";s:3:\"349\";s:11:\"trend_index\";s:3:\"459\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:577;a:14:{s:2:\"id\";s:4:\"3777\";s:5:\"title\";s:39:\"Christmas &#8211; Snowboard Competition\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2017/12/cover-lib-v7.png\";s:12:\"tmpl_created\";s:10:\"1514205420\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/christmas-snowboard-competition/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"166\";s:16:\"popularity_index\";s:3:\"372\";s:11:\"trend_index\";s:3:\"458\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:578;a:14:{s:2:\"id\";s:3:\"420\";s:5:\"title\";s:11:\"Hero UI Kit\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2016/09/library-ui-kit-cover.png\";s:12:\"tmpl_created\";s:10:\"1475067229\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:101:\"https://library.elementor.com/hero-ui-kit/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"167\";s:16:\"popularity_index\";s:2:\"18\";s:11:\"trend_index\";s:2:\"28\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}}}','no'),(540,'elementor_default_generic_fonts','Sans-serif','yes'),(541,'elementor_container_width','960','yes'),(542,'_elementor_general_settings','a:3:{s:21:\"default_generic_fonts\";s:10:\"Sans-serif\";s:15:\"container_width\";s:3:\"960\";s:21:\"global_image_lightbox\";s:3:\"yes\";}','yes'),(544,'elementor_typekit-kit-id','khg0joi','yes'),(545,'elementor_log','a:4:{s:32:\"e3859f389eb00ff9399c5b4def6e844f\";O:31:\"Elementor\\Core\\Logger\\Items\\PHP\":9:{s:7:\"\0*\0file\";s:120:\"/home/ondisp5/public_html/wp/wp-content/plugins/elementor-pro/modules/assets-manager/asset-types/fonts/typekit-fonts.php\";s:7:\"\0*\0line\";i:235;s:7:\"\0*\0date\";s:19:\"2019-09-13 23:32:33\";s:7:\"\0*\0type\";s:7:\"warning\";s:10:\"\0*\0message\";s:74:\"count(): Parameter must be an array or an object that implements Countable\";s:7:\"\0*\0meta\";a:1:{s:5:\"trace\";a:1:{i:0;a:3:{s:8:\"function\";s:8:\"shutdown\";s:5:\"class\";s:29:\"Elementor\\Core\\Logger\\Manager\";s:4:\"type\";s:2:\"->\";}}}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2019-09-13 23:32:33\";}s:7:\"\0*\0args\";a:5:{s:4:\"type\";s:7:\"warning\";s:7:\"message\";s:74:\"count(): Parameter must be an array or an object that implements Countable\";s:4:\"file\";s:120:\"/home/ondisp5/public_html/wp/wp-content/plugins/elementor-pro/modules/assets-manager/asset-types/fonts/typekit-fonts.php\";s:4:\"line\";i:235;s:5:\"trace\";b:1;}}s:32:\"2c3553e2b504ffeabcaaa143b3e10efe\";O:30:\"Elementor\\Core\\Logger\\Items\\JS\":10:{s:9:\"\0*\0column\";s:5:\"41783\";s:7:\"\0*\0file\";s:95:\"http://23.235.208.11/~ondisp5/wp/wp-content/plugins/elementor/assets/js/editor.min.js?ver=2.6.8\";s:7:\"\0*\0line\";s:1:\"7\";s:7:\"\0*\0date\";s:19:\"2019-09-14 00:48:35\";s:7:\"\0*\0type\";s:5:\"error\";s:10:\"\0*\0message\";s:47:\"setting getter-only property \\&quot;type\\&quot;\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:3;s:14:\"\0*\0times_dates\";a:3:{i:0;s:19:\"2019-09-14 00:48:35\";i:1;s:19:\"2019-09-21 21:33:13\";i:2;s:19:\"2019-09-24 15:35:47\";}s:7:\"\0*\0args\";a:6:{s:4:\"type\";s:5:\"error\";s:9:\"timestamp\";s:10:\"1568422115\";s:7:\"message\";s:37:\"setting getter-only property \\\"type\\\"\";s:3:\"url\";s:95:\"http://23.235.208.11/~ondisp5/wp/wp-content/plugins/elementor/assets/js/editor.min.js?ver=2.6.8\";s:4:\"line\";s:1:\"7\";s:6:\"column\";s:5:\"41783\";}}s:32:\"02c7ca72e97fb82a515fb4a975bda1da\";O:30:\"Elementor\\Core\\Logger\\Items\\JS\":10:{s:9:\"\0*\0column\";s:5:\"30067\";s:7:\"\0*\0file\";s:95:\"http://23.235.208.11/~ondisp5/wp/wp-content/plugins/elementor/assets/js/editor.min.js?ver=2.6.8\";s:7:\"\0*\0line\";s:2:\"32\";s:7:\"\0*\0date\";s:19:\"2019-09-14 01:13:35\";s:7:\"\0*\0type\";s:5:\"error\";s:10:\"\0*\0message\";s:14:\"n is undefined\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:2;s:14:\"\0*\0times_dates\";a:2:{i:0;s:19:\"2019-09-14 01:13:35\";i:1;s:19:\"2019-09-21 21:55:54\";}s:7:\"\0*\0args\";a:6:{s:4:\"type\";s:5:\"error\";s:9:\"timestamp\";s:10:\"1568423615\";s:7:\"message\";s:14:\"n is undefined\";s:3:\"url\";s:95:\"http://23.235.208.11/~ondisp5/wp/wp-content/plugins/elementor/assets/js/editor.min.js?ver=2.6.8\";s:4:\"line\";s:2:\"32\";s:6:\"column\";s:5:\"30067\";}}s:32:\"8e208e964673626d4b1b8a5c6e03660c\";O:30:\"Elementor\\Core\\Logger\\Items\\JS\":10:{s:9:\"\0*\0column\";s:5:\"60807\";s:7:\"\0*\0file\";s:122:\"http://23.235.208.11/~ondisp5/wp/wp-content/plugins/elementor/assets/lib/e-select2/js/e-select2.full.min.js?ver=4.0.6-rc.1\";s:7:\"\0*\0line\";s:1:\"1\";s:7:\"\0*\0date\";s:19:\"2019-09-16 19:57:55\";s:7:\"\0*\0type\";s:5:\"error\";s:10:\"\0*\0message\";s:24:\"this.dataAdapter is null\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2019-09-16 19:57:55\";}s:7:\"\0*\0args\";a:6:{s:4:\"type\";s:5:\"error\";s:9:\"timestamp\";s:10:\"1568663875\";s:7:\"message\";s:24:\"this.dataAdapter is null\";s:3:\"url\";s:122:\"http://23.235.208.11/~ondisp5/wp/wp-content/plugins/elementor/assets/lib/e-select2/js/e-select2.full.min.js?ver=4.0.6-rc.1\";s:4:\"line\";s:1:\"1\";s:6:\"column\";s:5:\"60807\";}}}','no'),(550,'elementor_typekit-data','a:2:{s:9:\"omnes-pro\";s:7:\"typekit\";s:12:\"proxima-nova\";s:7:\"typekit\";}','yes'),(551,'_elementor_settings_update_time','1568597351','yes'),(552,'elementor_cpt_support','a:2:{i:0;s:4:\"post\";i:1;s:4:\"page\";}','yes'),(553,'elementor_disable_color_schemes','yes','yes'),(554,'elementor_disable_typography_schemes','','yes'),(555,'elementor_allow_tracking','no','yes'),(596,'_elementor_global_css','a:5:{s:4:\"time\";i:1568602619;s:5:\"fonts\";a:3:{i:0;s:12:\"proxima-nova\";i:1;s:9:\"omnes-pro\";i:3;s:6:\"Roboto\";}s:5:\"icons\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;b:0;}','yes'),(556,'elementor_space_between_widgets','','yes'),(1223,'_site_transient_update_plugins','O:8:\"stdClass\":5:{s:12:\"last_checked\";i:1569415262;s:7:\"checked\";a:12:{s:19:\"akismet/akismet.php\";s:5:\"4.1.2\";s:35:\"boldgrid-backup/boldgrid-backup.php\";s:6:\"1.11.2\";s:51:\"boldgrid-backup-premium/boldgrid-backup-premium.php\";s:5:\"1.1.0\";s:75:\"columns-alignment-fix-for-elementor/columns-alignment-fix-for-elementor.php\";s:5:\"1.2.0\";s:45:\"custom-typekit-fonts/custom-typekit-fonts.php\";s:6:\"1.0.13\";s:43:\"display-php-version/display-php-version.php\";s:3:\"1.5\";s:32:\"duplicate-page/duplicatepage.php\";s:3:\"4.0\";s:23:\"elementor/elementor.php\";s:5:\"2.6.8\";s:31:\"elementor-pro/elementor-pro.php\";s:5:\"2.6.5\";s:9:\"hello.php\";s:5:\"1.7.2\";s:61:\"premium-addons-for-elementor/premium-addons-for-elementor.php\";s:5:\"3.6.9\";s:23:\"wordfence/wordfence.php\";s:5:\"7.4.0\";}s:8:\"response\";a:3:{s:23:\"elementor/elementor.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:23:\"w.org/plugins/elementor\";s:4:\"slug\";s:9:\"elementor\";s:6:\"plugin\";s:23:\"elementor/elementor.php\";s:11:\"new_version\";s:5:\"2.7.3\";s:3:\"url\";s:40:\"https://wordpress.org/plugins/elementor/\";s:7:\"package\";s:58:\"https://downloads.wordpress.org/plugin/elementor.2.7.3.zip\";s:5:\"icons\";a:3:{s:2:\"2x\";s:62:\"https://ps.w.org/elementor/assets/icon-256x256.png?rev=1427768\";s:2:\"1x\";s:54:\"https://ps.w.org/elementor/assets/icon.svg?rev=1426809\";s:3:\"svg\";s:54:\"https://ps.w.org/elementor/assets/icon.svg?rev=1426809\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:65:\"https://ps.w.org/elementor/assets/banner-1544x500.png?rev=1475479\";s:2:\"1x\";s:64:\"https://ps.w.org/elementor/assets/banner-772x250.png?rev=1475479\";}s:11:\"banners_rtl\";a:0:{}s:6:\"tested\";s:5:\"5.2.3\";s:12:\"requires_php\";s:3:\"5.4\";s:13:\"compatibility\";O:8:\"stdClass\":0:{}}s:61:\"premium-addons-for-elementor/premium-addons-for-elementor.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:42:\"w.org/plugins/premium-addons-for-elementor\";s:4:\"slug\";s:28:\"premium-addons-for-elementor\";s:6:\"plugin\";s:61:\"premium-addons-for-elementor/premium-addons-for-elementor.php\";s:11:\"new_version\";s:5:\"3.7.5\";s:3:\"url\";s:59:\"https://wordpress.org/plugins/premium-addons-for-elementor/\";s:7:\"package\";s:71:\"https://downloads.wordpress.org/plugin/premium-addons-for-elementor.zip\";s:5:\"icons\";a:3:{s:2:\"2x\";s:81:\"https://ps.w.org/premium-addons-for-elementor/assets/icon-256x256.png?rev=1799730\";s:2:\"1x\";s:73:\"https://ps.w.org/premium-addons-for-elementor/assets/icon.svg?rev=1799730\";s:3:\"svg\";s:73:\"https://ps.w.org/premium-addons-for-elementor/assets/icon.svg?rev=1799730\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:84:\"https://ps.w.org/premium-addons-for-elementor/assets/banner-1544x500.jpg?rev=1876380\";s:2:\"1x\";s:83:\"https://ps.w.org/premium-addons-for-elementor/assets/banner-772x250.jpg?rev=1876380\";}s:11:\"banners_rtl\";a:0:{}s:6:\"tested\";s:5:\"5.2.3\";s:12:\"requires_php\";s:3:\"5.4\";s:13:\"compatibility\";O:8:\"stdClass\":0:{}}s:31:\"elementor-pro/elementor-pro.php\";O:8:\"stdClass\":14:{s:14:\"stable_version\";s:5:\"2.7.0\";s:12:\"last_updated\";s:19:\"2019-09-25 09:30:20\";s:11:\"new_version\";s:5:\"2.7.0\";s:4:\"name\";s:13:\"Elementor Pro\";s:4:\"slug\";s:13:\"elementor-pro\";s:3:\"url\";s:36:\"https://elementor.com/pro/changelog/\";s:8:\"homepage\";s:26:\"https://elementor.com/pro/\";s:8:\"requires\";s:3:\"4.7\";s:6:\"tested\";s:5:\"5.2.3\";s:7:\"package\";s:200:\"http://my.elementor.com/edd-sl/package_download/MTU2OTUwMTY2Mjo3ZmQ2MjNkZTEzMWQyOTcxZmNmZjczN2YyMDgzYzE4YzoxOmY3NDI5Y2U5ZTdmOWNiMTIyYWYyZjIwYWU1N2MwODFkOmh0dHBALy8yMy4yMzUuMjA4LjExL35vbmRpc3A1L3dwOjA=\";s:13:\"download_link\";s:200:\"http://my.elementor.com/edd-sl/package_download/MTU2OTUwMTY2Mjo3ZmQ2MjNkZTEzMWQyOTcxZmNmZjczN2YyMDgzYzE4YzoxOmY3NDI5Y2U5ZTdmOWNiMTIyYWYyZjIwYWU1N2MwODFkOmh0dHBALy8yMy4yMzUuMjA4LjExL35vbmRpc3A1L3dwOjA=\";s:7:\"banners\";a:2:{s:2:\"2x\";s:65:\"https://ps.w.org/elementor/assets/banner-1544x500.png?rev=1475479\";s:2:\"1x\";s:64:\"https://ps.w.org/elementor/assets/banner-772x250.png?rev=1475479\";}s:5:\"icons\";a:1:{s:3:\"svg\";s:42:\"https://ps.w.org/elementor/assets/icon.svg\";}s:17:\"canary_deployment\";a:2:{s:11:\"plugin_info\";a:11:{s:11:\"new_version\";s:5:\"2.7.0\";s:4:\"name\";s:13:\"Elementor Pro\";s:4:\"slug\";s:13:\"elementor-pro\";s:3:\"url\";s:36:\"https://elementor.com/pro/changelog/\";s:8:\"homepage\";s:26:\"https://elementor.com/pro/\";s:8:\"requires\";s:3:\"4.7\";s:6:\"tested\";s:5:\"5.2.3\";s:7:\"package\";s:200:\"http://my.elementor.com/edd-sl/package_download/MTU2OTUwMTY2Mjo3ZmQ2MjNkZTEzMWQyOTcxZmNmZjczN2YyMDgzYzE4YzoxOmY3NDI5Y2U5ZTdmOWNiMTIyYWYyZjIwYWU1N2MwODFkOmh0dHBALy8yMy4yMzUuMjA4LjExL35vbmRpc3A1L3dwOjA=\";s:13:\"download_link\";s:200:\"http://my.elementor.com/edd-sl/package_download/MTU2OTUwMTY2Mjo3ZmQ2MjNkZTEzMWQyOTcxZmNmZjczN2YyMDgzYzE4YzoxOmY3NDI5Y2U5ZTdmOWNiMTIyYWYyZjIwYWU1N2MwODFkOmh0dHBALy8yMy4yMzUuMjA4LjExL35vbmRpc3A1L3dwOjA=\";s:7:\"banners\";a:2:{s:2:\"2x\";s:65:\"https://ps.w.org/elementor/assets/banner-1544x500.png?rev=1475479\";s:2:\"1x\";s:64:\"https://ps.w.org/elementor/assets/banner-772x250.png?rev=1475479\";}s:5:\"icons\";a:1:{s:3:\"svg\";s:42:\"https://ps.w.org/elementor/assets/icon.svg\";}}s:10:\"conditions\";a:1:{i:0;a:1:{i:0;a:3:{s:4:\"type\";s:8:\"language\";s:9:\"languages\";a:6:{i:0;s:5:\"he_IL\";i:1;s:5:\"en_GB\";i:2;s:5:\"en_NZ\";i:3;s:5:\"en_ZA\";i:4;s:5:\"en_AU\";i:5;s:5:\"en_CA\";}s:8:\"operator\";s:2:\"in\";}}}}}}s:12:\"translations\";a:0:{}s:9:\"no_update\";a:8:{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.2\";s:3:\"url\";s:38:\"https://wordpress.org/plugins/akismet/\";s:7:\"package\";s:56:\"https://downloads.wordpress.org/plugin/akismet.4.1.2.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:35:\"boldgrid-backup/boldgrid-backup.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:29:\"w.org/plugins/boldgrid-backup\";s:4:\"slug\";s:15:\"boldgrid-backup\";s:6:\"plugin\";s:35:\"boldgrid-backup/boldgrid-backup.php\";s:11:\"new_version\";s:6:\"1.11.2\";s:3:\"url\";s:46:\"https://wordpress.org/plugins/boldgrid-backup/\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/plugin/boldgrid-backup.1.11.2.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:68:\"https://ps.w.org/boldgrid-backup/assets/icon-256x256.png?rev=1880952\";s:2:\"1x\";s:68:\"https://ps.w.org/boldgrid-backup/assets/icon-128x128.png?rev=1880952\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:71:\"https://ps.w.org/boldgrid-backup/assets/banner-1544x500.png?rev=1880952\";s:2:\"1x\";s:70:\"https://ps.w.org/boldgrid-backup/assets/banner-772x250.png?rev=1880952\";}s:11:\"banners_rtl\";a:0:{}}s:75:\"columns-alignment-fix-for-elementor/columns-alignment-fix-for-elementor.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:49:\"w.org/plugins/columns-alignment-fix-for-elementor\";s:4:\"slug\";s:35:\"columns-alignment-fix-for-elementor\";s:6:\"plugin\";s:75:\"columns-alignment-fix-for-elementor/columns-alignment-fix-for-elementor.php\";s:11:\"new_version\";s:5:\"1.2.0\";s:3:\"url\";s:66:\"https://wordpress.org/plugins/columns-alignment-fix-for-elementor/\";s:7:\"package\";s:84:\"https://downloads.wordpress.org/plugin/columns-alignment-fix-for-elementor.1.2.0.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:88:\"https://ps.w.org/columns-alignment-fix-for-elementor/assets/icon-256x256.png?rev=1902471\";s:2:\"1x\";s:88:\"https://ps.w.org/columns-alignment-fix-for-elementor/assets/icon-128x128.png?rev=1902471\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:91:\"https://ps.w.org/columns-alignment-fix-for-elementor/assets/banner-1544x500.png?rev=1902471\";s:2:\"1x\";s:90:\"https://ps.w.org/columns-alignment-fix-for-elementor/assets/banner-772x250.png?rev=1902471\";}s:11:\"banners_rtl\";a:0:{}}s:45:\"custom-typekit-fonts/custom-typekit-fonts.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:34:\"w.org/plugins/custom-typekit-fonts\";s:4:\"slug\";s:20:\"custom-typekit-fonts\";s:6:\"plugin\";s:45:\"custom-typekit-fonts/custom-typekit-fonts.php\";s:11:\"new_version\";s:6:\"1.0.13\";s:3:\"url\";s:51:\"https://wordpress.org/plugins/custom-typekit-fonts/\";s:7:\"package\";s:70:\"https://downloads.wordpress.org/plugin/custom-typekit-fonts.1.0.13.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:73:\"https://ps.w.org/custom-typekit-fonts/assets/icon-256x256.png?rev=1816366\";s:2:\"1x\";s:73:\"https://ps.w.org/custom-typekit-fonts/assets/icon-128x128.png?rev=1816366\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:76:\"https://ps.w.org/custom-typekit-fonts/assets/banner-1544x500.png?rev=1816366\";s:2:\"1x\";s:75:\"https://ps.w.org/custom-typekit-fonts/assets/banner-772x250.png?rev=1816366\";}s:11:\"banners_rtl\";a:0:{}}s:43:\"display-php-version/display-php-version.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:33:\"w.org/plugins/display-php-version\";s:4:\"slug\";s:19:\"display-php-version\";s:6:\"plugin\";s:43:\"display-php-version/display-php-version.php\";s:11:\"new_version\";s:3:\"1.5\";s:3:\"url\";s:50:\"https://wordpress.org/plugins/display-php-version/\";s:7:\"package\";s:66:\"https://downloads.wordpress.org/plugin/display-php-version.1.5.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:72:\"https://ps.w.org/display-php-version/assets/icon-256x256.png?rev=2075378\";s:2:\"1x\";s:72:\"https://ps.w.org/display-php-version/assets/icon-128x128.png?rev=2075378\";}s:7:\"banners\";a:0:{}s:11:\"banners_rtl\";a:0:{}}s:32:\"duplicate-page/duplicatepage.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:28:\"w.org/plugins/duplicate-page\";s:4:\"slug\";s:14:\"duplicate-page\";s:6:\"plugin\";s:32:\"duplicate-page/duplicatepage.php\";s:11:\"new_version\";s:3:\"4.0\";s:3:\"url\";s:45:\"https://wordpress.org/plugins/duplicate-page/\";s:7:\"package\";s:57:\"https://downloads.wordpress.org/plugin/duplicate-page.zip\";s:5:\"icons\";a:1:{s:2:\"1x\";s:67:\"https://ps.w.org/duplicate-page/assets/icon-128x128.jpg?rev=1412874\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:69:\"https://ps.w.org/duplicate-page/assets/banner-772x250.jpg?rev=1410328\";}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:23:\"wordfence/wordfence.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:23:\"w.org/plugins/wordfence\";s:4:\"slug\";s:9:\"wordfence\";s:6:\"plugin\";s:23:\"wordfence/wordfence.php\";s:11:\"new_version\";s:5:\"7.4.0\";s:3:\"url\";s:40:\"https://wordpress.org/plugins/wordfence/\";s:7:\"package\";s:58:\"https://downloads.wordpress.org/plugin/wordfence.7.4.0.zip\";s:5:\"icons\";a:3:{s:2:\"2x\";s:62:\"https://ps.w.org/wordfence/assets/icon-256x256.png?rev=2070855\";s:2:\"1x\";s:54:\"https://ps.w.org/wordfence/assets/icon.svg?rev=2070865\";s:3:\"svg\";s:54:\"https://ps.w.org/wordfence/assets/icon.svg?rev=2070865\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:65:\"https://ps.w.org/wordfence/assets/banner-1544x500.jpg?rev=2124102\";s:2:\"1x\";s:64:\"https://ps.w.org/wordfence/assets/banner-772x250.jpg?rev=2124102\";}s:11:\"banners_rtl\";a:0:{}}}}','no'),(643,'custom-typekit-fonts','a:2:{s:22:\"custom-typekit-font-id\";s:7:\"khg0joi\";s:27:\"custom-typekit-font-details\";a:2:{s:9:\"Omnes-Pro\";a:5:{s:6:\"family\";s:9:\"Omnes-Pro\";s:8:\"fallback\";s:20:\"omnes-pro,sans-serif\";s:7:\"weights\";a:4:{i:0;s:3:\"400\";i:1;s:3:\"500\";i:2;s:3:\"600\";i:3;s:3:\"700\";}s:4:\"slug\";s:9:\"omnes-pro\";s:9:\"css_names\";a:1:{i:0;s:9:\"omnes-pro\";}}s:12:\"Proxima-Nova\";a:5:{s:6:\"family\";s:12:\"Proxima-Nova\";s:8:\"fallback\";s:23:\"proxima-nova,sans-serif\";s:7:\"weights\";a:4:{i:0;s:3:\"400\";i:1;s:3:\"500\";i:2;s:3:\"600\";i:3;s:3:\"700\";}s:4:\"slug\";s:12:\"proxima-nova\";s:9:\"css_names\";a:1:{i:0;s:12:\"proxima-nova\";}}}}','yes'),(644,'_custom_typekit_fonts_version','1.0.13','yes'),(1113,'_site_transient_timeout_browser_3051f3835c9761f79c3f036c2a38924d','1569811980','no'),(1114,'_site_transient_browser_3051f3835c9761f79c3f036c2a38924d','a:10:{s:4:\"name\";s:7:\"Firefox\";s:7:\"version\";s:4:\"69.0\";s:8:\"platform\";s:9:\"Macintosh\";s:10:\"update_url\";s:24:\"https://www.firefox.com/\";s:7:\"img_src\";s:44:\"http://s.w.org/images/browsers/firefox.png?1\";s:11:\"img_src_ssl\";s:45:\"https://s.w.org/images/browsers/firefox.png?1\";s:15:\"current_version\";s:2:\"56\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;s:6:\"mobile\";b:0;}','no'),(1115,'_site_transient_timeout_php_check_d1959de4b7de84f195ea226c4728f095','1569811980','no'),(1116,'_site_transient_php_check_d1959de4b7de84f195ea226c4728f095','a:5:{s:19:\"recommended_version\";s:3:\"7.3\";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'),(1175,'_transient_elementor_pro_license_data','a:14:{s:7:\"success\";b:1;s:7:\"license\";s:5:\"valid\";s:7:\"item_id\";b:0;s:9:\"item_name\";s:13:\"Elementor Pro\";s:8:\"checksum\";s:32:\"96816e2d4a01943f1313f2ce43e65331\";s:7:\"expires\";s:19:\"2020-09-09 23:59:59\";s:10:\"payment_id\";i:706400;s:13:\"customer_name\";s:14:\"Chris Schendel\";s:14:\"customer_email\";s:25:\"geebers@bunchamonkeys.com\";s:13:\"license_limit\";i:1;s:10:\"site_count\";i:1;s:16:\"activations_left\";i:0;s:8:\"price_id\";s:1:\"1\";s:13:\"subscriptions\";s:6:\"enable\";}','no'),(1176,'_site_transient_timeout_community-events-6a0179f5d9c344289ab731de553380e8','1569426162','no'),(1177,'_site_transient_community-events-6a0179f5d9c344289ab731de553380e8','a:3:{s:9:\"sandboxed\";b:0;s:8:\"location\";a:1:{s:2:\"ip\";s:11:\"172.89.88.0\";}s:6:\"events\";a:6:{i:0;a:7:{s:4:\"type\";s:8:\"wordcamp\";s:5:\"title\";s:11:\"WordCamp US\";s:3:\"url\";s:29:\"https://2019.us.wordcamp.org/\";s:6:\"meetup\";s:0:\"\";s:10:\"meetup_url\";s:0:\"\";s:4:\"date\";s:19:\"2019-11-01 00:00:00\";s:8:\"location\";a:4:{s:8:\"location\";s:18:\"St. Louis, MO, USA\";s:7:\"country\";s:2:\"US\";s:8:\"latitude\";d:38.6532135;s:9:\"longitude\";d:-90.3136733;}}i:1;a:7:{s:4:\"type\";s:6:\"meetup\";s:5:\"title\";s:59:\"West Valley WordPress September Meetup - Hang Loose Edition\";s:3:\"url\";s:75:\"https://www.meetup.com/West-Valley-WordPress-Meetup-Group/events/263576708/\";s:6:\"meetup\";s:34:\"West Valley WordPress Meetup Group\";s:10:\"meetup_url\";s:58:\"https://www.meetup.com/West-Valley-WordPress-Meetup-Group/\";s:4:\"date\";s:19:\"2019-09-24 18:30:00\";s:8:\"location\";a:4:{s:8:\"location\";s:23:\"Woodland Hills, CA, USA\";s:7:\"country\";s:2:\"us\";s:8:\"latitude\";d:34.150001525879;s:9:\"longitude\";d:-118.59999847412;}}i:2;a:7:{s:4:\"type\";s:6:\"meetup\";s:5:\"title\";s:50:\"WordPress Pasadena General Meetup, September 2019!\";s:3:\"url\";s:59:\"https://www.meetup.com/wordpress-pasadena/events/264626939/\";s:6:\"meetup\";s:18:\"WordPress Pasadena\";s:10:\"meetup_url\";s:42:\"https://www.meetup.com/wordpress-pasadena/\";s:4:\"date\";s:19:\"2019-09-24 19:00:00\";s:8:\"location\";a:4:{s:8:\"location\";s:17:\"Pasadena, CA, USA\";s:7:\"country\";s:2:\"us\";s:8:\"latitude\";d:34.147235870361;s:9:\"longitude\";d:-118.14895629883;}}i:3;a:7:{s:4:\"type\";s:6:\"meetup\";s:5:\"title\";s:75:\"[University Park] Los Angeles WordPress General Meetup: In the Beginning...\";s:3:\"url\";s:53:\"https://www.meetup.com/LosAngelesWP/events/263206035/\";s:6:\"meetup\";s:21:\"Los Angeles WordPress\";s:10:\"meetup_url\";s:36:\"https://www.meetup.com/LosAngelesWP/\";s:4:\"date\";s:19:\"2019-09-25 18:30:00\";s:8:\"location\";a:4:{s:8:\"location\";s:20:\"Los Angeles, CA, USA\";s:7:\"country\";s:2:\"us\";s:8:\"latitude\";d:34.021259307861;s:9:\"longitude\";d:-118.28400421143;}}i:4;a:7:{s:4:\"type\";s:6:\"meetup\";s:5:\"title\";s:58:\"WordPress Lab: Take Your WordPress Site to the Next Level!\";s:3:\"url\";s:67:\"https://www.meetup.com/southcentralcoastwordpress/events/265031461/\";s:6:\"meetup\";s:45:\"South Central Coast WordPress Adventure Group\";s:10:\"meetup_url\";s:50:\"https://www.meetup.com/southcentralcoastwordpress/\";s:4:\"date\";s:19:\"2019-09-25 19:00:00\";s:8:\"location\";a:4:{s:8:\"location\";s:22:\"Santa Barbara, CA, USA\";s:7:\"country\";s:2:\"us\";s:8:\"latitude\";d:34.418670654297;s:9:\"longitude\";d:-119.67947387695;}}i:5;a:7:{s:4:\"type\";s:8:\"wordcamp\";s:5:\"title\";s:46:\"WordCamp Long Beach, California, United States\";s:3:\"url\";s:35:\"https://2019.longbeach.wordcamp.org\";s:6:\"meetup\";N;s:10:\"meetup_url\";N;s:4:\"date\";s:19:\"2019-10-05 00:00:00\";s:8:\"location\";a:4:{s:8:\"location\";s:37:\"Long Beach, California, United States\";s:7:\"country\";s:2:\"US\";s:8:\"latitude\";d:33.7873979;s:9:\"longitude\";d:-118.1143892;}}}}','no'),(1178,'_transient_timeout_feed_9bbd59226dc36b9b26cd43f15694c5c3','1569426162','no'),(1179,'_transient_feed_9bbd59226dc36b9b26cd43f15694c5c3','a:4:{s:5:\"child\";a:1:{s:0:\"\";a:1:{s:3:\"rss\";a:1:{i:0;a:6:{s:4:\"data\";s:3:\"\n\n\n\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:7:\"version\";s:3:\"2.0\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:1:{s:7:\"channel\";a:1:{i:0;a:6:{s:4:\"data\";s:49:\"\n	\n	\n	\n	\n	\n	\n	\n	\n	\n	\n		\n		\n		\n		\n		\n		\n		\n		\n		\n	\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:27:\"News –  – WordPress.org\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:26:\"https://wordpress.org/news\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"WordPress News\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:13:\"lastBuildDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 24 Sep 2019 07:18:19 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"language\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"en-US\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:9:\"generator\";a:1:{i:0;a:5:{s:4:\"data\";s:40:\"https://wordpress.org/?v=5.3-beta1-46288\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"item\";a:10:{i:0;a:6:{s:4:\"data\";s:48:\"\n		\n		\n				\n		\n				\n\n		\n				\n								\n										\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:20:\"WordPress 5.3 Beta 1\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://wordpress.org/news/2019/09/wordpress-5-3-beta-1/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 23 Sep 2019 18:36:11 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=7114\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:321:\"WordPress 5.3 Beta 1 is now available! This software is still in development, so we don’t recommend running it on a production site. Consider setting up a test site to play with the new version. You can test the WordPress 5.3 beta in two ways: Try the WordPress Beta Tester plugin (choose the “bleeding edge [&#8230;]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:16:\"Francesca Marano\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:9121:\"\n<p>WordPress 5.3 Beta 1 is now available!</p>\n\n\n\n<p><strong>This software is still in development,</strong> so we don’t recommend running it on a production site. Consider setting up a test site to play with the new version.</p>\n\n\n\n<p>You can test the WordPress 5.3 beta in two ways:</p>\n\n\n\n<ul><li>Try the <a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a> plugin (choose the “bleeding edge nightlies” option)</li><li>Or <a href=\"https://wordpress.org/wordpress-5.3-beta1.zip\">download the beta here</a> (zip).</li></ul>\n\n\n\n<p>WordPress 5.3 is slated for release on <a href=\"https://make.wordpress.org/core/5-3/\">November 12, 2019</a>, and we need your help to get there. Here are some of the big items to test, so we can find and resolve as many bugs as possible in the coming weeks.</p>\n\n\n\n<h2>Block Editor: features and improvements</h2>\n\n\n\n<p>Twelve releases of the Gutenberg plugin are going to be merged into 5.3 which means there’s a long list of exciting new features.&nbsp;</p>\n\n\n\n<p>Here are just a few of them:</p>\n\n\n\n<ul><li>Group block and grouping interactions</li><li>Columns block improvements (width support + patterns)</li><li>Table block improvements (text alignment support, header/footer support, colors)</li><li>Gallery block improvements (reordering inline, caption support)</li><li>Separator block improvements (color support)</li><li>Latest Posts block improvements (support excerpt, content)</li><li>List block improvements (indent/outdent shortcuts, start value and reverse order support)</li><li>Button block improvements (support target, border radius)</li><li>Animations and micro interactions (moving blocks, dropdowns, and a number of small animations to improve the UX)</li><li>Accessibility Navigation Mode which will allow you to navigate with the keyboard between blocks without going into their content.</li><li>Block Style Variations API</li></ul>\n\n\n\n<p>Plus a number of other improvements, amongst them:</p>\n\n\n\n<ul><li>Data Module API improvements (useSelect/useEffect)</li><li>Inserter Help Panel</li><li>Extensibility: DocumentSettingsPanel</li><li>Snackbar notices</li><li>Typewriter Experience</li><li>Fix a number of Accessibility report issues</li></ul>\n\n\n\n<p>If you want to see all the features for each release, here are direct links to the release posts: <a href=\"https://make.wordpress.org/core/2019/09/19/whats-new-in-gutenberg-18-september/\">6.5</a>, <a href=\"https://make.wordpress.org/core/2019/08/28/whats-new-in-gutenberg-28-august/\">6.4</a>, <a href=\"https://make.wordpress.org/core/2019/08/14/whats-new-in-gutenberg-14-august/\">6.3</a>, <a href=\"https://make.wordpress.org/core/2019/07/31/whats-new-in-gutenberg-31-july/\">6.2</a>, <a href=\"https://make.wordpress.org/core/2019/07/10/whats-new-in-gutenberg-10-july/\">6.1</a>, <a href=\"https://make.wordpress.org/core/2019/06/26/whats-new-in-gutenberg-26th-june/\">6.0</a>, <a href=\"https://make.wordpress.org/core/2019/06/12/whats-new-in-gutenberg-12th-june/\">5.9</a>, <a href=\"https://make.wordpress.org/core/2019/05/29/whats-new-in-gutenberg-29th-may/\">5.8</a>, <a href=\"https://make.wordpress.org/core/2019/05/15/whats-new-in-gutenberg-15th-may/\">5.7</a>, <a href=\"https://make.wordpress.org/core/2019/05/01/whats-new-in-gutenberg-1st-may/\">5.6</a>, <a href=\"https://make.wordpress.org/core/2019/04/17/whats-new-in-gutenberg-17th-april/\">5.5</a>, and <a href=\"https://make.wordpress.org/core/2019/04/03/whats-new-in-gutenberg-3rd-april/\">5.4</a>.</p>\n\n\n\n<h3>Continuous effort on performance</h3>\n\n\n\n<p>The team working on the block editor managed to shave off 1.5 seconds of loading time for a particularly sizeable post (~ 36,000 words, ~ 1,000 blocks) since WordPress 5.2.</p>\n\n\n\n<h2>A new default theme: welcome Twenty Twenty</h2>\n\n\n\n<p>WordPress 5.3 introduces <a href=\"https://make.wordpress.org/core/2019/09/06/introducing-twenty-twenty/\">Twenty Twenty</a>, the latest default theme in our project history.&nbsp;</p>\n\n\n\n<p>This elegant new theme is based on the WordPress theme <a href=\"https://www.andersnoren.se/teman/chaplin-wordpress-theme/\">Chaplin</a> which was released on the WordPress.org theme directory earlier this summer.&nbsp;</p>\n\n\n\n<p>It includes full support for the block editor, empowering users to find the right design for their message.</p>\n\n\n\n<h2>Wait! There is more</h2>\n\n\n\n<p>5.3 is going to be a rich release with the inclusion of numerous enhancements to interactions and the interface.</p>\n\n\n\n<h2>Admin interface enhancements</h2>\n\n\n\n<p>Design and Accessibility teams worked together to port some parts of Gutenberg styles into the whole wp-admin interface. Both teams are going to iterate on these changes during the 5.3 beta cycle. These improved styles fix many accessibility issues, improve color contrasts on form fields and buttons, add consistency between editor and admin interfaces, modernize the WordPress color scheme, add better zoom management, and more.</p>\n\n\n\n<h3>Big Images are coming to WordPress</h3>\n\n\n\n<p>Uploading non-optimized, high-resolution pictures from your smartphone isn’t a problem anymore. WordPress now supports resuming uploads when they fail as well as larger default image sizes. That way pictures you add from the block editor look their best no matter how people get to your site.</p>\n\n\n\n<h3>Automatic image rotation during upload</h3>\n\n\n\n<p>Your images will be correctly rotated upon upload according to the EXIF orientation. This feature was first proposed nine years ago. Never give up on your dreams to see your fixes land in WordPress!</p>\n\n\n\n<h3>Site Health Checks</h3>\n\n\n\n<p>The improvements introduced in 5.3 make it easier to identify and understand areas that may need troubleshooting on your site from the Tools -&gt; Health Check screen.</p>\n\n\n\n<h3>Admin Email Verification</h3>\n\n\n\n<p>You’ll now be periodically asked to check that your admin email address is up to date when you log in as an administrator. This reduces the chance that you’ll get locked out of your site if you change your email address.</p>\n\n\n\n<h2>For Developers</h2>\n\n\n\n<h3>Time/Date component fixes</h3>\n\n\n\n<p>Developers can now work with <a href=\"https://make.wordpress.org/core/2019/09/23/date-time-improvements-wp-5-3/\">dates and timezones</a> in a more reliable way. Date and time functionality has received a number of new API functions for unified timezone retrieval and PHP interoperability, as well as many bug fixes.</p>\n\n\n\n<h3>PHP 7.4 Compatibility</h3>\n\n\n\n<p>The WordPress core team is actively preparing to support PHP 7.4 when it is released later this year. WordPress 5.3 contains <a href=\"https://core.trac.wordpress.org/query?status=accepted&amp;status=assigned&amp;status=closed&amp;status=new&amp;status=reopened&amp;status=reviewing&amp;keywords=~php74&amp;milestone=5.3&amp;order=priority\">multiple changes</a> to remove deprecated functionality and ensure compatibility. Please test this beta release with PHP 7.4 to ensure all functionality continues to work as expected and does not raise any new warnings. </p>\n\n\n\n<h3>Other Changes for Developers</h3>\n\n\n\n<ul><li>Multisite<ul><li>Filter sites by status<ul><li><a href=\"https://core.trac.wordpress.org/ticket/37392\">https://core.trac.wordpress.org/ticket/37392</a>&nbsp;</li><li><a href=\"https://core.trac.wordpress.org/ticket/37684\">https://core.trac.wordpress.org/ticket/37684</a>&nbsp;</li></ul></li><li>Save database version in site meta<ul><li><a href=\"https://core.trac.wordpress.org/ticket/41685\">https://core.trac.wordpress.org/ticket/41685</a>&nbsp;</li></ul></li></ul></li><li>Code modernization and PHP 7.4 support<ul><li><a href=\"https://core.trac.wordpress.org/ticket/47678\">https://core.trac.wordpress.org/ticket/47678</a>&nbsp;</li><li><a href=\"https://core.trac.wordpress.org/ticket/47783\">https://core.trac.wordpress.org/ticket/47783</a></li></ul></li><li>Toggle password view<ul><li><a href=\"https://core.trac.wordpress.org/ticket/42888\">https://core.trac.wordpress.org/ticket/42888</a></li></ul></li></ul>\n\n\n\n<p>Keep your eyes on the <a href=\"https://make.wordpress.org/core/\">Make WordPress Core blog</a> for more <a href=\"https://make.wordpress.org/core/tag/5-3+dev-notes/\">5.3 related developer notes</a> in the coming weeks detailing other changes that you should be aware of.</p>\n\n\n\n<h2>What’s next</h2>\n\n\n\n<p>There have been over 400 tickets fixed in WordPress 5.3 so far with numerous bug fixes and improvements to help smooth your WordPress experience.</p>\n\n\n\n<h2>How to Help</h2>\n\n\n\n<p>Do you speak a language other than English? <a href=\"https://translate.wordpress.org/projects/wp/dev/\">Help us translate WordPress into more than 100 languages</a>!</p>\n\n\n\n<p>If you think you’ve found a bug, you can post to the <a href=\"https://wordpress.org/support/forum/alphabeta/\">Alpha/Beta area</a> in the support forums. We’d love to hear from you! If you’re comfortable writing a reproducible bug report, <a href=\"https://core.trac.wordpress.org/newticket\">file one on WordPress Trac</a> where you can also find a list of <a href=\"https://core.trac.wordpress.org/tickets/major\">known bugs</a>.<br></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"7114\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:1;a:6:{s:4:\"data\";s:51:\"\n		\n		\n				\n		\n				\n		\n\n		\n				\n								\n										\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:36:\"People of WordPress: Abdullah Ramzan\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:71:\"https://wordpress.org/news/2019/09/people-of-wordpress-abdullah-ramzan/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 06 Sep 2019 18:21:22 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:9:\"heropress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:10:\"Interviews\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=7086\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:391:\"You’ve probably heard that WordPress is open-source software, and may know that it’s created and run by volunteers. WordPress enthusiasts share many examples of how WordPress changed people’s lives for the better. This monthly series shares some of those lesser-known, amazing stories. Meet Abdullah Ramzan, from Lahore, Punjab, Pakistan. Abdullah Ramzan was born and brought [&#8230;]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:16:\"Yvette Sonneveld\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:6788:\"\n<p><em>You’ve probably heard that WordPress is open-source software, and may know that it’s created and run by volunteers. WordPress enthusiasts share many examples of how WordPress changed people’s lives for the better. This monthly series shares some of those lesser-known, amazing stories.</em></p>\n\n\n\n<h2><strong>Meet Abdullah Ramzan, from Lahore, Punjab, Pakistan.</strong></h2>\n\n\n\n<p>Abdullah Ramzan was born and brought up in the under-developed city of <a href=\"https://en.wikipedia.org/wiki/Layyah\"><strong>​Layyah​</strong></a>, which is situated in Southern Punjab, Pakistan and surrounded by desert and the river ​Sindh​.</p>\n\n\n\n<p>He graduated from college in his home town and started using a computer in ​2010​ when he joined <a href=\"https://gcuf.edu.pk/\"><strong>​Government College University Faisalabad​</strong></a>. Abdullah’s introduction to WordPress happened while he was finishing the last semester of his degree. His final project was based in WordPress.</p>\n\n\n\n<p>Ramzan’s late mother was the real hero in his life, helping him with his Kindergarten homework and seeing him off to school every day.&nbsp;</p>\n\n\n\n<p>Before her heart surgery, Ramzan visited her in the hospital ICU, where she hugged him and said: ​“<strong>Don’t worry, everything will be good</strong>.” Sadly, his mother died during her surgery. However, her influence on Ramzan’s life continues.</p>\n\n\n\n<h3><strong>Start of Ramzan’s Career:</strong></h3>\n\n\n\n<p>After graduation, Ramzan struggled to get his first job. He first joined PressTigers<strong>​</strong> as a Software Engineer and met Khawaja Fahad Shakeel<a href=\"https://twitter.com/FahadShakeel\"><strong>​</strong></a>, his first mentor. Shakeel provided Ramzan with endless support. Something had always felt missing in his life, but he felt like he was on the right track for the first time in his life when he joined the WordPress community.&nbsp;</p>\n\n\n\n<h3><strong>Community – WordCamps and Meetups:</strong></h3>\n\n\n\n<p>Although Ramzan had used WordPress since ​2015​, attending WordPress meetups and open source contributions turned out to be a game-changer for him. He learned a lot from the WordPress community and platform, and developed strong relationships with several individuals. One of them is <a href=\"https://twitter.com/jainnidhi03\"><strong>​</strong></a>Nidhi Jain​ from Udaipur India who he works with on WordPress development. The second is <a href=\"https://twitter.com/desrosj\"><strong>​</strong></a>Jonathan Desrosiers​ who he continues to learn a lot from.</p>\n\n\n\n<p>In addition, Usman Khalid<a href=\"https://twitter.com/Usman__Khalid\"><strong>​</strong></a>, the lead organizer of WC Karachi, mentored Ramzan, helping him to develop his community skills.&nbsp;</p>\n\n\n\n<p>With the mentorship of these contributors, Ramzan is confident supporting local WordPress groups and helped to organize ​WordCamp Karachi​, where he spoke for the first time at an international level event. He believes that WordPress has contributed much to his personal identity.&nbsp;</p>\n\n\n\n<figure class=\"wp-block-image\"><img src=\"https://i0.wp.com/wordpress.org/news/files/2019/09/AbdullahRamzan.jpeg?resize=632%2C422&#038;ssl=1\" alt=\"Abdullah Ramzan among a group of community members at WordCamp Karachi 2018\" class=\"wp-image-7088\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2019/09/AbdullahRamzan.jpeg?resize=1024%2C683&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2019/09/AbdullahRamzan.jpeg?resize=300%2C200&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2019/09/AbdullahRamzan.jpeg?resize=768%2C512&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2019/09/AbdullahRamzan.jpeg?w=2048&amp;ssl=1 2048w, https://i0.wp.com/wordpress.org/news/files/2019/09/AbdullahRamzan.jpeg?w=1264&amp;ssl=1 1264w, https://i0.wp.com/wordpress.org/news/files/2019/09/AbdullahRamzan.jpeg?w=1896&amp;ssl=1 1896w\" sizes=\"(max-width: 632px) 100vw, 632px\" data-recalc-dims=\"1\" /><figcaption>Abdullah Ramzan at WordCamp Karachi 2018</figcaption></figure>\n\n\n\n<h3><strong>WordPress and the Future:</strong></h3>\n\n\n\n<p>As a <a href=\"https://www.meetup.com/WordPress-Lahore/members/?op=leaders&amp;sort=name\"><strong>​co-organizer of WordPress Meetup Lahore,​</strong></a> he would love to involve more people in the community leadership team, to provide a platform for people to gather under one roof, to learn and share something with each other. </p>\n\n\n\n<p>But he has loftier ambitions. Impressed by <a href=\"https://walktowc.eu/\">Walk to WordCamp Europe</a>, Abdullah is seriously considering walking to WordCamp Asia. He also one day hopes for the opportunity to serve his country as a senator of Pakistan<a href=\"http://www.senate.gov.pk/\"><strong>​</strong></a> and intends to enter the next senate election.</p>\n\n\n\n<h3><strong>Words of Encouragement</strong></h3>\n\n\n\n<p>Abdullah Ramzan knows there is no shortcut to success. “You have to work hard to achieve your goals,” explained Ramzan. He still has much he wishes to accomplish and hopes to be remembered for his impact on the project.</p>\n\n\n\n<p>Abdullah believes WordPress can never die as long as people don’t stop innovating to meet new demands. The beauty of WordPress is that it is made for everyone.</p>\n\n\n\n<p>Ramzan encouraged, “If you seriously want to do something for yourself, do something for others first. Go for open source, you’ll surely learn how to code. You’ll learn how to work in a team. Join local meetups, meet with the folks: help them, learn from them, and share ideas.”</p>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<div class=\"wp-block-image\"><figure class=\"alignleft is-resized\"><img src=\"https://i1.wp.com/wordpress.org/news/files/2019/07/heropress_large_white_logo.jpg?resize=109%2C82&#038;ssl=1\" alt=\"\" class=\"wp-image-7025\" width=\"109\" height=\"82\" srcset=\"https://i1.wp.com/wordpress.org/news/files/2019/07/heropress_large_white_logo.jpg?w=1024&amp;ssl=1 1024w, https://i1.wp.com/wordpress.org/news/files/2019/07/heropress_large_white_logo.jpg?resize=300%2C225&amp;ssl=1 300w, https://i1.wp.com/wordpress.org/news/files/2019/07/heropress_large_white_logo.jpg?resize=768%2C576&amp;ssl=1 768w\" sizes=\"(max-width: 109px) 100vw, 109px\" data-recalc-dims=\"1\" /></figure></div>\n\n\n\n<p><em>This post is based on an article originally published on HeroPress.com, a community initiative created by <a href=\"https://profiles.wordpress.org/topher1kenobe/\">Topher DeRosia</a>. HeroPress highlights people in the WordPress community who have overcome barriers and whose stories would otherwise go unheard.</em></p>\n\n\n\n<p><em>Meet more WordPress community members over at </em><a href=\"https://heropress.com/\"><em>HeroPress.com</em></a><em>!</em></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"7086\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:2;a:6:{s:4:\"data\";s:51:\"\n		\n		\n				\n		\n				\n		\n\n		\n				\n								\n										\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:48:\"WordPress 5.2.3 Security and Maintenance Release\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:84:\"https://wordpress.org/news/2019/09/wordpress-5-2-3-security-and-maintenance-release/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 05 Sep 2019 01:51:15 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"Security\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=7064\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:368:\"WordPress 5.2.3 is now available! This security and maintenance release features 29 fixes and enhancements. Plus, it adds a number of security fixes—see the list below. These bugs affect WordPress versions 5.2.2 and earlier; version 5.2.3 fixes them, so you&#8217;ll want to upgrade. If you haven&#8217;t yet updated to 5.2, there are also updated versions [&#8230;]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jake Spurlock\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:7645:\"\n<p>WordPress 5.2.3 is now available! </p>\n\n\n\n<p>This security and maintenance release features 29 fixes and enhancements. Plus, it adds a number of security fixes—see the list below.</p>\n\n\n\n<p>These bugs affect WordPress versions 5.2.2 and earlier; version 5.2.3 fixes them, so you&#8217;ll want to upgrade. </p>\n\n\n\n<p>If you haven&#8217;t yet updated to 5.2, there are also updated versions of 5.0 and earlier that fix the bugs for you.</p>\n\n\n\n<h3>Security Updates</h3>\n\n\n\n<ul><li>Props to&nbsp;<a href=\"https://blog.ripstech.com/authors/simon-scannell/\">Simon Scannell of RIPS Technologies</a>&nbsp;for finding and disclosing two issues. The first, a cross-site scripting (XSS) vulnerability found in post previews by contributors. The second was a cross-site scripting vulnerability in stored comments.&nbsp;</li><li>Props to&nbsp;<a href=\"https://security-consulting.icu/blog/\">Tim Coen</a>&nbsp;for disclosing an issue where validation and sanitization of a URL could lead to an open redirect.&nbsp;</li><li>Props to Anshul Jain for disclosing reflected cross-site scripting during media uploads.</li><li>Props to&nbsp;<a href=\"https://fortiguard.com/\">Zhouyuan Yang of Fortinet’s FortiGuard Labs</a>&nbsp;who disclosed a vulnerability for cross-site scripting (XSS) in shortcode previews.</li><li>Props to Ian Dunn of the Core Security Team for finding and disclosing a case where reflected cross-site scripting could be found in the dashboard.</li><li>Props to Soroush Dalili (<a href=\"https://twitter.com/irsdl?lang=en\">@irsdl</a>) from NCC Group for disclosing an issue with URL sanitization that can lead to cross-site scripting (XSS) attacks.</li><li>In addition to the above changes, we are also updating jQuery on older versions of WordPress. This change was&nbsp;<a href=\"https://core.trac.wordpress.org/ticket/47020\">added in 5.2.1</a>&nbsp;and is now being brought to older versions.&nbsp;</li></ul>\n\n\n\n<p>You can browse the&nbsp;<a href=\"https://core.trac.wordpress.org/query?status=closed&amp;resolution=fixed&amp;milestone=5.2.3&amp;order=priority\">full list of changes on Trac</a>.</p>\n\n\n\n<p>For more info, browse the full list of changes on Trac or check out the Version&nbsp;<a href=\"https://wordpress.org/support/wordpress-version/version-5-2-3/\">5.2.3 documentation page</a>.</p>\n\n\n\n<p>WordPress 5.2.3 is a short-cycle maintenance release. The next major release will be&nbsp;<a href=\"https://make.wordpress.org/core/5-3/\">version 5.3.</a></p>\n\n\n\n<p>You can download WordPress 5.2.3 from the button at the top of this page, or visit your<strong> Dashboard → Updates</strong> and click <strong>Update Now</strong>. </p>\n\n\n\n<p>If you have sites that support automatic background updates, they&#8217;ve already started the update process.</p>\n\n\n\n<h2>Thanks and props!</h2>\n\n\n\n<p>This release brings together contributions from more than 62 other people. Thank you to everyone who made this release possible!</p>\n\n\n\n<p><a href=\"https://profiles.wordpress.org/adamsilverstein/\">Adam Silverstein</a>,&nbsp;<a href=\"https://profiles.wordpress.org/xknown/\">Alex Concha</a>,&nbsp;<a href=\"https://profiles.wordpress.org/alpipego/\">Alex Goller</a>,&nbsp;<a href=\"https://profiles.wordpress.org/afercia/\">Andrea Fercia</a>,&nbsp;<a href=\"https://profiles.wordpress.org/aduth/\">Andrew Duthie</a>,&nbsp;<a href=\"https://profiles.wordpress.org/azaozz/\">Andrew Ozz</a>,&nbsp;<a href=\"https://profiles.wordpress.org/afragen/\">Andy Fragen</a>, <a href=\"https://profiles.wordpress.org/762e5e74/\">Ashish Shukla</a>,&nbsp;<a href=\"https://profiles.wordpress.org/wpboss/\">Aslam Shekh</a>,&nbsp;<a href=\"https://profiles.wordpress.org/backermann1978/\">backermann1978</a>,&nbsp;<a href=\"https://profiles.wordpress.org/cdog/\">Catalin Dogaru</a>,&nbsp;<a href=\"https://profiles.wordpress.org/chetan200891/\">Chetan Prajapati</a>,&nbsp;<a href=\"https://profiles.wordpress.org/aprea/\">Chris Aprea</a>,&nbsp;<a href=\"https://profiles.wordpress.org/christophherr/\">Christoph Herr</a>,&nbsp;<a href=\"https://profiles.wordpress.org/danmicamediacom/\">dan@micamedia.com</a>,&nbsp;<a href=\"https://profiles.wordpress.org/diddledan/\">Daniel Llewellyn</a>,&nbsp;<a href=\"https://profiles.wordpress.org/donmhico/\">donmhico</a>,&nbsp;<a href=\"https://profiles.wordpress.org/iseulde/\">Ella van Durpe</a>,&nbsp;<a href=\"https://profiles.wordpress.org/epiqueras/\">epiqueras</a>,&nbsp;<a href=\"https://profiles.wordpress.org/fencer04/\">Fencer04</a>,&nbsp;<a href=\"https://profiles.wordpress.org/flaviozavan/\">flaviozavan</a>,&nbsp;<a href=\"https://profiles.wordpress.org/garrett-eclipse/\">Garrett Hyder</a>,&nbsp;<a href=\"https://profiles.wordpress.org/pento/\">Gary Pendergast</a>,&nbsp;<a href=\"https://profiles.wordpress.org/gqevu6bsiz/\">gqevu6bsiz</a>,&nbsp;<a href=\"https://profiles.wordpress.org/thakkarhardik/\">Hardik Thakkar</a>,&nbsp;<a href=\"https://profiles.wordpress.org/ianbelanger/\">Ian Belanger</a>,&nbsp;<a href=\"https://profiles.wordpress.org/iandunn/\">Ian Dunn</a>,&nbsp;<a href=\"https://profiles.wordpress.org/whyisjake/\">Jake Spurlock</a>,&nbsp;<a href=\"https://profiles.wordpress.org/audrasjb/\">Jb Audras</a>,&nbsp;<a href=\"https://profiles.wordpress.org/jeffpaul/\">Jeffrey Paul</a>,&nbsp;<a href=\"https://profiles.wordpress.org/jikamens/\">jikamens</a>,&nbsp;<a href=\"https://profiles.wordpress.org/johnbillion/\">John Blackbourn</a>,&nbsp;<a href=\"https://profiles.wordpress.org/desrosj/\">Jonathan Desrosiers</a>, <a href=\"https://profiles.wordpress.org/jorgefilipecosta/\">Jorge Costa,</a> <a href=\"https://profiles.wordpress.org/karlgroves/\">karlgroves</a>,&nbsp;<a href=\"https://profiles.wordpress.org/kjellr/\">Kjell Reigstad</a>,&nbsp;<a href=\"https://profiles.wordpress.org/laurelfulford/\">laurelfulford</a>,&nbsp;<a href=\"https://profiles.wordpress.org/majemedia/\">Maje Media LLC</a>,&nbsp;<a href=\"https://profiles.wordpress.org/mspatovaliyski/\">Martin Spatovaliyski</a>,&nbsp;<a href=\"https://profiles.wordpress.org/marybaum/\">Mary Baum</a>,&nbsp;<a href=\"https://profiles.wordpress.org/monikarao/\">Monika Rao</a>,&nbsp;<a href=\"https://profiles.wordpress.org/mukesh27/\">Mukesh Panchal</a>,&nbsp;<a href=\"https://profiles.wordpress.org/nayana123/\">nayana123</a>,&nbsp;<a href=\"https://profiles.wordpress.org/greatislander/\">Ned Zimmerman</a>,&nbsp;<a href=\"https://profiles.wordpress.org/nickdaugherty/\">Nick Daugherty</a>, <a href=\"https://profiles.wordpress.org/rabmalin/\">Nilambar Sharma</a>,&nbsp;<a href=\"https://profiles.wordpress.org/nmenescardi/\">nmenescardi</a>,&nbsp;<a href=\"https://profiles.wordpress.org/bassgang/\">Paul Vincent Beigang</a>,&nbsp;<a href=\"https://profiles.wordpress.org/pedromendonca/\">Pedro Mendonça</a>,&nbsp;<a href=\"https://profiles.wordpress.org/peterwilsoncc/\">Peter Wilson</a>,&nbsp;<a href=\"https://profiles.wordpress.org/sergeybiryukov/\">Sergey Biryukov</a>,&nbsp;<a href=\"https://profiles.wordpress.org/vjik/\">Sergey Predvoditelev</a>,&nbsp;<a href=\"https://profiles.wordpress.org/sharaz/\">Sharaz Shahid</a>,&nbsp;<a href=\"https://profiles.wordpress.org/sstoqnov/\">Stanimir Stoyanov</a>,&nbsp;<a href=\"https://profiles.wordpress.org/ryokuhi/\">Stefano Minoia</a>,&nbsp;<a href=\"https://profiles.wordpress.org/karmatosed/\">Tammie Lister</a>,&nbsp;<a href=\"https://profiles.wordpress.org/isabel_brison/\">tellthemachines</a>,&nbsp;<a href=\"https://profiles.wordpress.org/tmatsuur/\">tmatsuur</a>,&nbsp;<a href=\"https://profiles.wordpress.org/vaishalipanchal/\">Vaishali Panchal</a>,&nbsp;<a href=\"https://profiles.wordpress.org/vortfu/\">vortfu</a>,&nbsp;<a href=\"https://profiles.wordpress.org/tsewlliw/\">Will West</a>, and&nbsp;<a href=\"https://profiles.wordpress.org/yarnboy/\">yarnboy</a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"7064\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:3;a:6:{s:4:\"data\";s:48:\"\n		\n		\n				\n		\n				\n\n		\n				\n								\n										\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"The Month in WordPress: August 2019\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:70:\"https://wordpress.org/news/2019/09/the-month-in-wordpress-august-2019/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 02 Sep 2019 10:00:13 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:18:\"Month in WordPress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=7059\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:374:\"This has been a particularly busy month, with a number of interesting and ambitious proposals for the WordPress project along with active progress across the entire community. Core Development and Schedule The upcoming minor release of WordPress, v5.2.3, is currently in the release candidate phase and available for testing. Following that, the next major release [&#8230;]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:15:\"Hugh Lashbrooke\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:9644:\"\n<p>This has been a particularly busy month, with a number of interesting and ambitious proposals for the WordPress project along with active progress across the entire community. </p>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<h2>Core Development and Schedule</h2>\n\n\n\n<p>The upcoming minor release of WordPress, v5.2.3, is currently <a href=\"https://make.wordpress.org/core/2019/08/22/wordpress-5-2-3-rc-1/\">in the release candidate phase</a> and available for testing.</p>\n\n\n\n<p>Following that, the next major release is v5.3 and the Core team has laid out <a href=\"https://make.wordpress.org/core/2019/08/21/wordpress-5-3-schedule-and-scope/\">a schedule and scope</a> for development. In addition, <a href=\"https://make.wordpress.org/core/2019/08/27/bug-scrub-schedule-for-5-3/\">a bug scrub schedule</a> and <a href=\"https://make.wordpress.org/accessibility/2019/08/28/wordpress-5-3-accessibility-focused-bug-scrub-schedule/\">an accessibility-focused schedule</a> have been set out to provide dedicated times for contributors to work on ironing out the bugs in the release.</p>\n\n\n\n<p>Want to get involved in building WordPress Core? Follow <a href=\"https://make.wordpress.org/core/\">the Core team blog</a>, and join the #core channel in <a href=\"https://make.wordpress.org/chat/\">the Making WordPress Slack group</a>.</p>\n\n\n\n<h2>Proposal for User Privacy Improvements</h2>\n\n\n\n<p>The Core Privacy Team <a href=\"https://make.wordpress.org/core/2019/08/07/feature-plugin-discussion-a-consent-and-logging-mechanism-for-user-privacy/\">has proposed a feature plugin</a> to build a consent and logging mechanism for user privacy. This project will focus on improving the user privacy controls in WordPress Core in order to protect site owners and users alike.</p>\n\n\n\n<p>The proposal includes some useful information about building effective controls for users, how other projects have worked on similar efforts, and what kind of time and resources the project will need in order to be developed.</p>\n\n\n\n<p>Want to get involved in this feature project? Follow <a href=\"https://make.wordpress.org/core/\">the Core team blog</a>, and join the #core-privacy channel in <a href=\"https://make.wordpress.org/chat/\">the Making WordPress Slack group</a> where there are open office hours every Wednesday at 19:00 UTC.</p>\n\n\n\n<h2>Core Notification System Proposal</h2>\n\n\n\n<p><a href=\"https://make.wordpress.org/core/2019/08/05/feature-project-proposal-wp-notify/\">A proposal has been made</a> for a new feature project to build a robust notification system for WordPress Core. The aim of the project is to build a system to handle notifications for site owners that can be extended by plugin and theme developers.</p>\n\n\n\n<p>This proposal comes on the back of <a href=\"https://core.trac.wordpress.org/ticket/43484\">a Trac ticket</a> opened 18 months ago. With weekly meetings to discuss the project, the team behind WP Notify are <a href=\"https://make.wordpress.org/core/2019/08/28/wp-notify-meeting-recap-august-26-2019/\">in the planning phase</a> while they establish exactly how to develop the feature.<br></p>\n\n\n\n<p>Want to get involved in this feature project? Follow <a href=\"https://make.wordpress.org/core/\">the Core team blog</a>, and join the #core channel in <a href=\"https://make.wordpress.org/chat/\">the Making WordPress Slack group</a> &#8211; meetings for this project happen every Monday at 14:00 and 22:00 UTC.</p>\n\n\n\n<h2>Local WordPress Development Environment</h2>\n\n\n\n<p>Members of the Core Team <a href=\"https://make.wordpress.org/core/2019/08/05/wordpress-local-environment/\">have put together a local development environment for WordPress</a> that runs on Docker. This environment provides an easy way for developers to get involved with WordPress core development. </p>\n\n\n\n<p>The work on this was inspired by the environment used for local Gutenberg development, <a href=\"https://make.wordpress.org/core/2019/08/30/gutenberg-local-environment-rewrite/\">which has since been improved</a> based on the new work that has been done here.</p>\n\n\n\n<p><a href=\"https://make.wordpress.org/core/2019/08/05/wordpress-local-environment/\">The announcement post</a> explains how to use the Docker environment. If you have any feedback or bug reports, please comment on the post directly.</p>\n\n\n\n<h2>Updates for Older Versions of WordPress</h2>\n\n\n\n<p>On July 30, the Security Team shared that security updates need to undergo the same testing and release process for every major version of WordPress. This means they have to provide long-term support for over fifteen major versions of WordPress. This requires a lot of time and effort, and <a href=\"https://make.wordpress.org/core/2019/07/29/should-security-fixes-continue-to-be-backported-to-very-old-versions-of-wordpress/\">the team has sought feedback on potential solutions for this challenge</a>. </p>\n\n\n\n<p>Following this discussion, <a href=\"https://make.wordpress.org/core/2019/08/07/proposal-auto-update-old-versions-to-4-7/\">a proposal was made to auto-update old versions of WordPress to v4.7</a>. This proposal garnered many responses and has since been updated to incorporate feedback from comments. The current recommendation is to secure the six latest versions and to eventually auto-update all older versions of WordPress to 4.7. Since this proposal was made, it has been discussed at <a href=\"https://make.wordpress.org/hosting/2019/08/26/hosting-meeting-notes-august-19-2019/\">Hosting Team meetings</a> and <a href=\"https://make.wordpress.org/core/2019/08/16/follow-up-discussion-on-major-auto-updates/\">Dev Chat meetings</a>, and the conversation is still ongoing.</p>\n\n\n\n<p>Want to provide feedback on this proposal? Comment on <a href=\"https://make.wordpress.org/core/2019/08/07/proposal-auto-update-old-versions-to-4-7/\">the original post</a> with your thoughts.</p>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<h2>Further Reading:</h2>\n\n\n\n<ul><li>The recommended minimum PHP version for WordPress Core <a href=\"https://make.wordpress.org/core/2019/08/13/increasing-the-recommended-php-version-in-core/\">has been increased to 7.0</a>.</li><li>Gutenberg development continues at a rapid pace with <a href=\"https://make.wordpress.org/core/2019/08/28/whats-new-in-gutenberg-28-august/\">new updates</a> coming out every month.</li><li>The Core Team is kicking off bug scrub and triage sessions <a href=\"https://make.wordpress.org/core/2019/08/26/apac-triage-and-bug-scrub-sessions/\">at APAC-friendly times</a>.</li><li>WordCamp US announced <a href=\"https://2019.us.wordcamp.org/schedule/\">the event schedule</a> to take place on November 1-3.</li><li>The Plugin Team reminded developers that <a href=\"https://make.wordpress.org/plugins/2019/08/23/reminder-developers-must-comply-with-the-forum-guidelines/\">they need to stick to the Plugin Directory forum guidelines</a> if they choose to use them for support.</li><li>WordPress project leadership is looking at <a href=\"https://make.wordpress.org/updates/2019/07/30/update-sanctions-and-open-source/\">how to respond to political sanctions</a> in light of the open-source nature of the project.&nbsp;</li><li>The Community Team has proposed <a href=\"https://make.wordpress.org/community/2019/08/19/proposal-speaker-feedback-tool/\">a WordCamp speaker feedback tool</a> that will allow more reliable and consistent feedback for WordCamps speakers all over the world.</li><li>The Five for the Future project now has <a href=\"https://make.wordpress.org/updates/2019/08/29/five-for-the-future-proposed-scope-and-mockups/\">more complete mockups</a> and a plan to move forward.</li><li>The Theme Review Team decided to terminate the Trusted Authors program for a number of reasons <a href=\"https://make.wordpress.org/themes/2019/08/14/trusted-author-program-a-year-of-its-journey/\">outlined in the announcement post</a>.</li><li>The Design Team is taking a look at <a href=\"https://make.wordpress.org/design/2019/08/28/discussion-about-the-about-page/\">how they can improve the About page</a> in future WordPress releases.</li><li>This month saw <a href=\"https://make.wordpress.org/cli/2019/08/14/wp-cli-release-v2-3-0/\">the release of v2.3 of WP-CLI</a>, including a number of new commands and improvements.</li><li>WordCamp websites can now make use of <a href=\"https://make.wordpress.org/community/2019/08/19/wordcamp-blocks-are-live/\">custom blocks in the block editor</a> for crafting their content.</li><li>The Mobile Team are looking for testers for the v13.2 release of the <a href=\"https://make.wordpress.org/mobile/2019/08/27/call-for-testing-wordpress-for-android-13-2/\">Android</a> and <a href=\"https://make.wordpress.org/mobile/2019/08/29/call-for-testing-wordpress-for-ios-13-2/\">iOS</a> apps.</li><li>The WordCamp Asia team <a href=\"https://2020.asia.wordcamp.org/2019/08/20/wordcamp-asia-logo-a-design-journey\">published an interesting look</a> at the journey they took to design the event logo.</li><li><a href=\"https://make.wordpress.org/community/2019/08/26/call-for-volunteers-2020-global-sponsorship-working-group/\">A working group of volunteers is being formed</a> to work out the details for the Global Sponsorship Program in 2020.</li><li>In an effort to increase the accessibility of available WordPress themes, the Theme Review Team now requires that <a href=\"https://make.wordpress.org/themes/2019/08/03/planning-for-keyboard-navigation/\">all themes include keyboard navigation</a>.</li></ul>\n\n\n\n<p><em>Have a story that we should include in the next “Month in WordPress” post? Please </em><a href=\"https://make.wordpress.org/community/month-in-wordpress-submissions/\"><em>submit it here</em></a><em>.</em></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"7059\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:4;a:6:{s:4:\"data\";s:51:\"\n		\n		\n				\n		\n				\n		\n\n		\n				\n								\n										\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"People of WordPress: Amanda Rush\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:67:\"https://wordpress.org/news/2019/08/people-of-wordpress-amanda-rush/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 09 Aug 2019 21:23:23 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:9:\"heropress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:10:\"Interviews\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=7047\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:373:\"You’ve probably heard that WordPress is open source software, and may know that it’s created and run by volunteers. WordPress enthusiasts share many examples of how WordPress changed people’s lives for the better. This monthly series shares some of those lesser-known, amazing stories. Meet Amanda Rush from Augusta, Georgia, USA. Amanda Rush is a WordPress [&#8230;]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:16:\"Yvette Sonneveld\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:6543:\"\n<p><em>You’ve probably heard that WordPress is open source software, and may know that it’s created and run by volunteers. WordPress enthusiasts share many examples of how WordPress changed people’s lives for the better. This monthly series shares some of those lesser-known, amazing stories.</em></p>\n\n\n\n<h2><strong>Meet Amanda Rush from Augusta, Georgia, USA.</strong></h2>\n\n\n\n<p>Amanda Rush is a WordPress advocate with a visual disability. She first started using computers in 1985, which enabled her to turn in homework to her sighted teachers. Screen reader technology for Windows was in its infancy then, so she worked in DOS almost exclusively.</p>\n\n\n\n<p>After graduating high school, Amanda went to college to study computer science, programming with DOS-based tools since compilers for Windows were still inaccessible. As part of her computer science course of study, she learned HTML which began her career in web development.</p>\n\n\n\n<h2>How Amanda got started with WordPress</h2>\n\n\n\n<p>Amanda began maintaining a personal website, and eventually began publishing her own content using LiveJournal. However, controlling the way the page around her content looked was hard, and she soon outgrew the hosted solution.</p>\n\n\n\n<p>So in 2005, Amanda bought customerservant.com, set up a very simple CMS for blogging, and started publishing there. She accepted the lack of design and content, and lack of easy customization because she wasn’t willing to code her own solution. Nor did she want to move to another hosted solution, as she liked being able to customize her own site, as well as publish content.</p>\n\n\n\n<h3><strong>Hebrew dates led her to WordPress</strong></h3>\n\n\n\n<p>At some point, Amanda was looking for an easy way to display the Hebrew dates alongside the Gregorian dates on her blog entries. Unfortunately, the blogging software she was using at the time, did not offer customization options at that level. She decided to research alternative solutions and came across a WordPress plugin that did just that.&nbsp;</p>\n\n\n\n<p>The fact that WordPress would not keep her locked into a visual editor, used themes to customize styling, and offered ways to mark up content, immediately appealed to Amanda. She decided to give it a go.</p>\n\n\n\n<h3><strong>Accessibility caused her to dive deeper</strong></h3>\n\n\n\n<p>When the software Amanda used at work became completely inaccessible, she started learning about WordPress. While she was learning about this new software, <a href=\"https://en.wikipedia.org/wiki/Web_2.0\">Web 2.0</a> was introduced. The lack of support for it in the screen reader she used meant that WordPress administration was completely inaccessible. To get anything done, Amanda needed to learn to find her way in WordPress’ file structure.</p>\n\n\n\n<p>Eventually Amanda started working as an independent contractor for the largest screen reader developer in the market, Freedom Scientific. She worked from home every day and hacked on WordPress after hours.</p>\n\n\n\n<p>Unfortunately Amanda hit a rough patch when her job at Freedom Scientific ended. Using her savings she undertook further studies for various Cisco and Red Hat certifications, only to discover that the required testing for these certifications were completely inaccessible. She could study all she wanted, but wasn’t able to receive grades to pass the courses.</p>\n\n\n\n<p>She lost her financial aid, her health took a turn for the worse, she was diagnosed with Lupus, and lost her apartment. Amanda relocated to Augusta where she had supportive friends who offered her a couch and a roof over her head.</p>\n\n\n\n<h3><strong>But Amanda refused to give up</strong></h3>\n\n\n\n<p>Amanda continued to hack WordPress through all of this. It was the only stable part of her life. She wanted to help make WordPress accessible for people with disabilities, and in 2012 joined the&nbsp; WordPress Accessibility Team. Shortly after that, she finally got her own place to live, and started thinking about what she was going to do with the rest of her working life.</p>\n\n\n\n<p>Listening to podcasts led her to take part in <a href=\"http://wordsesh.org/\">WordSesh</a>, which was delivered completely online and enabled Amanda to participate without needing to travel. She began to interact with WordPress people on Twitter, and continued to contribute to the community as part of the WordPress Accessibility Team. Things had finally started to pick up.</p>\n\n\n\n<h2><strong>Starting her own business</strong></h2>\n\n\n\n<p>In 2014, Amanda officially launched her own business, <a href=\"http://www.customerservant.com/\">Customer Servant Consultancy</a>. Since WordPress is open source, and becoming increasingly accessible, Amanda could modify WordPress to build whatever she wanted and not be at the mercy of web and application developers who know nothing about accessibility. And if she got stuck, she could tap into the community and its resources.</p>\n\n\n\n<p>Improving her circumstances and becoming more self-sufficient means Amanda was able to take back some control over her life in general. She was able to gain independence and create her own business despite being part of the blind community, which has an 80% unemployment rate.&nbsp;</p>\n\n\n\n<p>In her own words:</p>\n\n\n\n<blockquote class=\"wp-block-quote\"><p><em>We’re still fighting discrimination in the workplace, and we’re still fighting for equal access when it comes to the technology we use to do our jobs. But the beauty of WordPress and its community is that we can create opportunities for ourselves.</em></p><p><em>I urge my fellow blind community members to join me inside this wonderful thing called WordPress. Because it will change your lives if you let it.</em></p><cite>Amanda Rush, entrepreneur</cite></blockquote>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<div class=\"wp-block-image\"><figure class=\"alignleft is-resized\"><img src=\"https://i0.wp.com/wordpress.org/news/files/2019/07/heropress_large_white_logo-1.jpg?fit=632%2C474&amp;ssl=1\" alt=\"\" class=\"wp-image-7026\" width=\"110\" height=\"83\" /></figure></div>\n\n\n\n<p><em>This post is based on an article originally published on HeroPress.com, a community initiative created by <a href=\"https://profiles.wordpress.org/topher1kenobe/\">Topher DeRosia</a>. HeroPress highlights people in the WordPress community who have overcome barriers and whose stories would otherwise go unheard.</em></p>\n\n\n\n<p><em>Meet more WordPress community members over at </em><a href=\"https://heropress.com/\"><em>HeroPress.com</em></a><em>!</em></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"7047\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:5;a:6:{s:4:\"data\";s:48:\"\n		\n		\n				\n		\n				\n\n		\n				\n								\n										\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"The Month in WordPress: July 2019\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:68:\"https://wordpress.org/news/2019/08/the-month-in-wordpress-july-2019/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 01 Aug 2019 09:56:05 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:18:\"Month in WordPress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=7040\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:336:\"This month has been characterized by exciting plans and big announcements &#8211; read on to find out what they are and what it all means for the future of the WordPress project. WordCamp Asia Announced The inaugural WordCamp Asia will be in Bangkok, Thailand, on February 21-23, 2020. This will be the first regional WordCamp [&#8230;]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:15:\"Hugh Lashbrooke\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:6983:\"\n<p>This month has been characterized by exciting plans and big announcements &#8211; read on to find out what they are and what it all means for the future of the WordPress project.</p>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<h2>WordCamp Asia Announced</h2>\n\n\n\n<p>The inaugural WordCamp Asia will be in Bangkok, Thailand, on February 21-23, 2020. This will be the first regional WordCamp in Asia and it comes after many years of discussions and planning. You can find more information about the event <a href=\"https://2020.asia.wordcamp.org/\">on their website</a> and subscribe to stay up to date with the latest information.</p>\n\n\n\n<p>This is the latest flagship event in the WordCamp program, following WordCamps Europe and US. Tickets <a href=\"https://2020.asia.wordcamp.org/tickets/\">are now on sale</a> and the <a href=\"https://2020.asia.wordcamp.org/call-for-speakers/\">call for speakers</a> is open. Want to get involved in WordCamp Asia? Keep an eye out for volunteer applications, or buy a micro sponsor ticket. You can also join the #wcasia channel in <a href=\"https://make.wordpress.org/chat/\">the Making WordPress Slack group</a> for updates.</p>\n\n\n\n<h2>WordCamp US Planning Continues</h2>\n\n\n\n<p>The WordCamp US organizing team is excited to announce some new additions to this year’s WCUS in St. Louis, Missouri, on November 1-3, 2019. The first is that there will be an onsite KidsCamp: child-friendly lessons that introduce your young one(s) to the wonderful world of WordPress.&nbsp; <a href=\"https://2019.us.wordcamp.org/kidscamp/\">You can register your child for KidsCamp here</a>. In addition, free, onsite childcare will be provided at this year’s event &#8211; <a href=\"https://2019.us.wordcamp.org/child-care/\">you can sign up here</a>.</p>\n\n\n\n<p>Looking for further ways to get involved? The <a href=\"https://2019.us.wordcamp.org/call-for-volunteers-form/\">call for volunteers is now open</a>. For more information on WordCamp US, <a href=\"https://2019.us.wordcamp.org/\">please visit the event website</a>.</p>\n\n\n\n<h2>Exploring Updates to the WordPress User &amp; Developer Survey</h2>\n\n\n\n<p>To improve the annual WordPress User &amp; Developer Survey, <a href=\"https://make.wordpress.org/updates/2019/06/28/updates-to-the-wordpress-user-developer-survey/\">a call has been made</a> for updates and additional questions that can help us all better understand how people use WordPress.</p>\n\n\n\n<p>To improve the survey, contributor teams are suggesting topics and information that should be gathered to inform contributor work in 2020. Please add your feedback <a href=\"https://make.wordpress.org/updates/2019/06/28/updates-to-the-wordpress-user-developer-survey/\">to the post</a>.</p>\n\n\n\n<h2>Gutenberg Usability Testing Continues</h2>\n\n\n\n<p>Usability tests for Gutenberg continued through June 2019, and <a href=\"https://make.wordpress.org/test/2019/07/10/gutenberg-usability-testing-for-june-2019/\">insights from three recent videos were published</a> last month. This month’s test was similar to WordCamp Europe’s usability tests, and you can read more about those in the <a href=\"https://make.wordpress.org/test/2019/07/05/wceu-usability-test-results-part-one/\">part one</a> and <a href=\"https://make.wordpress.org/test/2019/07/09/wceu-usability-test-results-part-two/\">part two</a> posts. Please help by watching these videos and sharing your observations as comments on the relevant post.</p>\n\n\n\n<p>If you want to help with usability testing, you can also join the #research channel in <a href=\"https://make.wordpress.org/chat/\">the Making WordPress Slack group</a>, or you can write a test script that can be usability tested for Gutenberg.</p>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<h2>Further Reading:</h2>\n\n\n\n<ul><li><a href=\"https://make.wordpress.org/updates/2019/07/23/proposal-a-wordpress-advisory-board/\">A proposal has been made</a> to put together a nominated WordPress Advisory Board &#8211; this is certainly an exciting development for the project.</li><li>The Design team <a href=\"https://make.wordpress.org/design/2019/06/28/wceu-contribution-day-recap-design-team/\">reported on the work they did</a> at the WordCamp Europe Contributor Day.</li><li>The Theme Review Team <a href=\"https://make.wordpress.org/themes/2019/07/22/theme-sniffer-v1-1-0-and-wpthemereview-v0-2-0-release/\">has released updated versions</a> of their ThemeSniffer tool and coding standards.</li><li>The Security team <a href=\"https://make.wordpress.org/core/2019/07/29/should-security-fixes-continue-to-be-backported-to-very-old-versions-of-wordpress/\">is looking for feedback</a> on whether security fixes should continue to be backported to very old versions of WordPress. </li><li>The Design and Community teams have worked together to come up with <a href=\"https://make.wordpress.org/community/2019/07/29/proposal-clearer-wordcamp-and-wordpress-chapter-meetup-logo-guidelines/\">official guidelines for how WordCamp logos should be designed</a>.</li><li>The Core team has implemented <a href=\"https://make.wordpress.org/core/2019/07/12/php-coding-standards-changes/\">a few changes</a> to the PHP coding standards within WordPress Core.</li><li>The Community Team <a href=\"https://make.wordpress.org/community/2019/07/26/discussion-what-to-do-in-case-of-irreconcilable-differences/\">is looking for feedback</a> on a tough decision that needs to be made regarding the implementation of the licence expectations within the meetup program.</li><li>The Design team <a href=\"https://make.wordpress.org/design/2019/07/11/block-directory-in-wp-admin-concepts/\">has presented some designs</a> for a Block Directory within the WordPress dashboard.</li><li>A recent release of WordPress saw an increase in the minimum required version of PHP &#8211; the Core team is now looking at <a href=\"https://make.wordpress.org/core/2019/07/29/proposal-for-increasing-recommended-php-version-in-wordpress/\">increasing that minimum further</a>.</li><li>The Site Health feature was first introduced in the 5.1 release of WordPress, and at WordCamp Europe this year <a href=\"https://make.wordpress.org/core/2019/07/01/new-core-component-site-health/\">a new Core component for the feature was added to the project structure</a>.</li><li>The Community Team has posted some interesting data regarding <a href=\"https://make.wordpress.org/community/2019/07/29/numbers-in-the-netherlands/\">WordCamps in the Netherlands</a> over the last few years, as well as <a href=\"https://make.wordpress.org/community/2019/07/31/wordcamps-in-2018/\">WordCamps in 2018</a>.</li><li>The WordCamp Europe team <a href=\"https://2019.europe.wordcamp.org/2019/07/15/survey-results/\">released the results of the attendee survey</a> from this year&#8217;s event in Berlin.</li></ul>\n\n\n\n<p><em>Have a story that we should include in the next “Month in WordPress” post? Please </em><a href=\"https://make.wordpress.org/community/month-in-wordpress-submissions/\"><em>submit it here</em></a><em>.</em></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"7040\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:6;a:6:{s:4:\"data\";s:51:\"\n		\n		\n				\n		\n				\n		\n\n		\n				\n								\n										\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"People of WordPress: Ugyen Dorji\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:67:\"https://wordpress.org/news/2019/07/people-of-wordpress-ugyen-dorji/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 12 Jul 2019 17:20:27 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:9:\"heropress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:10:\"Interviews\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=7013\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:386:\"You&#8217;ve probably heard that WordPress is open source software, and may know that it&#8217;s created and run by volunteers. WordPress enthusiasts share many examples of how WordPress changed people&#8217;s lives for the better. This monthly series shares some of those lesser-known, amazing stories. Meet Ugyen Dorji from Bhutan Ugyen lives in Bhutan, a landlocked country [&#8230;]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"Aditya Kane\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:7264:\"\n<p><em>You&#8217;ve probably heard that WordPress is open source software, and may know that it&#8217;s created and run by volunteers. WordPress enthusiasts share many examples of how WordPress changed people&#8217;s lives for the better. This monthly series shares some of those lesser-known, amazing stories.</em></p>\n\n\n\n<h2><strong>Meet Ugyen Dorji from Bhutan</strong></h2>\n\n\n\n<p>Ugyen lives in <a href=\"https://en.wikipedia.org/wiki/Bhutan\">Bhutan</a>, a landlocked country situated between two giant neighbors, India to the south and China to the north. He works for ServMask Inc and is responsible for the Quality Assurance process for All-in-One WP Migration plugin. <br><br>He believes in the Buddhist teaching that “the most valuable service is one rendered to our fellow humans,” and his contributions demonstrates this through his WordPress translation work and multi-lingual support projects for WordPress.</p>\n\n\n\n<figure class=\"wp-block-image\"><img src=\"https://i2.wp.com/wordpress.org/news/files/2019/07/60340743_2330687777177099_8058690662683377664_o.jpg?fit=632%2C474&amp;ssl=1\" alt=\"\" class=\"wp-image-7023\" srcset=\"https://i2.wp.com/wordpress.org/news/files/2019/07/60340743_2330687777177099_8058690662683377664_o.jpg?w=1728&amp;ssl=1 1728w, https://i2.wp.com/wordpress.org/news/files/2019/07/60340743_2330687777177099_8058690662683377664_o.jpg?resize=300%2C225&amp;ssl=1 300w, https://i2.wp.com/wordpress.org/news/files/2019/07/60340743_2330687777177099_8058690662683377664_o.jpg?resize=768%2C576&amp;ssl=1 768w, https://i2.wp.com/wordpress.org/news/files/2019/07/60340743_2330687777177099_8058690662683377664_o.jpg?resize=1024%2C768&amp;ssl=1 1024w, https://i2.wp.com/wordpress.org/news/files/2019/07/60340743_2330687777177099_8058690662683377664_o.jpg?w=1264&amp;ssl=1 1264w\" sizes=\"(max-width: 632px) 100vw, 632px\" /><figcaption>Bhutanese contributors to the Dzongkha locale on WordPress Translation Day</figcaption></figure>\n\n\n\n<h2><strong>How Ugyen started his career with WordPress</strong></h2>\n\n\n\n<p>Back in 2016, Ugyen was looking for a new job after his former cloud company ran into financial difficulties.</p>\n\n\n\n<p>During one interview he was asked many questions about WordPress and, although he had a basic understanding of WordPress, he struggled to give detailed answers. After that interview he resolved to develop his skills and learn as much about WordPress as he could.&nbsp;</p>\n\n\n\n<p>A few months passed and he received a call from ServMask Inc, who had developed a plugin called All-in-One WP Migration. They offered him a position, fulfilling his wish to work with WordPress full-time. And because of that, Ugyen is now an active contributor to the WordPress community.</p>\n\n\n\n<h3><strong>WordCamp Bangkok 2018</strong></h3>\n\n\n\n<p>WordCamp Bangkok 2018 was a turning point event for Ugyen. WordCamps are a great opportunity to meet WordPress community members you don’t otherwise get to know, and he was able to attend his first WordCamp through the sponsorship of his company.</p>\n\n\n\n<p>The first day of WordCamp Bangkok was a Contributor Day, where people volunteer to work together to contribute to the development of WordPress. Ugyen joined the Community team to have conversations with WordPress users from all over the world. He was able to share his ideas for supporting new speakers, events and organizers to help build the WordPress community in places where it is not yet booming.</p>\n\n\n\n<p>During the main day of the event, Ugyen managed a photo booth for speakers, organizers, and attendees to capture their memories of WordCamp.&nbsp;He also got to take some time out to attend several presentations during the conference. What particularly stuck in Ugyen’s mind was learning that having a website content plan has been shown to lead to 100% growth in business development.</p>\n\n\n\n<h3>Co-Organizing<strong> Thimphu</strong>&#8216;s <strong>WordPress Meetup</strong></h3>\n\n\n\n<p>After attending WordCamp Bangkok 2018 as well as a local Meetup event, Ugyen decided to&nbsp;introduce WordPress to his home country and cities.&nbsp;</p>\n\n\n\n<p>As one of the WordPress Translation Day organizers, he realized that his local language, Dzongkha, was not as fully translated as other languages in the WordPress Core Translation. That is when Ugyen knew that he wanted to help build his local community. He organized Thimphu’s first WordPress Meetup to coincide with WordPress Translation Day 4, and it was a huge success!</p>\n\n\n\n<p>Like all WordPress Meetups, the Thimpu WordPress Meetup is an easygoing, volunteer-organized, non-profit meetup which covers everything related to WordPress. But it also keeps in mind the <a href=\"https://en.wikipedia.org/wiki/Gross_National_Happiness\">Bhutanese Gross National Happiness</a> four pillars by aiming to preserve and promote their unique culture and national language.&nbsp;</p>\n\n\n\n<h2><strong>Big dreams get accomplished one step at a time</strong></h2>\n\n\n\n<p>Ugyen has taken an active role in preserving his national language by encouraging his community to use WordPress, including Dzongkha bloggers, online Dzongkha news outlets, and government websites.</p>\n\n\n\n<p>And while Ugyen has only been actively involved in the community for a short period, he has contributed much to the WordPress community, including:</p>\n\n\n\n<ul><li>becoming a Translation Contributor for WordPress Core Translation for Dzongkha;</li><li>participating in the <a href=\"https://wptranslationday.org/\">Global WordPress Translation Day 4</a> Livestream and organizing team;</li><li>inviting WordPress Meetup Thimphu members and WordPress experts from other countries to join the <a href=\"https://wpbhutan.slack.com/\">local Slack instance</a>;</li><li>encouraging ServMask Inc. to become an event sponsor;</li><li>providing the Dzongkha Development Commission the opportunity to involve their language experts.</li></ul>\n\n\n\n<p>When it comes to WordPress, Ugyen particularly focuses on encouraging local and international language WordPress bloggers;&nbsp;helping startups succeed with WordPress;&nbsp;and sharing what he has learned from WordPress with his Bhutanese WordPress community.</p>\n\n\n\n<p>As a contributor, Ugyen hopes to accomplish even more for the Bhutan and Asian WordPress Communities. His dreams for his local community are big, including teaching more people about open source, hosting a local WordCamp, and helping to organize WordCamp Asia in 2020 &#8212; all while raising awareness of his community.</p>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<div class=\"wp-block-image\"><figure class=\"alignleft is-resized\"><img src=\"https://i0.wp.com/wordpress.org/news/files/2019/07/heropress_large_white_logo-1.jpg?fit=632%2C474&amp;ssl=1\" alt=\"\" class=\"wp-image-7026\" width=\"110\" height=\"83\" /></figure></div>\n\n\n\n<p><em>This post is based on an article originally published on HeroPress.com, a community initiative created by <a href=\"https://profiles.wordpress.org/topher1kenobe/\">Topher DeRosia</a>. HeroPress highlights people in the WordPress community who have overcome barriers and whose stories would otherwise go unheard.</em></p>\n\n\n\n<p><em>Meet more WordPress community members over at </em><a href=\"https://heropress.com/\"><em>HeroPress.com</em></a><em>!</em></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"7013\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:7;a:6:{s:4:\"data\";s:48:\"\n		\n		\n				\n		\n				\n\n		\n				\n								\n										\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"The Month in WordPress: June 2019\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:68:\"https://wordpress.org/news/2019/07/the-month-in-wordpress-june-2019/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 01 Jul 2019 10:07:42 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:18:\"Month in WordPress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=7009\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:337:\"June has certainly been a busy month in the WordPress community — aside from holding the largest WordPress event ever, the project has hit a number of significant milestones and published some big announcements this past month. A Wrap for WordCamp Europe 2019 WordCamp Europe 2019 took place on June 20-22. It was the largest [&#8230;]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:15:\"Hugh Lashbrooke\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:8174:\"\n<p>June has certainly been a busy month in the WordPress community — aside from holding the largest WordPress event ever, the project has hit a number of significant milestones and published some big announcements this past month.</p>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<h2>A Wrap for WordCamp Europe 2019</h2>\n\n\n\n<p>WordCamp Europe 2019 took place on June 20-22. It was the largest WordPress event ever, with 3,260 tickets sold and 2,734 attendees. The attendees came from 97 different countries and 1,722 of them had never attended WordCamp Europe before.</p>\n\n\n\n<p>The event featured 60 speakers who delivered talks and workshops on a variety of topics over two conference days, most notably <a href=\"https://profiles.wordpress.org/matt/\">Matt Mullenweg</a>’s keynote that included an update on the current status of WordPress Core development, along with a lively Q&amp;A session. The full session from the live stream is <a href=\"https://youtu.be/UE18IsncB7s?t=13033\">available to watch online</a>.</p>\n\n\n\n<p>For its eighth year, <a href=\"https://2019.europe.wordcamp.org/2019/06/25/wordcamp-europe-2020/\">WordCamp Europe will take place in Porto, Portugal</a>. The 2020 edition of the event will be held on June 4-6. If you would like to get involved with WordCamp Europe next year, fill out <a href=\"https://2020.europe.wordcamp.org/2019/06/22/call-for-organisers/\">the organizer application form</a>.&nbsp;</p>\n\n\n\n<h2>Proposal for XML Sitemaps in WordPress Core</h2>\n\n\n\n<p><a href=\"https://make.wordpress.org/core/2019/06/12/xml-sitemaps-feature-project-proposal/\">A proposal this month</a> suggested bringing XML sitemap generation into WordPress Core. This is a feature that has traditionally been handled by plugins, which has resulted in many different implementations across different sites. It also means that many sites do not have XML sitemaps, which can be a problem because they are hugely important to having your site correctly indexed by search engines.</p>\n\n\n\n<p>The proposal details how core sitemaps would be structured and how the team would build them, as well as what aspects of WordPress would not be considered appropriate information to be included.</p>\n\n\n\n<p>Want to get involved in building this feature? Comment on <a href=\"https://make.wordpress.org/core/2019/06/12/xml-sitemaps-feature-project-proposal/\">the proposal</a>, follow <a href=\"https://make.wordpress.org/core/\">the Core team blog</a>, and join the #core channel in <a href=\"https://make.wordpress.org/chat/\">the Making WordPress Slack group</a>.</p>\n\n\n\n<h2>Translation Milestone for the Spanish Community</h2>\n\n\n\n<p><a href=\"https://twitter.com/wp_es/status/1138015568563441665\">The WordPress community of Spain has worked hard</a> to make <a href=\"https://translate.wordpress.org/locale/es/\">the es_ES locale</a> the first in the world to fully localize all of WordPress Core along with all Meta projects, apps, and the top 200 plugins. This is made possible by having the largest translation team out of any locale, consisting of 2,951 individual contributors.</p>\n\n\n\n<p>Want to get involved in translating WordPress into our locale? Find your locale on <a href=\"https://translate.wordpress.org/\">the translation platform</a>, follow <a href=\"https://make.wordpress.org/polyglots/\">the Polyglots team blog</a>, and join the #polyglots channel in <a href=\"https://make.wordpress.org/chat/\">the Making WordPress Slack group</a>.</p>\n\n\n\n<h2>WordPress 5.2.2 Maintenance Release</h2>\n\n\n\n<p>On June 18, <a href=\"https://wordpress.org/news/2019/06/wordpress-5-2-2-maintenance-release/\">v5.2.2 of WordPress was released</a> as a maintenance release, fixing 13 bugs and improving the Site Health feature that was first published in v5.2. If your site has not already been automatically updated to this version, you can <a href=\"https://wordpress.org/download/\">download the update</a> or manually check for updates in your WordPress dashboard. Thanks to <a href=\"https://profiles.wordpress.org/audrasjb/\">JB Audras</a>, <a href=\"https://profiles.wordpress.org/justinahinon/\">Justin Ahinon</a>, and <a href=\"https://profiles.wordpress.org/marybaum/\">Mary Baum</a> for co-leading this release, as well as the 30 other individuals who contributed to it.</p>\n\n\n\n<p>Want to get involved in building WordPress Core? Follow <a href=\"https://make.wordpress.org/core/\">the Core team blog</a>, and join the #core channel in <a href=\"https://make.wordpress.org/chat/\">the Making WordPress Slack group</a>.</p>\n\n\n\n<h2>Full End to End Tests for WordPress Core</h2>\n\n\n\n<p>On June 27, <a href=\"https://make.wordpress.org/core/2019/06/27/introducing-the-wordpress-e2e-tests/\">e2e (end to end) testing was introduced</a> to WordPress and included in the continuous integration pipeline. E2e testing, which has been successfully used by Gutenberg, is used to simulate real user scenarios and validate process flows. Currently, the setup requires <a href=\"https://docs.docker.com/install/\">Docker</a> to run, and a number of e2e test utilities are already available in the&nbsp; <a href=\"https://github.com/WordPress/gutenberg/tree/master/packages/e2e-test-utils/src\">@wordpress/e2e-test-utils</a> package, in the Gutenberg repository.&nbsp;</p>\n\n\n\n<p>Want to use this feature? The more tests that are added, the more stable future releases will be! Follow the <a href=\"https://make.wordpress.org/core/\">the Core team blog</a>, and join the #core-js channel in <a href=\"https://make.wordpress.org/chat/\">the Making WordPress Slack group</a>.</p>\n\n\n\n<h2>Feature Packages from the Theme Review Team</h2>\n\n\n\n<p>Following a <a href=\"https://make.wordpress.org/themes/2019/06/07/proposal-theme-feature-repositories/\">proposal for theme feature repositories</a>, an <a href=\"https://make.wordpress.org/themes/2019/06/24/feature-packages-update/\">update to the features package was announced</a>. Two new packages have been created that require code review and testing. The first is an Autoload Package, a foundational package for theme developers who are not currently using Composer (although <a href=\"https://getcomposer.org/\">Composer</a> is recommended instead of this package). The second is a Customizer Section Button Package that allows theme authors to create a link/button to any URL.</p>\n\n\n\n<p>There are other proposed ideas for packages that require feedback and additional discussion. Want to add your suggestions and thoughts? Join the conversation on the <a href=\"https://make.wordpress.org/themes/2019/06/24/feature-packages-update/\">Theme Review team blog</a> and join the #themereview channel in <a href=\"https://make.wordpress.org/chat/\">the Making WordPress Slack group</a>.</p>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<h2>Further Reading:</h2>\n\n\n\n<ul><li>Development continues on the Gutenberg project, with <a href=\"https://make.wordpress.org/core/2019/06/26/whats-new-in-gutenberg-26th-june/\">the latest release</a> including layouts for the Columns block, Snackbar notices, markup improvements, and accessibility upgrades.</li><li>The Community team <a href=\"https://make.wordpress.org/community/2019/06/26/wordcamp-europe-2019-recap-of-community-team-activities-at-contributor-day-plans-for-the-future/\">published the results of their work</a> at the WordCamp Europe contributor day.</li><li>The Polyglots team <a href=\"https://make.wordpress.org/polyglots/2019/06/26/proposal-for-handling-pte-requests/\">has put together a proposal</a> for a new way to handle PTE requests.</li><li>This year’s recipient of the Kim Parsell Memorial Scholarship for WordCamp US <a href=\"https://wordpressfoundation.org/2019/2019-kim-parsell-memorial-scholarship-recipient-carol-gann/\">is Carol Gann</a>.</li><li>The Amurrio WordPress community <a href=\"http://wpamurrio.es/wordpress-amurrio-mega-meetup-i-edition/\">hosted their first “mega meetup”</a> &#8211; this is a great event format that bridges the gap between regular meetup event and WordCamp.</li></ul>\n\n\n\n<p><em>Have a story that we should include in the next “Month in WordPress” post? Please </em><a href=\"https://make.wordpress.org/community/month-in-wordpress-submissions/\"><em>submit it here</em></a><em>.</em></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"7009\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:8;a:6:{s:4:\"data\";s:48:\"\n		\n		\n				\n		\n				\n\n		\n				\n								\n										\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"WordPress 5.2.2 Maintenance Release\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:71:\"https://wordpress.org/news/2019/06/wordpress-5-2-2-maintenance-release/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 18 Jun 2019 18:14:34 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=6993\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:348:\"WordPress 5.2.2 is now available! This maintenance release fixes 13 bugs and adds a little bit of polish to the Site Health feature&#160;that made its debut in 5.2. For more info, browse the&#160;full list of changes on Trac or check out the Version 5.2.2 documentation page. WordPress 5.2.2 is a short-cycle maintenance release. The next [&#8230;]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:9:\"Mary Baum\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:3961:\"\n<p>WordPress 5.2.2 is now available! This maintenance release fixes 13 bugs and adds a little bit of polish to the Site Health feature&nbsp;<a href=\"https://wordpress.org/news/2019/05/jaco/\">that made its debut in 5.2</a>. </p>\n\n\n\n<p>For more info, browse the&nbsp;<a href=\"https://core.trac.wordpress.org/query?status=closed&amp;resolution=fixed&amp;milestone=5.2.2&amp;order=priority\">full list of changes on Trac</a> or check out <a href=\"https://wordpress.org/support/wordpress-version/version-5-2-2/\">the Version 5.2.2 documentation page.</a></p>\n\n\n\n<p>WordPress 5.2.2 is a short-cycle maintenance release. The next major release will be version 5.3; check <a href=\"https://make.wordpress.org/core/\">make.wordpress.org/core</a> for details as they happen.  </p>\n\n\n\n<p>You can&nbsp;download&nbsp;<a href=\"https://wordpress.org/download/\">WordPress 5.2.2</a>&nbsp;or visit&nbsp;<strong>Dashboard → Updates</strong>&nbsp;and click&nbsp;<strong>Update Now</strong>. Sites that support automatic background updates have already started to update automatically.</p>\n\n\n\n<p><a href=\"https://profiles.wordpress.org/audrasjb/\">JB Audras</a>, <a href=\"https://profiles.wordpress.org/justinahinon/\">Justin Ahinon</a> and <a href=\"https://profiles.wordpress.org/marybaum/\">Mary Baum</a> co-led this release, with invaluable guidance from our Executive Director, Josepha Haden Chomphosy, and contributions from 30 other contributors. Thank you to everyone who made this release possible!</p>\n\n\n\n<p><a href=\"https://profiles.wordpress.org/afercia/\">Andrea Fercia</a>, <a href=\"https://profiles.wordpress.org/aduth/\">Andrew Duthie</a>, <a href=\"https://profiles.wordpress.org/azaozz/\">Andrew Ozz</a>, <a href=\"https://profiles.wordpress.org/afragen/\">Andy Fragen</a>, <a href=\"https://profiles.wordpress.org/birgire/\">Birgir Erlendsson (birgire)</a>, <a href=\"https://profiles.wordpress.org/chetan200891/\">Chetan Prajapati</a>, <a href=\"https://profiles.wordpress.org/davidbaumwald/\">David Baumwald</a>, <a href=\"https://profiles.wordpress.org/dkarfa/\">Debabrata Karfa</a>, <a href=\"https://profiles.wordpress.org/garrett-eclipse/\">Garrett Hyder</a>, <a href=\"https://profiles.wordpress.org/jankimoradiya/\">Janki Moradiya</a>, <a href=\"https://profiles.wordpress.org/audrasjb/\">Jb Audras</a>, <a href=\"https://profiles.wordpress.org/jitendrabanjara1991/\">jitendrabanjara1991</a>, <a href=\"https://profiles.wordpress.org/desrosj/\">Jonathan Desrosiers</a>, <a href=\"https://profiles.wordpress.org/spacedmonkey/\">Jonny Harris</a>, <a href=\"https://profiles.wordpress.org/jorgefilipecosta/\">Jorge Costa</a>, <a href=\"https://profiles.wordpress.org/justinahinon/\">Justin Ahinon</a>, <a href=\"https://profiles.wordpress.org/clorith/\">Marius L. J.</a>, <a href=\"https://profiles.wordpress.org/marybaum/\">Mary Baum</a>, <a href=\"https://profiles.wordpress.org/immeet94/\">Meet Makadia</a>, <a href=\"https://profiles.wordpress.org/dimadin/\">Milan Dinić</a>, <a href=\"https://profiles.wordpress.org/mukesh27/\">Mukesh Panchal</a>, <a href=\"https://profiles.wordpress.org/palmiak/\">palmiak</a>, <a href=\"https://profiles.wordpress.org/pedromendonca/\">Pedro Mendonça</a>, <a href=\"https://profiles.wordpress.org/peterwilsoncc/\">Peter Wilson</a>, <a href=\"https://profiles.wordpress.org/ramiy/\">Rami Yushuvaev</a>, <a href=\"https://profiles.wordpress.org/youknowriad/\">Riad Benguella</a>, <a href=\"https://profiles.wordpress.org/tinkerbelly/\">sarah semark</a>, <a href=\"https://profiles.wordpress.org/sergeybiryukov/\">Sergey Biryukov</a>, <a href=\"https://profiles.wordpress.org/shashank3105/\">Shashank Panchal</a>, <a href=\"https://profiles.wordpress.org/karmatosed/\">Tammie Lister</a>, <a href=\"https://profiles.wordpress.org/hedgefield/\">Tim Hengeveld</a>, <a href=\"https://profiles.wordpress.org/vaishalipanchal/\">vaishalipanchal</a>, <a href=\"https://profiles.wordpress.org/vrimill/\">vrimill</a>, and <a href=\"https://profiles.wordpress.org/earnjam/\">William Earnhardt</a></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"6993\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:9;a:6:{s:4:\"data\";s:48:\"\n		\n		\n				\n		\n				\n\n		\n				\n								\n										\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"The Month in WordPress: May 2019\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:67:\"https://wordpress.org/news/2019/06/the-month-in-wordpress-may-2019/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 04 Jun 2019 10:21:27 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:18:\"Month in WordPress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=6987\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:319:\"This month saw the 16th anniversary since the launch of the first release of WordPress. A significant milestone to be sure and one that speaks to the strength and stability of the project as a whole. In this anniversary month, we saw a new major release of WordPress, some exciting new development work, and a [&#8230;]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:15:\"Hugh Lashbrooke\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:6602:\"\n<p>This month saw the 16th anniversary since <a href=\"https://wordpress.org/news/2003/05/wordpress-now-available/\">the launch of the first release of WordPress</a>. A significant milestone to be sure and one that speaks to the strength and stability of the project as a whole. In this anniversary month, we saw a new major release of WordPress, some exciting new development work, and a significant global event.</p>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<h2>Release of WordPress 5.2</h2>\n\n\n\n<p>WordPress 5.2 “Jaco” <a href=\"https://wordpress.org/news/2019/05/jaco/\">was released on May 7</a> shipping some useful site management tools, such as the Site Health Check and PHP Error Protection, as well as a number of accessibility, privacy, and developer updates. You can read <a href=\"https://make.wordpress.org/core/2019/04/16/wordpress-5-2-field-guide/\">the field guide for this release</a> for more detailed information about what was included and how it all works.<br></p>\n\n\n\n<p>327 individual volunteers contributed to the release. If you would like to be a part of that number for future releases, follow <a href=\"https://make.wordpress.org/core\">the Core team blog</a> and join the #core channel in <a href=\"https://make.wordpress.org/chat/\">the Making WordPress Slack group</a>.</p>\n\n\n\n<h2>A Successful WordPress Translation Day 4</h2>\n\n\n\n<p>WordPress Translation Day is a 24-hour event organised by <a href=\"https://make.wordpress.org/polyglots/\">the Polyglots team</a> where community members from all over the world come together to translate WordPress into their local languages. For the fourth edition held on 11 May, 183 brand new contributors joined the Polyglots team from 77 communities across 35 countries in Africa, Asia, Europe, North America, South America, and Oceania.<br></p>\n\n\n\n<p>While the WP Translation Day is a great time for focussed contributions to localizing WordPress, but these contributions can happen at any time of the year, so if you would like to help make WordPress available in your local language, follow <a href=\"https://make.wordpress.org/polyglots\">the Polyglots team blog</a> and join the #polyglots channel in <a href=\"https://make.wordpress.org/chat/\">the Making WordPress Slack group</a>.</p>\n\n\n\n<h2>Updated Plugin Guidelines Proposal</h2>\n\n\n\n<p>The Plugins team <a href=\"https://make.wordpress.org/plugins/2019/05/14/proposal-to-modify-plugin-guidelines/\">has proposed some updates</a> to the guidelines for developers on the Plugin Directory. The majority of the proposed changes are intended to address significant issues faced by developers who do not speak English as a first language, making the Plugin DIrectory a more accessible and beneficial place for everyone.<br></p>\n\n\n\n<p>The proposal will be open for comments until late June, so the community is encouraged to get involved with commenting on them and the direction they will take the Plugin Directory. If you would like to be involved in this discussion, comment on <a href=\"https://make.wordpress.org/plugins/2019/05/14/proposal-to-modify-plugin-guidelines/\">the proposal</a> and join the #plugin review team in <a href=\"https://make.wordpress.org/chat/\">the Making WordPress Slack group</a>.</p>\n\n\n\n<h2>Continued Gutenberg Development</h2>\n\n\n\n<p>Since the block editor was first released as part of WordPress Core in v5.0, development has continued in leaps and bounds with a new release every two weeks. <a href=\"https://make.wordpress.org/core/2019/05/29/whats-new-in-gutenberg-29th-may/\">The latest update</a> includes some great incremental improvements that will be merged into the 5.2.2 release of WordPress along with the other recent enhancements.<br></p>\n\n\n\n<p>In addition to the editor enhancements, work has been ongoing in the Gutenberg project to bring the block editing experience to the rest of the WordPress dashboard. This second phase of the project has been going well and <a href=\"https://make.wordpress.org/design/2019/05/31/gutenberg-phase-2-friday-design-update-20/\">the latest update</a> shows how much work has been done so far.<br></p>\n\n\n\n<p>In addition to that, the Block Library project that aims to bring a searchable library of available blocks right into the editor is deep in the planning phase with <a href=\"https://make.wordpress.org/design/2019/05/28/block-library-initial-explorations/\">a recent update</a> showing what direction the team is taking things.<br></p>\n\n\n\n<p>If you would like to get involved in planning and development of Gutenberg and the block editor, follow the <a href=\"https://make.wordpress.org/core/\">Core</a> and <a href=\"https://make.wordpress.org/design/\">Design</a> team blogs and join the #core, #design, and #core-editor channels in <a href=\"https://make.wordpress.org/chat/\">the Making WordPress Slack group</a>.</p>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<h2>Further Reading:</h2>\n\n\n\n<ul><li>The 5.2.2 release of WordPress <a href=\"https://make.wordpress.org/core/2019/05/28/5-2-2-release-agenda/\">is currently in development</a> with a planned release date of 13 June.</li><li>Version 2.1.1 of the WordPress Coding Standards <a href=\"https://github.com/WordPress-Coding-Standards/WordPress-Coding-Standards/releases/tag/2.1.1\">has been released</a> containing seven small, but relevant fixes.</li><li>The Theme Review Team <a href=\"https://make.wordpress.org/themes/2019/05/07/trusted-authors-changes/\">have updated the details</a> of how the Trusted Authors Program works.</li><li><a href=\"https://make.wordpress.org/community/2019/05/29/who-wants-to-test-the-new-wordcamp-blocks/\">WordCamp-specific blocks have been launched for WordCamp sites</a> with organizers needing to sign up in order to test them out.</li><li>Continuing the growing trend of other platforms adopting the Gutenberg editor, it has now <a href=\"https://octobercms.com/plugin/reazzon-gutenberg\">been ported to a plugin for OctoberCMS</a>.</li><li>Version 3.0 of the popular WordPress development environment, Varying Vagrant Vagrants (VVV), <a href=\"https://varyingvagrantvagrants.org/blog/2019/05/15/vvv-3-0-0.html\">was released this month</a>.</li><li>The Community Team <a href=\"https://make.wordpress.org/community/2019/05/31/the-4-gets-in-wordpress-community-organizing/\">published some info</a> clarifying what organizers get (and don’t get) from being involved with their local communities. </li></ul>\n\n\n\n<p><em>Have a story that we should include in the next “Month in WordPress” post? Please </em><a href=\"https://make.wordpress.org/community/month-in-wordpress-submissions/\"><em>submit it here</em></a><em>.</em><br></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"6987\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}s:27:\"http://www.w3.org/2005/Atom\";a:1:{s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:3:{s:4:\"href\";s:32:\"https://wordpress.org/news/feed/\";s:3:\"rel\";s:4:\"self\";s:4:\"type\";s:19:\"application/rss+xml\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:44:\"http://purl.org/rss/1.0/modules/syndication/\";a:2:{s:12:\"updatePeriod\";a:1:{i:0;a:5:{s:4:\"data\";s:9:\"\n	hourly	\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:15:\"updateFrequency\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"\n	1	\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:4:\"site\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"14607090\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}}}}}}s:4:\"type\";i:128;s:7:\"headers\";O:42:\"Requests_Utility_CaseInsensitiveDictionary\":1:{s:7:\"\0*\0data\";a:9:{s:6:\"server\";s:5:\"nginx\";s:4:\"date\";s:29:\"Wed, 25 Sep 2019 03:42:42 GMT\";s:12:\"content-type\";s:34:\"application/rss+xml; charset=UTF-8\";s:25:\"strict-transport-security\";s:11:\"max-age=360\";s:6:\"x-olaf\";s:3:\"⛄\";s:13:\"last-modified\";s:29:\"Tue, 24 Sep 2019 07:18:19 GMT\";s:4:\"link\";s:63:\"<https://wordpress.org/news/wp-json/>; rel=\"https://api.w.org/\"\";s:15:\"x-frame-options\";s:10:\"SAMEORIGIN\";s:4:\"x-nc\";s:9:\"HIT ord 2\";}}s:5:\"build\";s:14:\"20130911163210\";}','no'),(647,'elementor_pro_tracker_notice','1','yes'),(648,'elementor_tracker_notice','1','yes'),(686,'temp_count','a:2:{s:10:\"header+nav\";s:10:\"header+nav\";s:17:\"header w/main nav\";s:17:\"header w/main nav\";}','yes'),(702,'elementor_fix_columns_alignment_default','enabled','yes'),(370,'widget_elementor-library','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(371,'_elementor_pro_installed_time','1567989465','yes'),(374,'elementor_fonts_manager_font_types','a:0:{}','yes'),(375,'elementor_fonts_manager_fonts','a:0:{}','yes'),(376,'elementor_scheme_color','a:4:{i:1;s:7:\"#6ec1e4\";i:2;s:7:\"#54595f\";i:3;s:7:\"#7a7a7a\";i:4;s:7:\"#61ce70\";}','yes'),(377,'elementor_scheme_typography','a:4:{i:1;a:2:{s:11:\"font_family\";s:0:\"\";s:11:\"font_weight\";s:0:\"\";}i:2;a:2:{s:11:\"font_family\";s:0:\"\";s:11:\"font_weight\";s:0:\"\";}i:3;a:2:{s:11:\"font_family\";s:0:\"\";s:11:\"font_weight\";s:0:\"\";}i:4;a:2:{s:11:\"font_family\";s:6:\"Risque\";s:11:\"font_weight\";s:3:\"500\";}}','yes'),(378,'elementor_scheme_color-picker','a:8:{i:1;s:7:\"#6ec1e4\";i:2;s:7:\"#54595f\";i:3;s:7:\"#7a7a7a\";i:4;s:7:\"#61ce70\";i:5;s:7:\"#4054b2\";i:6;s:7:\"#23a455\";i:7;s:4:\"#000\";i:8;s:4:\"#fff\";}','yes'),(379,'elementor_custom_icon_sets_config','a:0:{}','yes'),(382,'elementor_connect_site_key','dcdbe3ef835fa0577b3f0e767e41bb75','yes'),(383,'elementor_pro_license_key','7fd623de131d2971fcff737f2083c18c','yes'),(384,'nav_menu_options','a:2:{i:0;b:0;s:8:\"auto_add\";a:0:{}}','yes'),(394,'elementor_elements_usage','a:2:{s:4:\"post\";a:20:{s:6:\"column\";i:73;s:7:\"section\";i:57;s:8:\"template\";i:1;s:7:\"heading\";i:47;s:5:\"image\";i:18;s:14:\"media-carousel\";i:3;s:6:\"button\";i:2;s:11:\"testimonial\";i:1;s:8:\"icon-box\";i:4;s:20:\"testimonial-carousel\";i:1;s:4:\"form\";i:1;s:12:\"social-icons\";i:1;s:13:\"image-gallery\";i:1;s:9:\"portfolio\";i:1;s:14:\"image-carousel\";i:1;s:8:\"nav-menu\";i:1;s:7:\"divider\";i:10;s:11:\"text-editor\";i:14;s:5:\"video\";i:3;s:6:\"spacer\";i:5;}s:6:\"header\";a:4:{s:5:\"image\";i:2;s:6:\"column\";i:4;s:8:\"nav-menu\";i:2;s:7:\"section\";i:2;}}','yes'),(389,'elementor_pro_theme_builder_conditions','a:1:{s:6:\"header\";a:1:{i:302;a:1:{i:0;s:15:\"include/general\";}}}','yes'),(593,'_elementor_scheme_last_updated','1568474550','yes'),(780,'_site_transient_update_themes','O:8:\"stdClass\":4:{s:12:\"last_checked\";i:1569415252;s:7:\"checked\";a:5:{s:11:\"astra-child\";s:5:\"1.0.0\";s:5:\"astra\";s:5:\"2.0.1\";s:14:\"twentynineteen\";s:3:\"1.4\";s:15:\"twentyseventeen\";s:3:\"2.2\";s:13:\"twentysixteen\";s:3:\"2.0\";}s:8:\"response\";a:0:{}s:12:\"translations\";a:0:{}}','no'),(790,'elementor_library_category_children','a:0:{}','yes'),(557,'elementor_stretched_section_container','','yes'),(558,'elementor_page_title_selector','','yes'),(559,'elementor_viewport_lg','','yes'),(582,'elementor_load_fa4_shim','','yes'),(426,'pa_save_settings','a:23:{s:14:\"premium-banner\";i:0;s:12:\"premium-blog\";i:0;s:16:\"premium-carousel\";i:0;s:17:\"premium-countdown\";i:0;s:15:\"premium-counter\";i:0;s:19:\"premium-dual-header\";i:1;s:17:\"premium-fancytext\";i:0;s:23:\"premium-image-separator\";i:0;s:12:\"premium-maps\";i:0;s:16:\"premium-modalbox\";i:0;s:14:\"premium-person\";i:0;s:19:\"premium-progressbar\";i:0;s:20:\"premium-testimonials\";i:0;s:13:\"premium-title\";i:0;s:17:\"premium-templates\";i:0;s:16:\"premium-videobox\";i:0;s:21:\"premium-pricing-table\";i:0;s:14:\"premium-button\";i:0;s:19:\"premium-contactform\";i:0;s:20:\"premium-image-button\";i:0;s:12:\"premium-grid\";i:0;s:15:\"premium-vscroll\";i:1;s:20:\"premium-image-scroll\";i:0;}','yes'),(1184,'_transient_timeout_feed_mod_d117b5738fbd35bd8c0391cda1f2b5d9','1569426163','no'),(1185,'_transient_feed_mod_d117b5738fbd35bd8c0391cda1f2b5d9','1569382963','no'),(1186,'_transient_timeout_dash_v2_88ae138922fe95674369b1cb3d215a2b','1569426163','no'),(1187,'_transient_dash_v2_88ae138922fe95674369b1cb3d215a2b','<div class=\"rss-widget\"><ul><li><a class=\'rsswidget\' href=\'https://wordpress.org/news/2019/09/wordpress-5-3-beta-1/\'>WordPress 5.3 Beta 1</a></li></ul></div><div class=\"rss-widget\"><ul><li><a class=\'rsswidget\' href=\'https://wptavern.com/wordpress-5-3-to-introduce-new-admin-email-verification-screen\'>WPTavern: WordPress 5.3 to Introduce New Admin Email Verification Screen</a></li><li><a class=\'rsswidget\' href=\'https://wptavern.com/twenty-twenty-bundled-in-core-beta-features-overview\'>WPTavern: Twenty Twenty Bundled in Core, Beta Features Overview</a></li><li><a class=\'rsswidget\' href=\'https://buddypress.org/2019/09/an-online-community-learning-hub-to-deepen-studies-during-irl-meetings/\'>BuddyPress: An online community learning hub to deepen studies during IRL meetings</a></li></ul></div>','no'),(1194,'_transient_is_multi_author','0','yes'),(1200,'_transient_timeout_plugin_slugs','1569501880','no'),(1201,'_transient_plugin_slugs','a:12:{i:0;s:19:\"akismet/akismet.php\";i:1;s:35:\"boldgrid-backup/boldgrid-backup.php\";i:2;s:51:\"boldgrid-backup-premium/boldgrid-backup-premium.php\";i:3;s:75:\"columns-alignment-fix-for-elementor/columns-alignment-fix-for-elementor.php\";i:4;s:45:\"custom-typekit-fonts/custom-typekit-fonts.php\";i:5;s:43:\"display-php-version/display-php-version.php\";i:6;s:32:\"duplicate-page/duplicatepage.php\";i:7;s:23:\"elementor/elementor.php\";i:8;s:31:\"elementor-pro/elementor-pro.php\";i:9;s:9:\"hello.php\";i:10;s:61:\"premium-addons-for-elementor/premium-addons-for-elementor.php\";i:11;s:23:\"wordfence/wordfence.php\";}','no'),(1202,'_site_transient_timeout_poptags_40cd750bba9870f18aada2478b24840a','1569425966','no'),(1203,'_site_transient_poptags_40cd750bba9870f18aada2478b24840a','O:8:\"stdClass\":100:{s:6:\"widget\";a:3:{s:4:\"name\";s:6:\"widget\";s:4:\"slug\";s:6:\"widget\";s:5:\"count\";i:4617;}s:11:\"woocommerce\";a:3:{s:4:\"name\";s:11:\"woocommerce\";s:4:\"slug\";s:11:\"woocommerce\";s:5:\"count\";i:3646;}s:4:\"post\";a:3:{s:4:\"name\";s:4:\"post\";s:4:\"slug\";s:4:\"post\";s:5:\"count\";i:2643;}s:5:\"admin\";a:3:{s:4:\"name\";s:5:\"admin\";s:4:\"slug\";s:5:\"admin\";s:5:\"count\";i:2514;}s:5:\"posts\";a:3:{s:4:\"name\";s:5:\"posts\";s:4:\"slug\";s:5:\"posts\";s:5:\"count\";i:1936;}s:9:\"shortcode\";a:3:{s:4:\"name\";s:9:\"shortcode\";s:4:\"slug\";s:9:\"shortcode\";s:5:\"count\";i:1760;}s:8:\"comments\";a:3:{s:4:\"name\";s:8:\"comments\";s:4:\"slug\";s:8:\"comments\";s:5:\"count\";i:1749;}s:7:\"twitter\";a:3:{s:4:\"name\";s:7:\"twitter\";s:4:\"slug\";s:7:\"twitter\";s:5:\"count\";i:1472;}s:6:\"images\";a:3:{s:4:\"name\";s:6:\"images\";s:4:\"slug\";s:6:\"images\";s:5:\"count\";i:1451;}s:6:\"google\";a:3:{s:4:\"name\";s:6:\"google\";s:4:\"slug\";s:6:\"google\";s:5:\"count\";i:1447;}s:8:\"facebook\";a:3:{s:4:\"name\";s:8:\"facebook\";s:4:\"slug\";s:8:\"facebook\";s:5:\"count\";i:1437;}s:5:\"image\";a:3:{s:4:\"name\";s:5:\"image\";s:4:\"slug\";s:5:\"image\";s:5:\"count\";i:1384;}s:3:\"seo\";a:3:{s:4:\"name\";s:3:\"seo\";s:4:\"slug\";s:3:\"seo\";s:5:\"count\";i:1359;}s:7:\"sidebar\";a:3:{s:4:\"name\";s:7:\"sidebar\";s:4:\"slug\";s:7:\"sidebar\";s:5:\"count\";i:1295;}s:7:\"gallery\";a:3:{s:4:\"name\";s:7:\"gallery\";s:4:\"slug\";s:7:\"gallery\";s:5:\"count\";i:1157;}s:5:\"email\";a:3:{s:4:\"name\";s:5:\"email\";s:4:\"slug\";s:5:\"email\";s:5:\"count\";i:1136;}s:4:\"page\";a:3:{s:4:\"name\";s:4:\"page\";s:4:\"slug\";s:4:\"page\";s:5:\"count\";i:1105;}s:6:\"social\";a:3:{s:4:\"name\";s:6:\"social\";s:4:\"slug\";s:6:\"social\";s:5:\"count\";i:1076;}s:9:\"ecommerce\";a:3:{s:4:\"name\";s:9:\"ecommerce\";s:4:\"slug\";s:9:\"ecommerce\";s:5:\"count\";i:1044;}s:5:\"login\";a:3:{s:4:\"name\";s:5:\"login\";s:4:\"slug\";s:5:\"login\";s:5:\"count\";i:951;}s:5:\"links\";a:3:{s:4:\"name\";s:5:\"links\";s:4:\"slug\";s:5:\"links\";s:5:\"count\";i:862;}s:7:\"widgets\";a:3:{s:4:\"name\";s:7:\"widgets\";s:4:\"slug\";s:7:\"widgets\";s:5:\"count\";i:848;}s:5:\"video\";a:3:{s:4:\"name\";s:5:\"video\";s:4:\"slug\";s:5:\"video\";s:5:\"count\";i:845;}s:8:\"security\";a:3:{s:4:\"name\";s:8:\"security\";s:4:\"slug\";s:8:\"security\";s:5:\"count\";i:813;}s:4:\"spam\";a:3:{s:4:\"name\";s:4:\"spam\";s:4:\"slug\";s:4:\"spam\";s:5:\"count\";i:754;}s:7:\"content\";a:3:{s:4:\"name\";s:7:\"content\";s:4:\"slug\";s:7:\"content\";s:5:\"count\";i:746;}s:6:\"slider\";a:3:{s:4:\"name\";s:6:\"slider\";s:4:\"slug\";s:6:\"slider\";s:5:\"count\";i:735;}s:10:\"buddypress\";a:3:{s:4:\"name\";s:10:\"buddypress\";s:4:\"slug\";s:10:\"buddypress\";s:5:\"count\";i:734;}s:10:\"e-commerce\";a:3:{s:4:\"name\";s:10:\"e-commerce\";s:4:\"slug\";s:10:\"e-commerce\";s:5:\"count\";i:725;}s:9:\"analytics\";a:3:{s:4:\"name\";s:9:\"analytics\";s:4:\"slug\";s:9:\"analytics\";s:5:\"count\";i:706;}s:3:\"rss\";a:3:{s:4:\"name\";s:3:\"rss\";s:4:\"slug\";s:3:\"rss\";s:5:\"count\";i:704;}s:5:\"pages\";a:3:{s:4:\"name\";s:5:\"pages\";s:4:\"slug\";s:5:\"pages\";s:5:\"count\";i:688;}s:5:\"media\";a:3:{s:4:\"name\";s:5:\"media\";s:4:\"slug\";s:5:\"media\";s:5:\"count\";i:681;}s:4:\"form\";a:3:{s:4:\"name\";s:4:\"form\";s:4:\"slug\";s:4:\"form\";s:5:\"count\";i:673;}s:6:\"search\";a:3:{s:4:\"name\";s:6:\"search\";s:4:\"slug\";s:6:\"search\";s:5:\"count\";i:671;}s:6:\"jquery\";a:3:{s:4:\"name\";s:6:\"jquery\";s:4:\"slug\";s:6:\"jquery\";s:5:\"count\";i:657;}s:4:\"feed\";a:3:{s:4:\"name\";s:4:\"feed\";s:4:\"slug\";s:4:\"feed\";s:5:\"count\";i:636;}s:4:\"menu\";a:3:{s:4:\"name\";s:4:\"menu\";s:4:\"slug\";s:4:\"menu\";s:5:\"count\";i:632;}s:8:\"category\";a:3:{s:4:\"name\";s:8:\"category\";s:4:\"slug\";s:8:\"category\";s:5:\"count\";i:624;}s:4:\"ajax\";a:3:{s:4:\"name\";s:4:\"ajax\";s:4:\"slug\";s:4:\"ajax\";s:5:\"count\";i:624;}s:6:\"editor\";a:3:{s:4:\"name\";s:6:\"editor\";s:4:\"slug\";s:6:\"editor\";s:5:\"count\";i:606;}s:5:\"embed\";a:3:{s:4:\"name\";s:5:\"embed\";s:4:\"slug\";s:5:\"embed\";s:5:\"count\";i:599;}s:10:\"javascript\";a:3:{s:4:\"name\";s:10:\"javascript\";s:4:\"slug\";s:10:\"javascript\";s:5:\"count\";i:577;}s:3:\"css\";a:3:{s:4:\"name\";s:3:\"css\";s:4:\"slug\";s:3:\"css\";s:5:\"count\";i:573;}s:4:\"link\";a:3:{s:4:\"name\";s:4:\"link\";s:4:\"slug\";s:4:\"link\";s:5:\"count\";i:564;}s:7:\"youtube\";a:3:{s:4:\"name\";s:7:\"youtube\";s:4:\"slug\";s:7:\"youtube\";s:5:\"count\";i:563;}s:12:\"contact-form\";a:3:{s:4:\"name\";s:12:\"contact form\";s:4:\"slug\";s:12:\"contact-form\";s:5:\"count\";i:557;}s:5:\"share\";a:3:{s:4:\"name\";s:5:\"share\";s:4:\"slug\";s:5:\"share\";s:5:\"count\";i:544;}s:5:\"theme\";a:3:{s:4:\"name\";s:5:\"theme\";s:4:\"slug\";s:5:\"theme\";s:5:\"count\";i:537;}s:7:\"comment\";a:3:{s:4:\"name\";s:7:\"comment\";s:4:\"slug\";s:7:\"comment\";s:5:\"count\";i:534;}s:10:\"responsive\";a:3:{s:4:\"name\";s:10:\"responsive\";s:4:\"slug\";s:10:\"responsive\";s:5:\"count\";i:531;}s:9:\"dashboard\";a:3:{s:4:\"name\";s:9:\"dashboard\";s:4:\"slug\";s:9:\"dashboard\";s:5:\"count\";i:525;}s:6:\"custom\";a:3:{s:4:\"name\";s:6:\"custom\";s:4:\"slug\";s:6:\"custom\";s:5:\"count\";i:520;}s:9:\"affiliate\";a:3:{s:4:\"name\";s:9:\"affiliate\";s:4:\"slug\";s:9:\"affiliate\";s:5:\"count\";i:518;}s:3:\"ads\";a:3:{s:4:\"name\";s:3:\"ads\";s:4:\"slug\";s:3:\"ads\";s:5:\"count\";i:516;}s:7:\"payment\";a:3:{s:4:\"name\";s:7:\"payment\";s:4:\"slug\";s:7:\"payment\";s:5:\"count\";i:514;}s:10:\"categories\";a:3:{s:4:\"name\";s:10:\"categories\";s:4:\"slug\";s:10:\"categories\";s:5:\"count\";i:505;}s:7:\"contact\";a:3:{s:4:\"name\";s:7:\"contact\";s:4:\"slug\";s:7:\"contact\";s:5:\"count\";i:484;}s:4:\"user\";a:3:{s:4:\"name\";s:4:\"user\";s:4:\"slug\";s:4:\"user\";s:5:\"count\";i:480;}s:3:\"api\";a:3:{s:4:\"name\";s:3:\"api\";s:4:\"slug\";s:3:\"api\";s:5:\"count\";i:479;}s:4:\"tags\";a:3:{s:4:\"name\";s:4:\"tags\";s:4:\"slug\";s:4:\"tags\";s:5:\"count\";i:479;}s:6:\"button\";a:3:{s:4:\"name\";s:6:\"button\";s:4:\"slug\";s:6:\"button\";s:5:\"count\";i:478;}s:6:\"mobile\";a:3:{s:4:\"name\";s:6:\"mobile\";s:4:\"slug\";s:6:\"mobile\";s:5:\"count\";i:459;}s:5:\"users\";a:3:{s:4:\"name\";s:5:\"users\";s:4:\"slug\";s:5:\"users\";s:5:\"count\";i:459;}s:6:\"events\";a:3:{s:4:\"name\";s:6:\"events\";s:4:\"slug\";s:6:\"events\";s:5:\"count\";i:450;}s:15:\"payment-gateway\";a:3:{s:4:\"name\";s:15:\"payment gateway\";s:4:\"slug\";s:15:\"payment-gateway\";s:5:\"count\";i:442;}s:5:\"photo\";a:3:{s:4:\"name\";s:5:\"photo\";s:4:\"slug\";s:5:\"photo\";s:5:\"count\";i:431;}s:9:\"slideshow\";a:3:{s:4:\"name\";s:9:\"slideshow\";s:4:\"slug\";s:9:\"slideshow\";s:5:\"count\";i:424;}s:6:\"photos\";a:3:{s:4:\"name\";s:6:\"photos\";s:4:\"slug\";s:6:\"photos\";s:5:\"count\";i:418;}s:10:\"navigation\";a:3:{s:4:\"name\";s:10:\"navigation\";s:4:\"slug\";s:10:\"navigation\";s:5:\"count\";i:418;}s:5:\"stats\";a:3:{s:4:\"name\";s:5:\"stats\";s:4:\"slug\";s:5:\"stats\";s:5:\"count\";i:416;}s:9:\"marketing\";a:3:{s:4:\"name\";s:9:\"marketing\";s:4:\"slug\";s:9:\"marketing\";s:5:\"count\";i:413;}s:8:\"calendar\";a:3:{s:4:\"name\";s:8:\"calendar\";s:4:\"slug\";s:8:\"calendar\";s:5:\"count\";i:409;}s:4:\"chat\";a:3:{s:4:\"name\";s:4:\"chat\";s:4:\"slug\";s:4:\"chat\";s:5:\"count\";i:404;}s:10:\"statistics\";a:3:{s:4:\"name\";s:10:\"statistics\";s:4:\"slug\";s:10:\"statistics\";s:5:\"count\";i:401;}s:9:\"gutenberg\";a:3:{s:4:\"name\";s:9:\"gutenberg\";s:4:\"slug\";s:9:\"gutenberg\";s:5:\"count\";i:398;}s:5:\"popup\";a:3:{s:4:\"name\";s:5:\"popup\";s:4:\"slug\";s:5:\"popup\";s:5:\"count\";i:396;}s:10:\"newsletter\";a:3:{s:4:\"name\";s:10:\"newsletter\";s:4:\"slug\";s:10:\"newsletter\";s:5:\"count\";i:389;}s:10:\"shortcodes\";a:3:{s:4:\"name\";s:10:\"shortcodes\";s:4:\"slug\";s:10:\"shortcodes\";s:5:\"count\";i:387;}s:4:\"news\";a:3:{s:4:\"name\";s:4:\"news\";s:4:\"slug\";s:4:\"news\";s:5:\"count\";i:386;}s:12:\"social-media\";a:3:{s:4:\"name\";s:12:\"social media\";s:4:\"slug\";s:12:\"social-media\";s:5:\"count\";i:382;}s:5:\"forms\";a:3:{s:4:\"name\";s:5:\"forms\";s:4:\"slug\";s:5:\"forms\";s:5:\"count\";i:380;}s:4:\"code\";a:3:{s:4:\"name\";s:4:\"code\";s:4:\"slug\";s:4:\"code\";s:5:\"count\";i:369;}s:7:\"plugins\";a:3:{s:4:\"name\";s:7:\"plugins\";s:4:\"slug\";s:7:\"plugins\";s:5:\"count\";i:363;}s:8:\"redirect\";a:3:{s:4:\"name\";s:8:\"redirect\";s:4:\"slug\";s:8:\"redirect\";s:5:\"count\";i:363;}s:3:\"url\";a:3:{s:4:\"name\";s:3:\"url\";s:4:\"slug\";s:3:\"url\";s:5:\"count\";i:359;}s:9:\"multisite\";a:3:{s:4:\"name\";s:9:\"multisite\";s:4:\"slug\";s:9:\"multisite\";s:5:\"count\";i:358;}s:14:\"contact-form-7\";a:3:{s:4:\"name\";s:14:\"contact form 7\";s:4:\"slug\";s:14:\"contact-form-7\";s:5:\"count\";i:356;}s:4:\"meta\";a:3:{s:4:\"name\";s:4:\"meta\";s:4:\"slug\";s:4:\"meta\";s:5:\"count\";i:352;}s:4:\"list\";a:3:{s:4:\"name\";s:4:\"list\";s:4:\"slug\";s:4:\"list\";s:5:\"count\";i:348;}s:11:\"performance\";a:3:{s:4:\"name\";s:11:\"performance\";s:4:\"slug\";s:11:\"performance\";s:5:\"count\";i:348;}s:12:\"notification\";a:3:{s:4:\"name\";s:12:\"notification\";s:4:\"slug\";s:12:\"notification\";s:5:\"count\";i:336;}s:16:\"custom-post-type\";a:3:{s:4:\"name\";s:16:\"custom post type\";s:4:\"slug\";s:16:\"custom-post-type\";s:5:\"count\";i:326;}s:8:\"tracking\";a:3:{s:4:\"name\";s:8:\"tracking\";s:4:\"slug\";s:8:\"tracking\";s:5:\"count\";i:326;}s:11:\"advertising\";a:3:{s:4:\"name\";s:11:\"advertising\";s:4:\"slug\";s:11:\"advertising\";s:5:\"count\";i:326;}s:16:\"google-analytics\";a:3:{s:4:\"name\";s:16:\"google analytics\";s:4:\"slug\";s:16:\"google-analytics\";s:5:\"count\";i:324;}s:6:\"simple\";a:3:{s:4:\"name\";s:6:\"simple\";s:4:\"slug\";s:6:\"simple\";s:5:\"count\";i:321;}s:4:\"html\";a:3:{s:4:\"name\";s:4:\"html\";s:4:\"slug\";s:4:\"html\";s:5:\"count\";i:318;}s:6:\"author\";a:3:{s:4:\"name\";s:6:\"author\";s:4:\"slug\";s:6:\"author\";s:5:\"count\";i:314;}s:3:\"map\";a:3:{s:4:\"name\";s:3:\"map\";s:4:\"slug\";s:3:\"map\";s:5:\"count\";i:312;}}','no'),(1226,'templates_notice','1','yes'),(1227,'boldgrid_backup_in_progress_data','a:3:{s:6:\"status\";s:22:\"Backing up database...\";s:6:\"tables\";a:34:{i:0;s:14:\"wp_commentmeta\";i:1;s:11:\"wp_comments\";i:2;s:8:\"wp_links\";i:3;s:10:\"wp_options\";i:4;s:11:\"wp_postmeta\";i:5;s:8:\"wp_posts\";i:6;s:21:\"wp_term_relationships\";i:7;s:16:\"wp_term_taxonomy\";i:8;s:11:\"wp_termmeta\";i:9;s:8:\"wp_terms\";i:10;s:11:\"wp_usermeta\";i:11;s:8:\"wp_users\";i:12;s:17:\"wp_wfblockediplog\";i:13;s:12:\"wp_wfblocks7\";i:14;s:11:\"wp_wfconfig\";i:15;s:13:\"wp_wfcrawlers\";i:16;s:16:\"wp_wffilechanges\";i:17;s:13:\"wp_wffilemods\";i:18;s:9:\"wp_wfhits\";i:19;s:11:\"wp_wfhoover\";i:20;s:11:\"wp_wfissues\";i:21;s:18:\"wp_wfknownfilelist\";i:22;s:21:\"wp_wflivetraffichuman\";i:23;s:9:\"wp_wflocs\";i:24;s:11:\"wp_wflogins\";i:25;s:19:\"wp_wfls_2fa_secrets\";i:26;s:16:\"wp_wfls_settings\";i:27;s:18:\"wp_wfnotifications\";i:28;s:18:\"wp_wfpendingissues\";i:29;s:17:\"wp_wfreversecache\";i:30;s:14:\"wp_wfsnipcache\";i:31;s:11:\"wp_wfstatus\";i:32;s:17:\"wp_wftrafficrates\";i:33;s:15:\"wp_wpforms_lite\";}s:4:\"step\";i:1;}','yes'),(756,'duplicate_page_options','a:4:{s:21:\"duplicate_post_status\";s:5:\"draft\";s:23:\"duplicate_post_redirect\";s:7:\"to_list\";s:21:\"duplicate_post_suffix\";s:0:\"\";s:21:\"duplicate_post_editor\";s:7:\"classic\";}','yes'),(959,'_transient_timeout_premium_notice_3.6.9','1569690222','no'),(960,'_transient_premium_notice_3.6.9','1','no'),(327,'elementor_version','2.6.8','yes'),(318,'widget_akismet_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(1180,'_transient_timeout_feed_mod_9bbd59226dc36b9b26cd43f15694c5c3','1569426162','no'),(1181,'_transient_feed_mod_9bbd59226dc36b9b26cd43f15694c5c3','1569382962','no'),(1182,'_transient_timeout_feed_d117b5738fbd35bd8c0391cda1f2b5d9','1569426163','no'),(1183,'_transient_feed_d117b5738fbd35bd8c0391cda1f2b5d9','a:4:{s:5:\"child\";a:1:{s:0:\"\";a:1:{s:3:\"rss\";a:1:{i:0;a:6:{s:4:\"data\";s:3:\"\n\n\n\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:7:\"version\";s:3:\"2.0\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:1:{s:7:\"channel\";a:1:{i:0;a:6:{s:4:\"data\";s:61:\"\n	\n	\n	\n	\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:16:\"WordPress Planet\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://planet.wordpress.org/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"language\";a:1:{i:0;a:5:{s:4:\"data\";s:2:\"en\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:47:\"WordPress Planet - http://planet.wordpress.org/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"item\";a:50:{i:0;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:72:\"WPTavern: WordPress 5.3 to Introduce New Admin Email Verification Screen\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=94193\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:83:\"https://wptavern.com/wordpress-5-3-to-introduce-new-admin-email-verification-screen\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2769:\"<p>WordPress 5.3 is set to introduce an admin email verification screen that will be shown every six months after an admin has logged in. The feature was proposed seven months ago in a <a href=\"https://core.trac.wordpress.org/ticket/46349\" rel=\"noopener noreferrer\" target=\"_blank\">ticket</a> that contributor <a href=\"https://www.andreidraganescu.info/\" rel=\"noopener noreferrer\" target=\"_blank\">Andrei Draganescu</a> opened as part of the Site Health component improvements.</p>\n<p><a href=\"https://i0.wp.com/wptavern.com/wp-content/uploads/2019/09/admin-email-verification.png?ssl=1\"><img /></a></p>\n<p>Draganescu said the idea came from discussions in the #core-php channel regarding WSOD (White Screen of Death) recovery emails, which are sent when a site experiences a fatal error and the administrator may be locked out of their WordPress site. Participants in the discussion raised the issue of how common it is for admin email addresses to be outdated or set to a &#8220;catch all&#8221; address that is never checked. The email address may also be set automatically by the host during the process of a one-click installation.</p>\n<p>The &#8220;Why is this important?&#8221; link leads to a WordPress support article that describes the <a href=\"https://wordpress.org/support/article/settings-general-screen/#email-address\" rel=\"noopener noreferrer\" target=\"_blank\">various uses for the admin email address</a>, such as new user registration notifications, comment approval, and maintenance messages.</p>\n<p>Although it wasn&#8217;t the stated intention for the new admin email verification screen, the feature could become important for improving communication prior to automatic updates. Requiring admins to verify their email addresses after six months could ensure that more addresses are kept current, especially for admins who check their sites infrequently.</p>\n<p>When the WordPress security team <a href=\"https://wptavern.com/proposal-to-auto-update-old-versions-of-wordpress-to-4-7-sparks-heated-debate\" rel=\"noopener noreferrer\" target=\"_blank\">proposed auto-updating older versions of WordPress to 4.7</a>, one of the chief concerns is whether WordPress will be able to reach admins whose emails have been abandoned. This new admin email verification screen will not be be useful for older WordPress sites, but in the future, when auto-updating for major versions becomes the standard, it will help ensure more administrators are getting those notices to a working address.</p>\n<p>A new <code>admin_email_check_interval</code> filter is available for developers to customize the interval for redirecting the user to the admin email confirmation screen. Those who find it to be unnecessary or annoying can set a very large interval for the check.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 24 Sep 2019 18:30:33 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:1;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:63:\"WPTavern: Twenty Twenty Bundled in Core, Beta Features Overview\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=94038\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:73:\"https://wptavern.com/twenty-twenty-bundled-in-core-beta-features-overview\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:5884:\"<div class=\"wp-block-image\"><a href=\"https://i1.wp.com/wptavern.com/wp-content/uploads/2019/09/twenty-editor.jpg?ssl=1\" target=\"_blank\" rel=\"noreferrer noopener\"><img /></a></div>\n\n\n\n<p>Twenty Twenty, the upcoming default WordPress theme, was committed to core and shipped with <a href=\"https://wptavern.com/wordpress-5-3-beta-1-ready-for-testing-includes-12-gutenberg-releases-and-new-twenty-nineteen-default-theme\">WordPress 5.3 Beta 1</a> yesterday.</p>\n\n\n\n<p>Like most core themes, Twenty Twenty is simple in function.  It comes packaged with a handful of custom features and options, but it remains true to the mission of being an easy-to-use default theme.</p>\n\n\n\n<p>The theme has personality.  Its headings are bold and opinionated.  Its pull quotes grab your attention.  It&#8217;s unafraid of making a splash with its design.   This is a blog theme that&#8217;s meant to showcase what the block editor is capable of doing.   It is a refreshing change of pace from the current slew of themes landing in the directory.</p>\n\n\n\n<p>Twenty Twenty is not ideal for every use case.  Some users will no doubt dislike the design choices.  Others will love everything about it.</p>\n\n\n\n<p><em>Note: Twenty Twenty is still in beta, so its features could change between now and the official release of WordPress 5.3.</em></p>\n\n\n\n<h2>Customizer Options</h2>\n\n\n\n<div class=\"wp-block-image\"><img />Hue-only picker for the accent color in the customizer.</div>\n\n\n\n<p>The theme has a few custom options available within the customizer:</p>\n\n\n\n<ul><li>A retina logo option, which scales the logo image to half its size to make it sharper on hi-res screens.</li><li>An option for showing or hiding a search icon in the header.</li><li>A choice between showing the full post text or summary (excerpt) on archive pages.</li><li>A header and footer background color.</li><li>An accent color used for links and other elements.</li><li>Support for the core custom background feature.</li></ul>\n\n\n\n<p>The accent color option is an interesting choice.  Rather than providing the full breadth of all colors, the theme includes a hue-only color picker.  This feature allows users to select from a more limited set of colors within an accessible color range.</p>\n\n\n\n<p>There is also a ticket for removing core <a href=\"https://github.com/WordPress/twentytwenty/issues/480\">custom background image support</a> to help users avoid accessibility issues.</p>\n\n\n\n<h2>Custom Page Templates</h2>\n\n\n\n<a href=\"https://i1.wp.com/wptavern.com/wp-content/uploads/2019/09/twenty-cover.jpg?ssl=1\" target=\"_blank\" rel=\"noreferrer noopener\"><img /></a>Cover template options in the customizer.\n\n\n\n<p>Twenty Twenty has a fresh take on creating a cover page not seen in previous default themes.  The &#8220;Cover Template&#8221; works for both posts and pages.  When selecting it, the template displays the post featured image similar to the cover block in core.  The featured image spans the full width of the screen and extends behind the header and navigation area.  The post title and byline/meta are set over the image.</p>\n\n\n\n<p>The theme provides a few options for customizing the output of the cover area and allows the user to:</p>\n\n\n\n<ul><li>Set a fixed background for a parallax effect.</li><li>Add an overlay background color that sits over the featured image.</li><li>Change the color of the text on top of the image.</li><li>Choose a blend mode for the overlay background color.</li><li>Alter the overlay background color opacity.</li></ul>\n\n\n\n<p>Having a core theme explore this feature is a nice. Ideally, users would be able to create a featured cover area on a per-post basis and adjust the colors for the specific image on that post.  However, core has yet to bundle such a feature with the block editor.  There is an open Gutenberg ticket for <a href=\"https://github.com/WordPress/gutenberg/issues/16281\">expanding the editor outside of the post content</a> that may help theme authors address this common feature, but we&#8217;re likely several releases from seeing that become a reality.</p>\n\n\n\n<p>The theme also includes a wide (full width) template, which is a fairly common feature.  At the moment, this template doesn&#8217;t seem to do anything in particular when assigned to a page.  There&#8217;s an <a href=\"https://github.com/WordPress/twentytwenty/issues/185\">open GitHub ticket</a> that addresses what it should do at some point.  Considering that the theme has no left/right sidebar, it&#8217;d be interesting to see how this template functions.</p>\n\n\n\n<h2>Page Loading Speed</h2>\n\n\n\n<p>Page load is something to keep an eye on.  Twenty Twenty currently ships a 100 kb stylesheet on top of the block editor&#8217;s 40 kb CSS file (from the Gutenberg plugin).  This number doesn&#8217;t include the font and JavaScript files also loaded for the page.  This is a far cry from the behemoth 223 kb stylesheet included in Twenty Nineteen, but it&#8217;s still concerning because more development time means that more code will likely get added as tweaks are made and bugs are fixed.  </p>\n\n\n\n<p>To be fair, the block editor has many elements to style with no unified design framework for theme authors to take advantage of.  Keeping a Gutenberg-ready stylesheet under 100 kb that also styles each block is a feat of engineering few can master.</p>\n\n\n\n<h2>Follow Twenty Twenty Development</h2>\n\n\n\n<p>Theme development is currently happening on the <a href=\"https://github.com/WordPress/twentytwenty/\">Twenty Twenty GitHub repository</a>.  If you want to track its changes as the theme is imported into core, the changes are happening on the <a href=\"https://core.trac.wordpress.org/ticket/48110\">Import Twenty Twenty</a> Trac ticket.</p>\n\n\n\n<p>The theme still has work to be done before it&#8217;s ready for public release.  Now would be a great time to start testing it and reporting issues.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 24 Sep 2019 17:29:22 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Justin Tadlock\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:2;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:82:\"BuddyPress: An online community learning hub to deepen studies during IRL meetings\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"https://buddypress.org/?p=307967\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:102:\"https://buddypress.org/2019/09/an-online-community-learning-hub-to-deepen-studies-during-irl-meetings/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:6001:\"<div><em>This is a guest post by Tanner Moushey, Founder and Lead Engineer of <a href=\"https://study.church/about/\">StudyChurch</a>. He is a BP REST API early adopter and we thought his achievments implementing Headless BuddyPress was a great source of inspirations for the BuddyPress community. Many thanks to him for taking the time to share with us about this case study.</em></div>\n\n\n\n<p>Peer reviewed by <a class=\"bp-suggestions-mention\" href=\"https://buddypress.org/members/imath/\" rel=\"nofollow\">@imath</a></p>\n\n\n\n<div class=\"wp-block-image\"><img src=\"https://buddypress.org/wp-content/uploads/1/2019/09/StudyChurch-Organization-Dashboard.png\" alt=\"\" /></div>\n\n\n\n<p><a href=\"https://study.church/\">StudyChurch</a> is an ambitious startup seeking to make a mark in the church product marketplace. With a unique approach to online interaction, StudyChurch combines elements of engagement and learning in a way that is both simple and intuitive for the end user.</p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<h2>Background</h2>\n\n\n\n<p>I began working on StudyChurch as a side project in 2015. It started as a proof of concept and an excuse to dive deeply into BuddyPress. I wanted to leverage the group and activity components that BuddyPress provides and combine that with a custom study module that I created with a custom post type, BackboneJS, and the WordPress REST API. Answers to study questions were stored in WordPress Comments and synced to a custom BuddyPress activity type which was then used to create the discussion interface. Each question had an activity component under it to show off the other group answers and corresponding discussions.</p>\n\n\n\n<p>I finished the first draft of the project after several months and before too long I had groups signing up to use the system. I continued to make minor modifications over the next few years but kept running into complaints about speed and the user interface.</p>\n\n\n\n<p>When I was approached in 2018 by a publisher that wanted to use StudyChurch on a larger scale it sounded like a great opportunity to rebuild.</p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<h2>Implementing Headless BuddyPress </h2>\n\n\n\n<p>One of the big changes that I wanted to make in the rebuild was to switch to a JavaScript front end. I wanted something that was going to allow us to make numerous asynchronous data requests without using Ajax, which can be slow and difficult to maintain over a large project. I decided on VueJS and started building out the API to handle the data that was previously controlled by the BuddyPress templates. </p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<h3>Building a custom API with the BuddyPress REST API </h3>\n\n\n\n<p>I’d done quite a bit of work extending the WordPress REST API on previous projects and was excited to discover the <strong>BuddyPress REST API</strong> that extended it. This took care of a lot of the structure and allowed me to focus my time on building out our custom modules and functionality. Anytime I ran into something that needed to be more flexible, I’d submit a patch to the BuddyPress REST API repository and would get a prompt resolution.</p>\n\n\n\n<p>Now that we are able to post and retrieve data through the API, the user interactive elements on the site are noticeably faster and the overall load on the server is much less. Not only that, but we are ready for a native app once we get to that point.</p>\n\n\n\n<div class=\"wp-block-image\"><img src=\"https://buddypress.org/wp-content/uploads/1/2019/09/studychurch-case-study-image-1024x482.png\" alt=\"\" class=\"wp-image-307971\" /></div>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<h3>Creating&nbsp;a VueJS front end </h3>\n\n\n\n<p>Building a completely JavaScript front end for BuddyPress was fun challenge. I underestimated how many different components I’d need to build out since I wasn’t able to rely on the BuddyPress default templates, but the end result was well worth the effort.With VueJS we were able to leverage a lot of prebuilt UI packages (like&nbsp;<a href=\"https://element.eleme.io/#/en-US\">Element</a>) to do a lot of the heavy lifting for us. Since we were no longer tied to the BuddyPress template engine, we were able to get creative with how we displayed information and handled user interactions. The end result was a clean, fast, and user friendly interface that was simple and straightforward to use.</p>\n\n\n\n<p>I made a few modifications to allow WordPress and BuddyPress recognize our front end app and use it for BuddyPress components. I solved this with a pretty simple hook into the template include filter and included our template instead of the default. A few custom rewrite rules handled any non-BuddyPress url structures I needed to support and I soon had a fully functional and detached front end.</p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<h2>Conclusion</h2>\n\n\n\n<p>StudyChurch is now a powerful, robust social network ready for scale. We are still working on improving the system and adding new features which are now easier and faster to implement with the new structure.</p>\n\n\n\n<p>We’ve received some great feedback from users who find the app fast and intuitive. We are hoping to build out a native app in the near future.</p>\n\n\n\n<p>I’m so thankful for the work done by all of the volunteers who’ve put so much time into WordPress, BuddyPress, and now the BuddyPress REST API. I think there are going to be many more projects like StudyChurch in the near future that will leverage these great tools to build amazing and helpful solutions.</p>\n\n\n\n<p>Feel free to reach out if you have any questions or comments on what we’ve done with StudyChurch. Also, you are welcome to browse our code base on <a href=\"https://github.com/studychurch/sc-dashboard\" target=\"_blank\" rel=\"noreferrer noopener\">GitHub</a>.</p>\n\n\n\n<p>You can read more about StudyChurch and other projects we work on at <a href=\"https://iwitnessdesign.com/\" target=\"_blank\" rel=\"noreferrer noopener\">iwitnessdesign.com</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 24 Sep 2019 09:07:27 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"imath\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:3;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:116:\"WPTavern: WordPress 5.3 Beta 1 Ready for Testing, Includes 12 Gutenberg Releases and New Twenty Twenty Default Theme\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=94165\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:128:\"https://wptavern.com/wordpress-5-3-beta-1-ready-for-testing-includes-12-gutenberg-releases-and-new-twenty-nineteen-default-theme\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2577:\"<p>WordPress core contributors worked together today to package up <a href=\"https://wordpress.org/news/2019/09/wordpress-5-3-beta-1/\" rel=\"noopener noreferrer\" target=\"_blank\">5.3 Beta 1</a> for release on schedule. The Core slack channel was abuzz this afternoon as developers pushed through last-minute commits and fixed issues ahead of shipping the beta.</p>\n<p>Iterations on the block editor are a major part of of this release. WordPress 5.3 will include the last 12 Gutenberg plugin releases. If you have already been using the plugin, you may have forgotten how many features it has that still haven&#8217;t made it into core WordPress. This includes significant improvements to group, column, and gallery blocks, Accessibility Navigation mode, the new inserter help panel, &#8220;snackbar&#8221; notices, and the typewriter experience, to highlight a few big items that have been rolled into 5.3.</p>\n<p>The highly anticipated Twenty Twenty default theme is also available in the beta, which which we will explore in greater detail on WP Tavern this week. Its design is <a href=\"https://wptavern.com/first-look-at-twenty-twenty-new-wordpress-default-theme-based-on-chaplain\" rel=\"noopener noreferrer\" target=\"_blank\">based on the Chaplin theme from Anders Norén</a> and showcases what is possible with the block editor.</p>\n<p>Some of the UI changes introduced in Gutenberg are starting to make their way into other parts of the WordPress admin.</p>\n<p>&#8220;These improved styles fix many accessibility issues, improve color contrasts on form fields and buttons, add consistency between editor and admin interfaces, modernize the WordPress color scheme, add better zoom management, and more,&#8221; release coordinator Francesca Marano said in the 5.3 beta 1 announcement.</p>\n<p>A few other notable additions to 5.3 that need testing include the following:</p>\n<ul>\n<li>Support for resuming uploads on large file sizes</li>\n<li>Automatic image rotation during upload</li>\n<li>Improvements to Site Health checks</li>\n<li>Time/Date component fixes</li>\n<li>PHP 7.4 Compatibility and removal of deprecated functionality</li>\n</ul>\n<p>If you&#8217;re ready to take the beta for a test drive, the easiest way is to install the <a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\" rel=\"noopener noreferrer\" target=\"_blank\">WordPress Beta Tester</a> plugin and select the “bleeding edge nightlies” option. The <a href=\"https://make.wordpress.org/core/5-3/\" rel=\"noopener noreferrer\" target=\"_blank\">official release</a> is targeted for November 12, 2019.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 24 Sep 2019 02:56:22 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:4;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:102:\"WPTavern: Google Search Console Adds Breadcrumbs Report, Sends Out Warnings for Structured Data Errors\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=94132\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:112:\"https://wptavern.com/google-search-console-adds-breadcrumbs-report-sends-out-warnings-for-structured-data-errors\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:5150:\"<p>Google recently announced a new Breadcrumbs report available in the Search Console to inform site owners about markup issues. In 2015, Google <a href=\"https://webmasters.googleblog.com/2015/04/better-presentation-of-urls-in-search.html\" rel=\"noopener noreferrer\" target=\"_blank\">introduced support for schema.org structured data</a>, including the breadcrumbs URL structure, in order better present URLs in search results. The Search Console&#8217;s new report uses this data to help site owners fix any issues preventing their breadcrumbs from displaying as rich search results.</p>\n<blockquote class=\"twitter-tweet\">\n<p lang=\"en\" dir=\"ltr\">Great news, we have a new report on Search Console <img src=\"https://s.w.org/images/core/emoji/12.0.0-1/72x72/1f4e2.png\" alt=\"?\" class=\"wp-smiley\" /> As of today, if you have Breadcrumb <img src=\"https://s.w.org/images/core/emoji/12.0.0-1/72x72/1f35e.png\" alt=\"?\" class=\"wp-smiley\" /> structured data in your site, you\'ll see a new report under Enhancements (see screenshot). Check if you have errors and get to work! <img src=\"https://s.w.org/images/core/emoji/12.0.0-1/72x72/1f6e0.png\" alt=\"?\" class=\"wp-smiley\" /> <a href=\"https://t.co/b8I4vbJwb9\">pic.twitter.com/b8I4vbJwb9</a></p>\n<p>&mdash; Google Webmasters (@googlewmc) <a href=\"https://twitter.com/googlewmc/status/1174693878835875840?ref_src=twsrc%5Etfw\">September 19, 2019</a></p></blockquote>\n<p></p>\n<p>Over the weekend, the console started emailing out notices to those who have errors in the breadcrumb structured data on their sites. It includes how many URLs are affected, along with a link to the new report.</p>\n<p><a href=\"https://i0.wp.com/wptavern.com/wp-content/uploads/2019/09/Screen-Shot-2019-09-23-at-9.17.17-AM.png?ssl=1\"><img /></a></p>\n<p>One common error that users are seeing is a &#8220;Missing field &#8216;item,\'&#8221; which references one of the properties Google requires for displaying that content as a rich result. The &#8216;item&#8217; property is the URL to the webpage that represents the breadcrumb, as Google prefers the final crumb to be linked.</p>\n<p>WordPress site owners have started reporting breadcrumb issues in the support forums for various plugins and themes. <a href=\"https://wordpress.org/plugins/breadcrumb-navxt/\">Breadcrumb NavXT</a>, a plugin that is active on 800,000 sites, allows users to generate customizable breadcrumb trails. There are already half a dozen <a href=\"https://wordpress.org/support/plugin/breadcrumb-navxt/\" rel=\"noopener noreferrer\" target=\"_blank\">support threads</a> opened regarding Breadcrumb markup errors listed in the console. Recommendations for fixing this issue vary based on the specific property that is missing and the breadcrumb configuration the user has in place.</p>\n<p>Breadcrumb NavXT plugin author John Havlik has <a href=\"https://wordpress.org/support/topic/missing-field-id-in-breadcrumbs-on-google-search-console/page/2/#post-11958307\" rel=\"noopener noreferrer\" target=\"_blank\">advised</a> some users to remove the schema.org markup for unlinked breadcrumb templates in order to remove the error, although this may not offer the best presentation in search snippets. Others have suggested allowing the %link% tag in the unlinked breadcrumb template and Havlik <a href=\"https://github.com/mtekk/Breadcrumb-NavXT/issues/226\" rel=\"noopener noreferrer\" target=\"_blank\">added this to the 6.4.0 milestone for the plugin</a> over the weekend.</p>\n<p>The <a href=\"https://wordpress.org/plugins/wordpress-seo/\" rel=\"noopener noreferrer\" target=\"_blank\">Yoast SEO</a> plugin also has an option for adding breadcrumbs and multiple users are <a href=\"https://wordpress.org/support/topic/breadcrumbs-missing-field-id-error-in-google-search-sonsole/\" rel=\"noopener noreferrer\" target=\"_blank\">reporting</a> <a href=\"https://wordpress.org/support/topic/google-breadcrumbs-markup-issues/page/2/\" rel=\"noopener noreferrer\" target=\"_blank\">errors</a> in the Google Search Console. Solutions vary, depending on what types of pages are outputting the error, but the most common advice Yoast support team members are offering is to check to see if there is a theme or plugin that is adding conflicting breadcrumb markup.</p>\n<p>There is no easy prescribed fix that will apply to all situations. It depends on how a site owner has configured breadcrumbs through a plugin or if they are automatically generated by a theme.</p>\n<p>If you received a notice from Google Search Console, the first step is to determine whether it&#8217;s a theme or a plugin that is generating your breadcrumbs. Next, browse the support forums for the theme/plugin that provides the breadcrumbs and see if the author recommends a fix or is working on one.</p>\n<p>Although breadcrumbs do not currently have a direct affect on rankings, they are prominently displayed in search snippets and generally contribute to a positive user experience. For more information on solving specific errors, check out <a href=\"https://developers.google.com/search/docs/data-types/breadcrumb\" rel=\"noopener noreferrer\" target=\"_blank\">Google&#8217;s documentation on Breadcrumb structured data</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 23 Sep 2019 18:57:32 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:5;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:40:\"WordPress.org blog: WordPress 5.3 Beta 1\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=7114\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://wordpress.org/news/2019/09/wordpress-5-3-beta-1/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:9089:\"<p>WordPress 5.3 Beta 1 is now available!</p>\n\n\n\n<p><strong>This software is still in development,</strong> so we don’t recommend running it on a production site. Consider setting up a test site to play with the new version.</p>\n\n\n\n<p>You can test the WordPress 5.3 beta in two ways:</p>\n\n\n\n<ul><li>Try the <a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a> plugin (choose the “bleeding edge nightlies” option)</li><li>Or <a href=\"https://wordpress.org/wordpress-5.3-beta1.zip\">download the beta here</a> (zip).</li></ul>\n\n\n\n<p>WordPress 5.3 is slated for release on <a href=\"https://make.wordpress.org/core/5-3/\">November 12, 2019</a>, and we need your help to get there. Here are some of the big items to test, so we can find and resolve as many bugs as possible in the coming weeks.</p>\n\n\n\n<h2>Block Editor: features and improvements</h2>\n\n\n\n<p>Twelve releases of the Gutenberg plugin are going to be merged into 5.3 which means there’s a long list of exciting new features.&nbsp;</p>\n\n\n\n<p>Here are just a few of them:</p>\n\n\n\n<ul><li>Group block and grouping interactions</li><li>Columns block improvements (width support + patterns)</li><li>Table block improvements (text alignment support, header/footer support, colors)</li><li>Gallery block improvements (reordering inline, caption support)</li><li>Separator block improvements (color support)</li><li>Latest Posts block improvements (support excerpt, content)</li><li>List block improvements (indent/outdent shortcuts, start value and reverse order support)</li><li>Button block improvements (support target, border radius)</li><li>Animations and micro interactions (moving blocks, dropdowns, and a number of small animations to improve the UX)</li><li>Accessibility Navigation Mode which will allow you to navigate with the keyboard between blocks without going into their content.</li><li>Block Style Variations API</li></ul>\n\n\n\n<p>Plus a number of other improvements, amongst them:</p>\n\n\n\n<ul><li>Data Module API improvements (useSelect/useEffect)</li><li>Inserter Help Panel</li><li>Extensibility: DocumentSettingsPanel</li><li>Snackbar notices</li><li>Typewriter Experience</li><li>Fix a number of Accessibility report issues</li></ul>\n\n\n\n<p>If you want to see all the features for each release, here are direct links to the release posts: <a href=\"https://make.wordpress.org/core/2019/09/19/whats-new-in-gutenberg-18-september/\">6.5</a>, <a href=\"https://make.wordpress.org/core/2019/08/28/whats-new-in-gutenberg-28-august/\">6.4</a>, <a href=\"https://make.wordpress.org/core/2019/08/14/whats-new-in-gutenberg-14-august/\">6.3</a>, <a href=\"https://make.wordpress.org/core/2019/07/31/whats-new-in-gutenberg-31-july/\">6.2</a>, <a href=\"https://make.wordpress.org/core/2019/07/10/whats-new-in-gutenberg-10-july/\">6.1</a>, <a href=\"https://make.wordpress.org/core/2019/06/26/whats-new-in-gutenberg-26th-june/\">6.0</a>, <a href=\"https://make.wordpress.org/core/2019/06/12/whats-new-in-gutenberg-12th-june/\">5.9</a>, <a href=\"https://make.wordpress.org/core/2019/05/29/whats-new-in-gutenberg-29th-may/\">5.8</a>, <a href=\"https://make.wordpress.org/core/2019/05/15/whats-new-in-gutenberg-15th-may/\">5.7</a>, <a href=\"https://make.wordpress.org/core/2019/05/01/whats-new-in-gutenberg-1st-may/\">5.6</a>, <a href=\"https://make.wordpress.org/core/2019/04/17/whats-new-in-gutenberg-17th-april/\">5.5</a>, and <a href=\"https://make.wordpress.org/core/2019/04/03/whats-new-in-gutenberg-3rd-april/\">5.4</a>.</p>\n\n\n\n<h3>Continuous effort on performance</h3>\n\n\n\n<p>The team working on the block editor managed to shave off 1.5 seconds of loading time for a particularly sizeable post (~ 36,000 words, ~ 1,000 blocks) since WordPress 5.2.</p>\n\n\n\n<h2>A new default theme: welcome Twenty Twenty</h2>\n\n\n\n<p>WordPress 5.3 introduces <a href=\"https://make.wordpress.org/core/2019/09/06/introducing-twenty-twenty/\">Twenty Twenty</a>, the latest default theme in our project history.&nbsp;</p>\n\n\n\n<p>This elegant new theme is based on the WordPress theme <a href=\"https://www.andersnoren.se/teman/chaplin-wordpress-theme/\">Chaplin</a> which was released on the WordPress.org theme directory earlier this summer.&nbsp;</p>\n\n\n\n<p>It includes full support for the block editor, empowering users to find the right design for their message.</p>\n\n\n\n<h2>Wait! There is more</h2>\n\n\n\n<p>5.3 is going to be a rich release with the inclusion of numerous enhancements to interactions and the interface.</p>\n\n\n\n<h2>Admin interface enhancements</h2>\n\n\n\n<p>Design and Accessibility teams worked together to port some parts of Gutenberg styles into the whole wp-admin interface. Both teams are going to iterate on these changes during the 5.3 beta cycle. These improved styles fix many accessibility issues, improve color contrasts on form fields and buttons, add consistency between editor and admin interfaces, modernize the WordPress color scheme, add better zoom management, and more.</p>\n\n\n\n<h3>Big Images are coming to WordPress</h3>\n\n\n\n<p>Uploading non-optimized, high-resolution pictures from your smartphone isn’t a problem anymore. WordPress now supports resuming uploads when they fail as well as larger default image sizes. That way pictures you add from the block editor look their best no matter how people get to your site.</p>\n\n\n\n<h3>Automatic image rotation during upload</h3>\n\n\n\n<p>Your images will be correctly rotated upon upload according to the EXIF orientation. This feature was first proposed nine years ago. Never give up on your dreams to see your fixes land in WordPress!</p>\n\n\n\n<h3>Site Health Checks</h3>\n\n\n\n<p>The improvements introduced in 5.3 make it easier to identify and understand areas that may need troubleshooting on your site from the Tools -&gt; Health Check screen.</p>\n\n\n\n<h3>Admin Email Verification</h3>\n\n\n\n<p>You’ll now be periodically asked to check that your admin email address is up to date when you log in as an administrator. This reduces the chance that you’ll get locked out of your site if you change your email address.</p>\n\n\n\n<h2>For Developers</h2>\n\n\n\n<h3>Time/Date component fixes</h3>\n\n\n\n<p>Developers can now work with <a href=\"https://make.wordpress.org/core/2019/09/23/date-time-improvements-wp-5-3/\">dates and timezones</a> in a more reliable way. Date and time functionality has received a number of new API functions for unified timezone retrieval and PHP interoperability, as well as many bug fixes.</p>\n\n\n\n<h3>PHP 7.4 Compatibility</h3>\n\n\n\n<p>The WordPress core team is actively preparing to support PHP 7.4 when it is released later this year. WordPress 5.3 contains <a href=\"https://core.trac.wordpress.org/query?status=accepted&status=assigned&status=closed&status=new&status=reopened&status=reviewing&keywords=~php74&milestone=5.3&order=priority\">multiple changes</a> to remove deprecated functionality and ensure compatibility. Please test this beta release with PHP 7.4 to ensure all functionality continues to work as expected and does not raise any new warnings. </p>\n\n\n\n<h3>Other Changes for Developers</h3>\n\n\n\n<ul><li>Multisite<ul><li>Filter sites by status<ul><li><a href=\"https://core.trac.wordpress.org/ticket/37392\">https://core.trac.wordpress.org/ticket/37392</a>&nbsp;</li><li><a href=\"https://core.trac.wordpress.org/ticket/37684\">https://core.trac.wordpress.org/ticket/37684</a>&nbsp;</li></ul></li><li>Save database version in site meta<ul><li><a href=\"https://core.trac.wordpress.org/ticket/41685\">https://core.trac.wordpress.org/ticket/41685</a>&nbsp;</li></ul></li></ul></li><li>Code modernization and PHP 7.4 support<ul><li><a href=\"https://core.trac.wordpress.org/ticket/47678\">https://core.trac.wordpress.org/ticket/47678</a>&nbsp;</li><li><a href=\"https://core.trac.wordpress.org/ticket/47783\">https://core.trac.wordpress.org/ticket/47783</a></li></ul></li><li>Toggle password view<ul><li><a href=\"https://core.trac.wordpress.org/ticket/42888\">https://core.trac.wordpress.org/ticket/42888</a></li></ul></li></ul>\n\n\n\n<p>Keep your eyes on the <a href=\"https://make.wordpress.org/core/\">Make WordPress Core blog</a> for more <a href=\"https://make.wordpress.org/core/tag/5-3+dev-notes/\">5.3 related developer notes</a> in the coming weeks detailing other changes that you should be aware of.</p>\n\n\n\n<h2>What’s next</h2>\n\n\n\n<p>There have been over 400 tickets fixed in WordPress 5.3 so far with numerous bug fixes and improvements to help smooth your WordPress experience.</p>\n\n\n\n<h2>How to Help</h2>\n\n\n\n<p>Do you speak a language other than English? <a href=\"https://translate.wordpress.org/projects/wp/dev/\">Help us translate WordPress into more than 100 languages</a>!</p>\n\n\n\n<p>If you think you’ve found a bug, you can post to the <a href=\"https://wordpress.org/support/forum/alphabeta/\">Alpha/Beta area</a> in the support forums. We’d love to hear from you! If you’re comfortable writing a reproducible bug report, <a href=\"https://core.trac.wordpress.org/newticket\">file one on WordPress Trac</a> where you can also find a list of <a href=\"https://core.trac.wordpress.org/tickets/major\">known bugs</a>.<br /></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 23 Sep 2019 18:36:11 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:16:\"Francesca Marano\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:6;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:43:\"WPTavern: WPHelpful: A User Feedback Plugin\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=94129\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:53:\"https://wptavern.com/wphelpful-a-user-feedback-plugin\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:7082:\"<div class=\"wp-block-image\"><img /></div>\n\n\n\n<p><a href=\"https://wordpress.org/plugins/wphelpful/\">WPHelpful</a> is a plugin created by Zack Gilbert and Paul Jarvis that allows users to rate the helpfulness of a post.  It can be a useful addition to sites that offer tutorials, lessons, documentation, or any content where user feedback is warranted. Version 1.0 is available for free in the official WordPress plugin directory, but it also has a <a href=\"https://wphelpful.com/\">pro version</a> that offers additional features.</p>\n\n\n\n<p>I enjoyed giving this plugin a test drive.  As a former business owner, I could see where this plugin would&#8217;ve helped me gather feedback from my customers on product documentation and better catered to their needs.</p>\n\n\n\n<p>WPHelpful has huge potential, but its version 1.0 is still a 1.0.  It&#8217;s far from being a polished product at this stage.  It needs time to mature as a good free plugin.  The current batch of pro features should have made the cut for the free version.</p>\n\n\n\n<p>The free plugin available in the plugin directory won&#8217;t get you far unless you just need a basic rating system.  It is limited to:</p>\n\n\n\n<ul><li>Showing the feedback form on posts and pages.</li><li>Changing the colors for the form button.</li><li>Adding custom CSS (a feature already available on all WP sites via the customizer).</li></ul>\n\n\n\n<p>All other features and settings are available in the pro version.  Unless your goal is to simply allow user ratings on posts or pages, you can&#8217;t do much with a free copy.  There are existing plugins with a more mature codebase for handling basic ratings.</p>\n\n\n\n<p>One of the most notable aspects of the free version is that it allows you to test the pro settings in a development environment. This provides an opportunity to decide if you want to shell out the money to go pro. I am now officially recommending that every other plugin developer do this when possible.</p>\n\n\n\n<h2>What the Plugin Gets Right</h2>\n\n\n\n<div class=\"wp-block-image\"><img /></div>\n\n\n\n<p>The plugin is simple to use.  You can choose to automatically append the form to posts on the front end or opt to display the form with the <code>[wphelpful]</code> shortcode.</p>\n\n\n\n<p>If nothing else, users shouldn&#8217;t have any problems getting the plugin up and running.  I tested it against a variety of themes with solid results.</p>\n\n\n\n<p>A custom [Gutenberg] block would&#8217;ve kicked user-friendliness up a notch.  Plugin authors need to start thinking in terms of building a block first and a shortcode second.  I&#8217;m hoping this makes the feature list for version 2.0.</p>\n\n\n\n<h2>Post Types: Paywall for the Most Useful Feature</h2>\n\n\n\n<p>The most important feature for this plugin is the ability to select which post types the feedback form can be used on.  Unfortunately, this feature is behind a paywall, limiting user feedback to only posts and pages.  This is a foundational feature that would be nicer in the free version.</p>\n\n\n\n<p>The post type feature is also limited in the pro setting.  In 1.0, you cannot pick post types individually.  The drop-down field limits you to a single post type, all post types, or pages plus all custom types.  There&#8217;s no way to select two different custom post types.</p>\n\n\n\n<p>The plugin doesn&#8217;t use the proper post type label, so you may get some weird labels like &#8220;Wp Area Types&#8221; (from the Gutenberg plugin) or &#8220;Jt Documentation Types&#8221; (a custom post type on my test install).</p>\n\n\n\n<p>Non-public post types also show up in the list. So, post types that don&#8217;t have front-end output show up in the select form.</p>\n\n\n\n<p>These issues are easy fixes, and I&#8217;m hoping this review sheds light onto these problems so they might be corrected for users.</p>\n\n\n\n<h2>How the Plugin Could Offer Better Pro Features</h2>\n\n\n\n<div class=\"wp-block-image\"><img />Screenshot of the current post feedback report.</div>\n\n\n\n<p>Plugin authors need to eat.  There&#8217;s always a delicate balance that developers must strike between offering a useful free plugin and making enough of a return on their investment to continue maintaining the code.</p>\n\n\n\n<p>Currently, most of the plugin&#8217;s pro features are basic items like custom colors and form labels.  These are things that would better serve users in the free version.</p>\n\n\n\n<p>A more useful pro feature would be a &#8220;Reports&#8221; screen in the admin that offered options such as:</p>\n\n\n\n<ul><li>Sorting posts by rating and total ratings.</li><li>Displaying a graph of user feedback by month, year, etc.</li><li>Other reports that provided an overall look at feedback.</li></ul>\n\n\n\n<p>The plugin also only allows logged-in users to provide feedback.  That&#8217;s certainly an easier way to go to avoid spammers and bots.  Due to the added complexity, a pro extension for enabling any site visitor to provide feedback would be worth exploring.</p>\n\n\n\n<h2>How Does the Code Stack Up?</h2>\n\n\n\n<p>I&#8217;m going to get a bit technical here. Feel free to skip ahead if programming is not your thing.</p>\n\n\n\n<p>What the plugin needs is time to mature.  Version 1.0 is not supposed to be the best a plugin can be.  It&#8217;s about shipping a minimum viable product, so I&#8217;m a bit forgiving.  If this were 2.0 or 3.0, I&#8217;d be unrelenting.</p>\n\n\n\n<p>There&#8217;s a lot to like about the architectural decisions.  Much of it is set up in a way that it should be relatively easy to maintain in the long term.  This is important because it means that correcting issues, such as those listed below, shouldn&#8217;t be tough to fix.</p>\n\n\n\n<p>There are code issues that need patches. The plugin currently:</p>\n\n\n\n<ul><li>Uses a PHP variable for textdomains (not all translation tools run in a PHP environment).</li><li>Hasn&#8217;t internationalized all of its user-facing text, so not everything can be translated.</li><li>Registers multiple options in the database instead of storing all options together, which creates unnecessary clutter.</li><li>Doesn&#8217;t clean up after itself and delete its options upon uninstall.</li></ul>\n\n\n\n<p>These are not insurmountable issues, and they don&#8217;t break anything to the point of making the plugin unusable.  They&#8217;re just issues that need to be addressed.</p>\n\n\n\n<h2>The Final Verdict</h2>\n\n\n\n<p>Version 1.0 of WPHelpful lacks the feature set to be a particularly great free plugin.  It could be useful in some limited cases.  However, you&#8217;ll probably want to opt for the pro version to get the features that would make this plugin worth using.</p>\n\n\n\n<p>WPHelpful has potential. I could see it growing an audience of 100K, 500K, or more users over time with more polishing.  It&#8217;s not there yet.  The plugin doesn&#8217;t have enough meat on its bones for me to recommend it yet, but I&#8217;m hopeful that future versions will offer a more robust experience.</p>\n\n\n\n<p>If you&#8217;re looking for an easy-to-use free plugin that works with just posts and pages, it could serve your needs.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 23 Sep 2019 18:01:43 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Justin Tadlock\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:7;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:70:\"WPTavern: GitHub Adds Dependency Graphs, Security Alerts for PHP Repos\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=94088\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:80:\"https://wptavern.com/github-adds-dependency-graphs-security-alerts-for-php-repos\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4157:\"<div class=\"wp-block-image\"><img /></div>\n\n\n\n<p>PHP developers everywhere can rejoice as GitHub adds the long-awaited <a href=\"https://github.blog/2019-09-18-dependency-graph-supports-php-repos-with-composer-dependencies/\">dependency graphs feature for PHP repositories</a> that use Composer.  The feature provides security alerts, shows dependency insights, and displays the dependents of a given repository.  If enabled, it can also automatically send security fixes to the repository via pull requests.</p>\n\n\n\n<p>GitHub initially added support for JavaScript and Ruby when <a href=\"https://github.blog/2017-11-16-introducing-security-alerts-on-github/\">rolling out dependency graphs in 2017</a>. They added <a href=\"https://github.blog/2019-07-02-yarn-support-for-security-alerts/\">support for Yarn lock files</a> in July of this year. This has been a boon to the JavaScript community as it alerts developers of vulnerabilities in code they&#8217;re using and shipping to users.</p>\n\n\n\n<p>&#8220;We&#8217;re also seeing PHP and Composer grow in popularity&#8211;PHP is the fourth most popular language on GitHub and Composer is the fourth most starred PHP project,&#8221; wrote Justin Hutchings, Senior Product Manager at GitHub.  The company has taken notice of the trends.  JavaScript is a hot topic in many developer circles today, but PHP frameworks such as Laravel and Symfony continue growing in popularity and dominate among <a href=\"https://github.com/topics/php\">popular PHP repositories</a>.</p>\n\n\n\n<p>Composer is the <em>de facto</em> standard for PHP dependency management.  Core WordPress first <a href=\"https://core.trac.wordpress.org/ticket/43558\">added Composer support</a> for development environments in version 5.1.  While it&#8217;s not a part of the release package, this was some small victory after a <a href=\"https://core.trac.wordpress.org/ticket/23912\">years-long discussion</a> of adding a basic <code>composer.json</code> file to core.  Core hasn&#8217;t fully embraced Composer or any type of PHP dependency management, but plugin and theme authors are using it more than a few short years ago.  The new alerts and automatic pull requests will offer one more avenue for catching security issues with plugins and themes.</p>\n\n\n\n<p>GitHub seems to be rolling this feature out in waves.  After checking some repositories with dependency graphs enabled, some still do not have their PHP dependencies listed.  It may take some time, but developers should start seeing dependencies appear that are listed in their <code>composer.json</code> or <code>composer.lock</code> files.</p>\n\n\n\n<p>Public repositories should begin seeing automatic security alerts when an issue is found.  GitHub will start notifying repository owners of these alerts via web notifications or email, depending on what the account holder has set as their preference.  Developers with private repos or who have disabled dependency graphs will need to enable them to take advantage of the new feature.</p>\n\n\n\n<p>Security alerts on old repositories could become an annoyance.  GitHub recommends archiving those repos.  &#8220;Archived repositories send a signal to the rest of the community that they aren&#8217;t maintained and don&#8217;t receive security alerts,&#8221; explained Hutchings.</p>\n\n\n\n<p>Developers who have opted into GitHub&#8217;s <a href=\"https://help.github.com/en/articles/configuring-automated-security-fixes\">automatic security fixes beta</a> feature can now enjoy automatic pull requests (PRs) from GitHub when vulnerabilities are found.  GitHub creates a PR with the minimum possible secure version.  The developer can then merge the PR at their discretion.</p>\n\n\n\n<p>Dependency graphs also make for a much nicer experience when browsing a repository&#8217;s dependencies.  Previously, developers would need to dive into a project&#8217;s <code>composer.json</code> or view them from Packagist, the official package directory for Composer.  Developers can now click on a link to view a dependent repository.</p>\n\n\n\n<p>Rolling this feature out for PHP repos is a welcome addition and should help more projects keep their code secure.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 20 Sep 2019 17:45:06 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Justin Tadlock\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:8;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:67:\"BuddyPress: A new place to learn how to build on top of BuddyPress!\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"https://buddypress.org/?p=307844\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:45:\"https://buddypress.org/2019/09/bp-devhub-1-0/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4575:\"<p>Hi!</p>\n\n\n\n<p>We’re very excited to officially announce the launch of a new development resources site on the BuddyPress.org network.</p>\n\n\n\n<div class=\"wp-block-image\"><a href=\"https://developer.buddypress.org/\" target=\"_blank\" rel=\"noreferrer noopener\"><img src=\"https://buddypress.org/wp-content/uploads/1/2019/09/bpdevhub-landing-page-1024x652.png\" alt=\"\" class=\"wp-image-307848\" /></a></div>\n\n\n\n<p>Today we are inaugurating <strong><a href=\"https://developer.buddypress.org/\">developer.buddypress.org</a></strong> with a complete <a href=\"https://developer.buddypress.org/bp-rest-api/\">handbook documenting the BP REST API</a>. This API will be introduced into our next major version which is scheduled on September 30, 2019. We thought you’d be interested to have a tool to help you discover the BuddyPress REST endpoints and their parameters to start playing with them (You’ll need <a href=\"https://buddypress.org/2019/09/buddypress-5-0-0-release-candidate/\">BuddyPress 5.0.0-RC1</a> to have even more fun with it!).</p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<h2 id=\"rest-api-handbook\">Using the BP REST API Handbook</h2>\n\n\n\n<p>The main part of the handbook is the «&nbsp;Developer Endpoint Reference&nbsp;». We grouped these endpoints according to the component they belongs to.</p>\n\n\n\n<div class=\"wp-block-image\"><img src=\"https://buddypress.org/wp-content/uploads/1/2019/09/bpdevhub-02-911x1024.png\" alt=\"\" class=\"wp-image-307845\" /><a rel=\"noreferrer noopener\" href=\"https://buddypress.org/wp-content/uploads/1/2019/09/bpdevhub-02.png\" target=\"_blank\">View the full screenshot in a new tab.</a></div>\n\n\n\n<p>Each page of the reference is firstly introducing the component and describing the data schema of items contained into the REST responses. Then for each verb (or method), you&#8217;ll find the available arguments, their definition and an example of use with the <code><a href=\"https://bpdevel.wordpress.com/2019/09/12/let-us-start-using-the-bp-rest-api/\">bp.apiRequest()</a></code> JavaScript function. Below is a screenshot of the method to get a specific Activity.</p>\n\n\n\n<div class=\"wp-block-image\"><a href=\"https://developer.buddypress.org/bp-rest-api/reference/activity/#retrieve-a-specific-activity\"><img src=\"https://buddypress.org/wp-content/uploads/1/2019/09/bpdevhub-verb-example.png\" alt=\"\" class=\"wp-image-307851\" /></a></div>\n\n\n\n<h2>The future of this development resources hub</h2>\n\n\n\n<p>You can have a good idea of what’s coming next into this developer oriented site looking at its current landing page. We will first work on building the full <a href=\"https://buddypress.trac.wordpress.org/ticket/6812\">PHP Code Reference for BuddyPress</a>: functions, classes and hooks.<br /></p>\n\n\n\n<p>Then, we haven’t planned anything yet <img src=\"https://s.w.org/images/core/emoji/12.0.0-1/72x72/263a.png\" alt=\"☺\" class=\"wp-smiley\" /> and we’re very opened to ideas and of course contributions about the «&nbsp;how&nbsp;» step and the «&nbsp;do&nbsp;» one.</p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<h2>About the editing workflow</h2>\n\n\n\n<p>Unlike the BuddyPress Codex, it’s not possible for everyone to directly edit the content of the BP REST API Handbook or the future PHP Code Reference.</p>\n\n\n\n<div class=\"wp-block-image\"><a href=\"https://buddypress.trac.wordpress.org/newticket\"><img src=\"https://buddypress.org/wp-content/uploads/1/2019/09/new-ticket.png\" alt=\"\" class=\"wp-image-307857\" /></a></div>\n\n\n\n<p>But you can always report issues or suggest improvements using our <a href=\"https://buddypress.trac.wordpress.org\">Bug Tracker</a> making sure to select the «&nbsp;<strong>BuddyPress.org sites</strong>&nbsp;» option of the components dropdown of your ticket.</p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<h2>Props</h2>\n\n\n\n<p>The first version of the development resources hub was built thanks to the involvement of these contributors:</p>\n\n\n\n<p><a href=\"https://profiles.wordpress.org/boonebgorges/\">Boone B Gorges (boonebgorges)</a>, <a href=\"https://profiles.wordpress.org/johnjamesjacoby/\">John James Jacoby (johnjamesjacoby)</a>,&nbsp;<a href=\"https://profiles.wordpress.org/imath/\">Mathieu Viet (imath)</a>,  <a href=\"https://profiles.wordpress.org/tw2113/\">Michael Beckwith (tw2113)</a>,&nbsp;<a href=\"https://profiles.wordpress.org/espellcaste/\">Renato Alves (espellcaste)</a>,&nbsp;<a href=\"https://profiles.wordpress.org/netweb/\">Stephen Edgar (netweb)</a>.</p>\n\n\n\n<p>Many thanks to them <img src=\"https://s.w.org/images/core/emoji/12.0.0-1/72x72/1f609.png\" alt=\"?\" class=\"wp-smiley\" /></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 20 Sep 2019 14:47:52 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"imath\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:9;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:94:\"Post Status: Salesforce Ventures invests $300 million in Automattic, at a $3 billion valuation\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"https://poststatus.com/?p=68901\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:54:\"https://poststatus.com/salesforce-ventures-automattic/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:6125:\"<p>Salesforce Ventures is the investment arm of Salesforce. Prior to this investment in <a href=\"https://automattic.com/\">Automattic</a>, Salesforce Ventures had <a href=\"https://www.salesforce.com/company/ventures/funds/\">announced</a> $875 million raised across 11 fund initiatives — but none that amounts to $300 million. Previosuly, each fund has been between $50 to $125 million spread across several <a href=\"https://www.crunchbase.com/organization/salesforce-ventures/investments/investments_list\">investments</a>.</p>\n\n\n\n<p>I believe <a href=\"https://www.salesforce.com/company/ventures/\">Salesforce Ventures</a> called up funds specifically for this strategic investment in Automattic, which would likely put their total dollars invested (or committed to existing funds) well beyond $1 billion, and the $300 million into Automattic would be their largest investment to date, to my knowledge.</p>\n\n\n\n<p>Salesforce Ventures states on their website that they are exclusively seeking investments in &#8220;enterprise cloud&#8221; companies. In Automattic Founder and CEO Matt Mullenweg&#8217;s <a href=\"https://ma.tt/2019/09/series-d/\">announcement</a> about the funding, he specifically noted how Salesforce CEO Marc Benioff, &#8220;helped open my eyes to the incredible traction WordPress <a href=\"https://wpvip.com/\">and WP VIP</a> has seen in the enterprise market, and how much potential there still is there.&#8221; I am curious to see how Automattic changes their approach to VIP in particular, in light of this.</p>\n\n\n\n<p>$300 million is a lot of money. Salesforce is joining Insight Venture Partners, Tiger Global, and True Ventures as primary outside investors in Automattic. </p>\n\n\n\n<p>Given that Salesforce was the lead and only investor here, they now own a significant stake in Automattic — and it will be interesting to see what kind of confluence that enables between the two companies. Automattic CEO Matt Mullenweg tells me, &#8220;Automattic has been a long-time customer of Salesforce’s products, and we think there are lots of opportunities for closer integration.&#8221;</p>\n\n\n\n<p>Since Automattic recently acquired Tumblr and brought on a few hundred new employees from it, it&#8217;s natural to think the new fundraising is related. I asked Matt about that, and he said it was unrelated in terms of financial justification, but they did, &#8220;disclose the Tumblr transaction to Salesforce during [their] discussions.&#8221;</p>\n\n\n\n<p>Automattic hasn&#8217;t raised money since 2014, and it seems like this round is similar to prior ones, wherein the money helps spur their growth plans along but that they are operationally profitable — or close to it. Matt <a href=\"https://techcrunch.com/2019/09/19/automattic-raises-300-million-at-3-billion-valuation-from-salesforce-ventures/\">told Techcrunch</a>, &#8220;The roadmap is the same. I just think we might be able to do it in five years instead of ten.&#8221;</p>\n\n\n\n<p>Matt called the investment proof of Salesforce&#8217;s own &#8220;tremendous vote of confidence for Automattic and for the open web.&#8221; Salesforce does have some history of supporting <a href=\"https://opensource.salesforce.com/\">open source projects</a>, although that shouldn&#8217;t be equated to an investment in Automattic as a company; it is a vote of confidence for companies that rely on open-source platforms as a part of their line of business.</p>\n\n\n\n<p>Automattic is the single most significant contributor to WordPress and related open-source projects. It also relies on open-source software for its product development — particularly Jetpack and WooCommerce — and features like Gutenberg as the core experience for writing and site-building. How that blend of open source software and business development plays out, in the long run, is certainly of high interest to the open-source community.</p>\n\n\n\n<p>I have long discussed on various platforms how I think there are a handful of companies that are big enough to acquire Automattic someday. I still think Automattic is more likely to go public at some point, but if they are acquired, Salesforce is definitely one of those few with the resources to make it happen, and perhaps the operational congruence as well.</p>\n\n\n\n<p>Reaching a $3 billion valuation is an amazing feat that Automattic has achieved. Matt has said before that he believes each of their primary lines of business — WordPress.com, WooCommerce, and Jetpack — can be multi-billion dollar opportunities. I agree with him, particularly for WooCommerce. I think there&#8217;s a good chance WooCommerce will end up several times more valuable than all their other lines of business combined. <span class=\"pullquote alignleft\">I would love to see these new funds be funnelled into the incredible opportunity in the eCommerce landscape; one only needs to look at what Shopify has done to see what&#8217;s possible, and just how successful it can be.</span> </p>\n\n\n\n<p>I asked Matt why he was attracted to an investment from Salesforce&#8217;s VC arm, rather than an investment-only style firm. He said, &#8220;I love Salesforce’s philosophy, how they cultivate such a fantastic community, how they support progressive policies in San Francisco and the other cities they operate in, how they’ve been founder-led, their scale, their leadership, and their longevity in defining an entirely new class of software and being the most significant player in it.&#8221;</p>\n\n\n\n<p>I love the point about Salesforce defining a class of software — and I have realized recently just how huge their developer community is — so I really appreciate this comment from Matt. Making commercial and SaaS software is a well-established business now. Automattic is in a unique position as the most powerful player in an <em>open</em> ecosystem proud of its independence. This provides many unique opportunities for Automattic the business and unique challenges for Automattic the WordPress community member.</p>\n\n\n\n<p><em>Image credit: <a href=\"https://ma.tt/2019/09/series-d/\">Matt Mullenweg</a>, whose blog I brazenly stole it from.</em></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 19 Sep 2019 23:05:39 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:15:\"Brian Krogsgard\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:10;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:102:\"WPTavern: WordPress Community Contributors to Host Free Online Diversity Workshop Ahead of WordCamp US\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=93735\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:113:\"https://wptavern.com/wordpress-community-contributors-to-host-free-online-diversity-workshop-ahead-of-wordcamp-us\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:5663:\"<p>WordCamp US will <a href=\"https://2019.us.wordcamp.org/2019/08/08/wordcamp-us-debuts-community-track/\" rel=\"noopener noreferrer\" target=\"_blank\">debut a new Community Track</a> in November that will feature sessions and workshops on topics like meetups, WordCamps, diversity and inclusion, and kids/youth. Jill Binder, Allie Nimmons, Aurooba Ahmed, and David Wolfpaw will be hosting a workshop called &#8220;Creating a Welcoming and Diverse Space&#8221; at the event. In order to adequately prepare for presenting on this sensitive topic, the team will be <a href=\"https://make.wordpress.org/community/2019/09/13/call-for-participants-creating-a-welcoming-and-diverse-space-online-workshop-on-sun-oct-6/\" rel=\"noopener noreferrer\" target=\"_blank\">running the workshop in a live, interactive Zoom call on Sunday, October 6</a>.</p>\n<p>In light of the recent news about <a href=\"https://wptavern.com/php-central-europe-conference-canceled-due-to-lack-of-speaker-diversity\" rel=\"noopener noreferrer\" target=\"_blank\">a central European PHP conference getting canceled due to a lack of a diverse lineup</a>, the broader PHP community is becoming more conscious of the importance of recruiting speakers that better represent their communities.</p>\n<p>&#8220;The <a href=\"https://tiny.cc/wpdiversity\" rel=\"noopener noreferrer\" target=\"_blank\">Diverse Speaker Workshops</a> that I’m running in WordPress and am <a href=\"https://diversein.tech/\" rel=\"noopener noreferrer\" target=\"_blank\">bringing to other technologies</a> have been just as important for years as they are now,&#8221; training leader <a href=\"https://diversein.tech\" rel=\"noopener noreferrer\" target=\"_blank\">Jill Binder</a> said. &#8220;These workshops are an essential piece to the whole puzzle for creating diverse communities, attendance at events, public speakers, and ultimately, leaders and organizers.&#8221;</p>\n<p>Binder said there are many factors in society that work against having diversity in a tech event’s public speaker lineup, but one that her team is specifically tackling in these workshops is <a href=\"https://en.wikipedia.org/wiki/Impostor_syndrome\" rel=\"noopener noreferrer\" target=\"_blank\">imposter syndrome</a>.</p>\n<p>&#8220;Our workshops help folks bust through their impostor syndrome and develop a topic, title, pitch, bio, and outline, more confidence in public speaking, and the motivation to start speaking,&#8221; Binder said.</p>\n<p>&#8220;The new workshop that Allie, Aurooba, David, and I are creating for WordCamp US on &#8216;Creating a Welcoming and Diverse Space&#8217; is another important piece to the puzzle. We are going to be teaching mindset, community, environment, speakers, and allyship. It will be an interactive workshop where people will walk away with an action list they can start implementing in their communities (whether in person or online) right away.&#8221;</p>\n<p>Some organizers of tech events have claimed that for certain events it is impossible to create a diverse lineup of speakers due to the demographics of the community and lack of willing participants.</p>\n<p>Binder said that in her experience it is unlikely that more diverse people are unwilling to speak but rather that the event is not being created with more kinds of people in mind. She offered a few suggestions for organizers to consider in planning ahead for a welcoming and diverse space:</p>\n<ul>\n<li>Have the event at different times that work for people with families. For example, don’t hold them all at 9pm at night. Weekend afternoons may work. Ask those with children what works for them.</li>\n<li>Consider venues that are not centered around alcohol (like bars and pubs). This opens up the event to attendees who are under 21, recovering addicts, folks who belong to a religious group that prohibits alcohol, and many other people who don’t feel safe or welcome in an alcohol-focused environment.</li>\n<li>Choose venues that have accessible alternatives to stairs, such as elevators and ramps.</li>\n<li>Try to have more diversity in the organizing team.</li>\n<li>Bring in more diverse speakers. Don’t know how? Check out the Diverse Speaker Workshop – <a href=\"https://tiny.cc/wpdiversity\" rel=\"noopener noreferrer\" target=\"_blank\">in WordPress</a> and in <a href=\"https://diversein.tech/\" rel=\"noopener noreferrer\" target=\"_blank\">other techs communities.</a></li>\n</ul>\n<p>She also recommends organizers directly invite more people into their communities.</p>\n<p>&#8220;Ask people in your network to introduce you to diverse people they may know who work with WordPress or your technology,&#8221; Binder said. &#8220;You can even go out and find those communities in your area – online and in person – or ask people to make an introduction for you to those groups. Examples of groups: Ladies Learning Code, Black Girls Code. Form genuine, friendly relationships with community members so that they can help you reach the WordPress enthusiasts in their communities.&#8221;</p>\n<p>Binder said the team will go into more detail on these topics during the workshop. Anyone who would like to learn more is welcome to attend the online public rehearsal for the workshop on October 6, at 3pm-5pm ET. This is a unique opportunity for those who cannot attend WordCamp US to join in on one of the interactive workshops. <a href=\"https://make.wordpress.org/community/2019/09/13/call-for-participants-creating-a-welcoming-and-diverse-space-online-workshop-on-sun-oct-6/\" rel=\"noopener noreferrer\" target=\"_blank\">Comment on the Community team&#8217;s post</a> with contact information and workshop leaders will send the zoom link and more information.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 19 Sep 2019 22:14:48 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:11;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:47:\"WPTavern: Bayleaf: A Food and Recipe Blog Theme\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=94041\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:57:\"https://wptavern.com/bayleaf-a-food-and-recipe-blog-theme\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:5971:\"<div class=\"wp-block-image\"><img /></div>\n\n\n\n<p>With the WordPress theme directory dominated by business-oriented themes, it&#8217;s sometimes tough to find themes that cater to more specific user groups. If you dig deep enough, you&#8217;ll find something outside the norm.  <a href=\"https://wordpress.org/themes/bayleaf/\">Bayleaf</a> is a blog theme specifically designed for sharing food and recipes.  </p>\n\n\n\n<p>The theme is designed and developed by <a href=\"https://vedathemes.com/\">Vedathemes</a>.  They currently have three themes in the theme directory, which follow the same clean design trend of Bayleaf.</p>\n\n\n\n<p>Food-related themes excite me.  In my off-time, I&#8217;m often browsing recipe blogs and looking for my next culinary experiment.  The problem with many such sites is their designs have too much noise instead of just showcasing the content visitors are looking for.  I was pleasantly surprised at the minimalist and open approach in the <a href=\"https://vedathemes.com/bayleaf-pro/\">Bayleaf demo</a>.</p>\n\n\n\n<p><em>Admittedly, I was drawn in by all the yummy food pics.</em></p>\n\n\n\n<p>The theme author has obviously taken a look at the food blogs and built a design that showcases what&#8217;s possible without adding complexity.  The related posts feature is also a nice extra for site visitors who&#8217;ll likely look for related recipes.</p>\n\n\n\n<p>Bayleaf combines the Poppins and Montserrat font families to create bold headers that are complimented by readable body copy.  The theme comes with options for displaying a sidebar on single posts or pages, but I&#8217;d recommend opting out.  The design works best without a sidebar, allowing more breathing room for sharing food images.</p>\n\n\n\n<p>The theme is slowly building an audience since its release in February.  It currently has 1,000+ installs and a five-star rating from six reviews in the theme directory.</p>\n\n\n\n<h2>Create a Unique Look with the Display Posts Widget</h2>\n\n\n\n<div class=\"wp-block-image\"><img /></div>\n\n\n\n<p>Bayleaf&#8217;s most prominent custom feature is its Display Posts widget.  By placing this widget in the Homepage Above Content or Homepage Below Content sidebar, users have a ton of variety with how their site looks.  No two homepages need look alike.</p>\n\n\n\n<p>The widget comes with six list, grid, and slider styles to choose from. It supports custom post types and taxonomies, so users can use it for content such as events, products, or anything else they want to showcase.</p>\n\n\n\n<p>My first thought when viewing the demo was, <em>Not another complicated slider with a hard-to-configure customizer experience.</em> While I&#8217;m not usually a fan of sliders, configuring this one was easy.  Plus, the grid and list styles offered alternative options.</p>\n\n\n\n<p>A lot of themes overdo features like this, offering a clunky experience within the customizer.  However, Bayleaf keeps it simple by packaging the feature as a widget with just enough variety to cover most use cases.</p>\n\n\n\n<p>My one complaint with the Display Posts widget is that it was hard to find at first.  At this point, it should be standard practice to prefix custom widgets with the theme name.  &#8220;Bayleaf: Display Posts&#8221; would&#8217;ve been far easier to pick from the widget lineup.</p>\n\n\n\n<h2>Handling Block Editor Support</h2>\n\n\n\n<div class=\"wp-block-image\"><img /></div>\n\n\n\n<p>I tested Bayleaf against the latest public release of the Gutenberg plugin. The theme is not without a few problems, which is par for the course with most themes supporting the block editor.  The Gutenberg plugin&#8217;s development is fast-paced, and it&#8217;s tough for theme authors to keep up.  Something that works one week could break the next.</p>\n\n\n\n<p>The theme takes a minimalist approach with regards to the editor, allowing the default editor styles to handle much of the layout.  With the break-neck pace of change, this can sometimes be a better approach than attempting to manage every style.</p>\n\n\n\n<p>There are areas where Bayleaf could be more opinionated.  For example, the alignment and typography for the post title aren&#8217;t a one-to-one match between the editor and front end.  The content width is wider on the front end than the editor, which means the number of characters per line doesn&#8217;t match.  There are several minor items where the block editor overrules theme styles.</p>\n\n\n\n<p>The theme doesn&#8217;t offer a 100% WYSIWYG experience, but it&#8217;s close enough at this stage and doesn&#8217;t break anything.  Most issues are trivial and will simply take some adjustment time, assuming Gutenberg development settles a bit.</p>\n\n\n\n<h2>How Does the Code Stand Up?</h2>\n\n\n\n<p>Bayleaf isn&#8217;t pushing any boundaries, but it&#8217;s solid in comparison to the average theme.  It&#8217;s based on the Underscores starter, which serves as the <em>de facto</em> standard for many themes in the official directory.</p>\n\n\n\n<p>The theme doesn&#8217;t have a ton of custom code, so there are few places it could go wrong.</p>\n\n\n\n<p>Like all themes in the official directory, it undergoes a rigorous review process.  It&#8217;s <a href=\"https://themes.trac.wordpress.org/query?keywords=~theme-bayleaf\">Trac history</a> doesn&#8217;t show anything worrisome.  Vedathemes seems to have a good grasp of building themes that meet the official theme review standards.</p>\n\n\n\n<h2>The Final Verdict</h2>\n\n\n\n<p>You won&#8217;t find a boatload of options in Bayleaf.  What you will find is a clean design that gets out of the way but with enough features to have fun tinkering around on your blog for a couple of hours.  The Display Posts widget can get you pretty far with little work.</p>\n\n\n\n<p>If you&#8217;re looking for a change to your food or recipe blog, you can&#8217;t go wrong giving this theme a run. </p>\n\n\n\n<p>The theme could also be used for other types of sites.  There are no specific features that limit its use to only food blogging.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 19 Sep 2019 18:49:50 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Justin Tadlock\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:12;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:93:\"WPTavern: Automattic Raises $300M in Series D Investment Round, Valuation Jumps to $3 Billion\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=94026\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:101:\"https://wptavern.com/automattic-raises-300m-in-series-d-investment-round-valuation-jumps-to-3-billion\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:6254:\"<p><a href=\"https://automattic.com/\" rel=\"noopener noreferrer\" target=\"_blank\">Automattic</a> announced another round of funding today, a $300 million Series D investment from <a href=\"https://www.salesforce.com/company/ventures/\" rel=\"noopener noreferrer\" target=\"_blank\">Salesforce Ventures</a>, giving the company a $3 billion valuation post-funding. The last time Automattic raised money was $160 million in a Series C round in 2014. Since that time the company has grown to more than 950 employees and made strategic acquisitions, including <a href=\"https://wptavern.com/automattic-acquires-woocommerce\" rel=\"noopener noreferrer\" target=\"_blank\">WooCommerce</a> in 2015 and <a href=\"https://wptavern.com/automattic-acquires-tumblr-plans-to-rebuild-the-backend-powered-by-wordpress\" rel=\"noopener noreferrer\" target=\"_blank\">Tumblr</a> (closing in 2019).</p>\n<p>CEO Matt Mulleneweg <a href=\"https://ma.tt/2019/09/series-d/\" rel=\"noopener noreferrer\" target=\"_blank\">said</a> the funds will enable the company to speed up and scale its product development, as well as continue the company&#8217;s continual contributions to WordPress:</p>\n<blockquote><p>For Automattic, the funding will allow us to accelerate our roadmap (perhaps by double) and scale up our existing products—including WordPress.com, WordPress VIP, WooCommerce, Jetpack, and (in a few days when it closes) Tumblr. It will also allow us to increase investing our time and energy into the future of the open source WordPress and Gutenberg.</p></blockquote>\n<p>In 2016, Mullenweg <a href=\"https://wptavern.com/woocommerce-powers-42-of-all-online-stores\" rel=\"noopener noreferrer\" target=\"_blank\">identified both Jetpack and WooCommerce as “multi-billion dollar opportunities”</a> that could each be larger than WordPress.com in the future. Jetpack has grown from 1+ million users in 2016 to more than 5 million today. The plugin&#8217;s product team has aggressively expanded its commercial plans and features and is one of the first to experiment with offering <a href=\"https://wptavern.com/jetpack-7-6-improves-amp-compatibility-adds-preview-and-upgrade-nudge-for-blocks-only-available-on-paid-plans\" rel=\"noopener noreferrer\" target=\"_blank\">previews and commercial upgrade nudges for blocks in WordPress&#8217; editor</a>.</p>\n<p>WooCommerce has also grown to more than 5 million active installs (from 1+ million in 2015 at the time of acquisition). The e-commerce platform has a more challenging market with formidable competitors like Shopify, which recently <a href=\"https://observer.com/2019/09/shopify-ebay-amazon-ecommerce-growth/\" rel=\"noopener noreferrer\" target=\"_blank\">overtook eBay as the second largest shopping site after Amazon</a>. Shopify <a href=\"https://investors.shopify.com/Investor-News-Details/2019/Shopify-Announces-Second-Quarter-2019-Financial-Results/default.aspx\" rel=\"noopener noreferrer\" target=\"_blank\">reported $362 million in revenue</a> during its last quarter with $153 million coming from subscriptions to the Shopify platform.</p>\n<p>I asked Mullenweg about how the funding might help Automattic make WooCommerce more user-friendly and competitive. Despite going up against the seemingly indomitable e-commerce powerhouses, Mullenweg sees WooCommerce&#8217;s platform an opportunity for growing independent stores on the web.</p>\n<p>&#8220;WooCommerce already represents the best way to marry content and commerce, and has a huge advantage being so tightly integrated from a user perspective with WordPress itself,&#8221; Mullenweg said. &#8220;However it also inherits some of the barriers WordPress has to adoption, particularly from new users. I think that Gutenberg will help a ton, as it&#8217;s better than any of the builders the eCommerce players have, and when that gets combined with the flexibility, control, and scalability you get from WP + WooCommerce it&#8217;s going to be huge. There&#8217;s a ton of work left to do, though, and we&#8217;re trying to grow that team as quickly as possible to keep up with the opportunity.&#8221;</p>\n<p>Mullenweg declined to share any information about Jetpack and WooCommerce&#8217;s revenue today but confirmed that they have not yet eclipsed WordPress.com.</p>\n<p>&#8220;What I can say is that WP.com is still our biggest business, and WooCommerce was our fastest growing last year,&#8221; he said.</p>\n<p>Automattic&#8217;s most recent round of funding will help the company better monetize these products that have grown in tandem with WordPress&#8217; market share, which W3Techs puts at <a href=\"https://w3techs.com/technologies/details/cm-wordpress/all/all\" rel=\"noopener noreferrer\" target=\"_blank\">34.5%</a> of the top 10 million websites. Independent stores sitting on top of this large chunk of the web represent a significant market that Automattic is currently dominating in the WordPress space.</p>\n<p>The Tumblr acquisition also affords another opportunity to introduce e-commerce solutions to more of Automattic&#8217;s customers. Mullenweg previously said the Tumblr app receives 20X more daily signups than the WordPress mobile app. The social network/blogging hybrid also has a significantly younger user base, based on <a href=\"https://weareflint.co.uk/main-findings-social-media-demographics-uk-usa-2018\" rel=\"noopener noreferrer\" target=\"_blank\">a 2018 study</a> that found 43 percent of internet users between the ages of 18 to 24 years old used Tumblr. It&#8217;s an untapped market for e-commerce, as Tumblr users who want to sell currently have to use a service like Shopify or Ecwid and generate a Tumblr-compatible widget.</p>\n<p>Mullenweg said the acquisition hasn&#8217;t closed yet but Automattic may explore e-commerce on Tumblr in 2020.</p>\n<p>&#8220;Once it closes there will be a few months of normal integration work and getting the teams working together, making sure we have harmonized policies on support, content moderation, anti-spam, ads, and all of those lower-level things,&#8221; he said. &#8220;Beyond that I’ve seen what you’re seeing — a lot of Tumblr users want access to more customization and e-Commerce. There are no specific plans yet but I imagine that’s something the team will consider for next year’s roadmap.&#8221;</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 19 Sep 2019 16:15:30 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:13;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"Matt: Automattic’s Series D\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:22:\"https://ma.tt/?p=50121\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"https://ma.tt/2019/09/series-d/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3727:\"<p>Today <a href=\"https://automattic.com/\">Automattic</a> announced it has closed a new $300 million Series D, with <a href=\"https://www.salesforce.com/company/ventures/\">Salesforce Ventures</a> taking the entire round. This puts us at a post-round valuation of $3 billion, three times what it was after our last fundraising round in 2014. It&#8217;s a tremendous vote of confidence for Automattic and for the open web.</p>\n\n\n\n<p>I met <a href=\"https://twitter.com/Benioff\">Marc Benioff</a> earlier this year, and it became obvious to both of us that <a href=\"https://salesforce.com/\">Salesforce</a> and Automattic shared a lot of principles and philosophies. Marc is a mindful leader and his sensibilities and sense of purpose feel well aligned with our own mission to make the web a better place. He also helped open my eyes to the incredible traction WordPress <a href=\"https://wpvip.com/\">and WP VIP</a> has seen in the enterprise market, and how much potential there still is there. I’ve also loved re-connecting with <a href=\"https://twitter.com/btaylor\">Bret Taylor</a> who is now Salesforce’s President and Chief Product Officer. Bret’s <a href=\"https://en.wikipedia.org/wiki/Bret_Taylor\">experience</a> across Google Maps, Friendfeed, Facebook, Quip, and now transforming Salesforce makes him one of the singular product thinkers out there and our discussion of Automattic’s portfolio of services have been very helpful already.</p>\n\n\n\n<p>For Automattic, the funding will allow us to accelerate our roadmap (perhaps by double) and scale up our existing products—including <a href=\"https://wordpress.com/\">WordPress.com</a>, <a href=\"https://wpvip.com/\">WordPress VIP</a>, <a href=\"https://woocommerce.com/\">WooCommerce</a>, <a href=\"https://jetpack.com/\">Jetpack</a>, and (in a few days when it closes) <a href=\"https://www.tumblr.com/\">Tumblr</a>. It will also allow us to increase investing our time and energy into the future of the open source <a href=\"https://wordpress.org/\">WordPress</a> and <a href=\"https://wordpress.org/gutenberg/\">Gutenberg</a>.</p>\n\n\n\n<p>The Salesforce funding is also a vote of confidence for the future of work. Automattic has grown to more than 950 employees working from 71 countries, with no central office for several years now. <a href=\"https://distributed.blog/\">Distributed work</a> is going to reshape how we spread opportunity more equitably around the world. There continue to be new heights shown of what can be achieved in a distributed fashion, with <a href=\"https://about.gitlab.com/2019/09/17/gitlab-series-e-funding/\">Gitlab announcing a round at $2.75B earlier this week</a>.</p>\n\n\n\n<p>Next year Automattic celebrates 15 years as a company! The timing is fortuitous as we&#8217;ve all just returned from <a href=\"https://ma.tt/2018/10/the-importance-of-meeting-in-person/\">Automattic&#8217;s annual Grand Meetup</a>, where more than 800 of us got together in person to share our experiences, explore new ideas, and have some fun. I am giddy to work alongside these wonderful people for another 15 years and beyond.</p>\n\n\n\n<p>If you&#8217;re curious my previous posts on our fundraising, here&#8217;s our <a href=\"https://ma.tt/2006/04/a-little-funding/\">2006 Series A</a>, <a href=\"https://ma.tt/2008/01/act-two/\">2008 Series B</a>, <a href=\"https://ma.tt/2013/05/automattic-secondary/\">2013 secondary</a>, and <a href=\"https://ma.tt/2014/05/new-funding-for-automattic/\">2014 Series C</a>. As before, happy to answer questions in the comments here. <a href=\"https://techcrunch.com/2019/09/19/automattic-raises-300-million-at-3-billion-valuation-from-salesforce-ventures/\">I also did an exclusive interview with Romain Dillet on (WP-powered) Techcrunch</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 19 Sep 2019 13:01:36 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Matt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:14;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:103:\"WPTavern: Gutenberg 6.5 Adds Experimental Block Directory Search to Inserter and New Social Links Block\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=94000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:114:\"https://wptavern.com/gutenberg-6-5-adds-experimental-block-directory-search-to-inserter-and-new-social-links-block\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3773:\"<p>Gutenberg 6.5 was released today with a rough prototype that adds one-click search and installation of blocks from the block directory to the inserter. Selected blocks are automatically installed as a plugin in the background and inserted into the editor with one click.</p>\n<p><a href=\"https://i0.wp.com/wptavern.com/wp-content/uploads/2019/09/block-directory-experiment.gif?ssl=1\"><img /></a></p>\n<p>The <a href=\"https://github.com/WordPress/gutenberg/pull/17431\" rel=\"noopener noreferrer\" target=\"_blank\">pull request</a> for the experiment indicates that it&#8217;s still very much a work in progress. It extends the inserter to fetch a list of suggestBlocks similar to reusableBlocks, and the list is currently served from a mock API.</p>\n<p>The prototype is can be turned on under the <strong>Gutenberg > Experiments</strong> menu, a relatively new Settings page that was <a href=\"https://github.com/WordPress/gutenberg/pull/16626\" rel=\"noopener noreferrer\" target=\"_blank\">added in Gutenberg 6.3</a>. This menu also allows testers to enable the experimental Navigation Menu Block, Widgets Screen, and Legacy Widget Block.</p>\n<p><a href=\"https://i0.wp.com/wptavern.com/wp-content/uploads/2019/09/Screen-Shot-2019-09-18-at-8.46.59-PM.png?ssl=1\"><img /></a></p>\n<p>Block Navigation has also been added to the experimental Navigation Block in this release. This addition is considered a first start that is expected to evolve over time.</p>\n<p><a href=\"https://i2.wp.com/wptavern.com/wp-content/uploads/2019/09/block-navigator.png?ssl=1\"><img /></a></p>\n<p>&#8220;Regardless of how the UI evolves for this block, I think there will always be a need for representing the menu structure as a child block tree with all menu hierarchies mapped out consistently and not hidden (dropdowns, etc),&#8221; Gutenberg engineer Matias Ventura <a href=\"https://github.com/WordPress/gutenberg/issues/16812\" rel=\"noopener noreferrer\" target=\"_blank\">said</a>.</p>\n<p>&#8220;Luckily, we already have a view that handles that representation in the &#8216;block navigator.&#8217; That means if the navigation menu block is represented through child blocks, we&#8217;ll get this view for free.&#8221;</p>\n<p>In the future, Gutenberg engineers may allow for drag-and-drop reordering of items in the navigator and may explore rendering the view inline or in a modal launched from the navigation menu block.</p>\n<h3>Gutenberg 6.5 Adds New Social Links Block</h3>\n<p>Gutenberg 6.5 also adds a new social links block under the widgets panel. It allows users to place social links anywhere within the content by clicking on the icons and pasting in their social URLs. The gif below demonstrates how the block works, although the grey placeholder icons have since been removed in favor of opacity changes to indicate unconfigured blocks.</p>\n<p><a href=\"https://i1.wp.com/wptavern.com/wp-content/uploads/2019/09/social-links-block.gif?ssl=1\"><img /></a></p>\n<p>This release introduces a handful of other notable updates, including support for <a href=\"https://github.com/WordPress/gutenberg/pull/17253\" rel=\"noopener noreferrer\" target=\"_blank\">border radius changes in the button block</a>, support for <a href=\"https://github.com/WordPress/gutenberg/pull/17101\" rel=\"noopener noreferrer\" target=\"_blank\">adding captions to images in the Gallery block</a>, and the addition of <a href=\"https://github.com/WordPress/gutenberg/pull/16490\" rel=\"noopener noreferrer\" target=\"_blank\">local autosaves</a>.</p>\n<p>The 6.5 release post has not yet been published but the plugin update is available in the admin and a full list of enhancements and bug fixes can be found in the <a href=\"https://wordpress.org/plugins/gutenberg/#developers\" rel=\"noopener noreferrer\" target=\"_blank\">changelog</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 19 Sep 2019 03:41:01 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:15;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:110:\"WPTavern: EditorsKit Adds Nofollow Options for Links, Fixes Bug with Gutenberg Metaboxes Overlapping in Chrome\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=93971\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:120:\"https://wptavern.com/editorskit-adds-nofollow-options-for-links-fixes-bug-with-gutenberg-metaboxes-overlapping-in-chrome\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3528:\"<p><a href=\"https://wordpress.org/plugins/block-options/\" rel=\"noopener noreferrer\" target=\"_blank\">EditorsKit</a> is becoming somewhat of a &#8220;hotfix&#8221; plugin for Gutenberg, especially with the additions to the 1.14 release this week. Developer Jeffrey Carandang added new link formats for nofollow rel attribute options, along with a fix for an annoying bug in Chrome that causes Gutenberg metaboxes to overlap. He has been closely monitoring feedback on both Gutenberg and EditorsKit, introducing features for which users have an immediate need.</p>\n<p>Google recently announced <a href=\"https://wptavern.com/google-announces-new-ways-to-identify-nofollow-links-progress-on-related-gutenberg-ticket-is-currently-stalled\" rel=\"noopener noreferrer\" target=\"_blank\">new ways to identify nofollow links</a> with two additional rel attribute options for specifying links as sponsored and/or user-generated content. The Gutenberg core team has expressed hesitation on a <a href=\"https://github.com/WordPress/gutenberg/pull/16609#issuecomment-527921959\">PR that would add nofollow link options</a>, invoking WordPress&#8217; <a href=\"https://wordpress.org/about/philosophy/\" rel=\"noopener noreferrer\" target=\"_blank\">80/20 rule</a>.</p>\n<p>Since the related PR doesn&#8217;t seem to be a priority, with no movement for two weeks, Carandang decided to add the nofollow and sponsored rel attribute options to EditorsKit, so users can start following Google&#8217;s recommendations without having to switch to HTML mode. He also managed to make it work with the version of Gutenberg included in core.</p>\n<p><a href=\"https://cloudup.com/cqP3APNEF3j\"><img src=\"https://i1.wp.com/cldup.com/kLcfVSl1UW.gif?resize=627%2C495&ssl=1\" alt=\"Nofollow link options\" width=\"627\" height=\"495\" /></a></p>\n<p>Chrome users may have noticed that <a href=\"https://github.com/WordPress/gutenberg/issues/17406\" rel=\"noopener noreferrer\" target=\"_blank\">the block editor has a nasty bug with metaboxes overlapping</a>, obscuring the main content area. This problem was introduced in the recent Chrome 77 update and is present on WordPress 5.2.3 and older versions.</p>\n<p><a href=\"https://i1.wp.com/wptavern.com/wp-content/uploads/2019/09/metabox-overlapping.png?ssl=1\"><img /></a></p>\n<p>Chrome developers are aware of the issue and a fix will be in the next release. Version 78 is expected October 22. Since it is a bug with Chrome, the Gutenberg team has opted not to release a fix/workaround for this problem. In the meantime, they recommend updating to WordPress 5.3 if it is released before the Chrome bug is fixed. This isn&#8217;t likely, as 5.3 is scheduled for mid-November.</p>\n<p>The Gutenberg team also recommend using a different browser or installing the Gutenberg plugin to fix the issue. Andrea Fercia noted on the ticket that the plugin is still listed among WordPress&#8217; beta plugins and may not be advisable to use in production on some sites. Users with a technical background can implement one of several CSS solutions in the ticket, but this is a frustrating bug for users who don&#8217;t know how to apply code fixes.</p>\n<p>Carandang added a fix for this bug to the most recent version of EditorsKit. So far his strategy of being responsive to users&#8217; requests seems to have been successful, as his Gutenberg utility plugin now has more than 1,000 active installs. He said he is happy to add hot fixes for EditorsKit users and will remove them once the fixes have been added to Chrome and/or the block editor.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 18 Sep 2019 19:42:11 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:16;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:93:\"WPTavern: Behind New Packages Project Lead, Theme Review Team Launches Admin Notices Solution\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=93936\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:103:\"https://wptavern.com/behind-new-packages-project-lead-theme-review-team-launches-admin-notices-solution\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:7754:\"<p>As part of the WordPress Theme Review Team&#8217;s plan to <a href=\"https://wptavern.com/wordpress-theme-review-team-seeks-to-curb-obtrusive-admin-notices-with-new-requirement-to-follow-core-design-patterns\">curb obtrusive admin notices</a>, the team pushed version 1.0 of its <a href=\"https://github.com/WPTRT/admin-notices\">Admin Notices</a> package to the public.  The new package provides a standard API for theme authors to display admin notices.</p>\n\n\n\n<p>Ari Stathopoulos took over as the packages project lead in late August.  Stathopoulos is the primary developer and creator of the highly-rated <a href=\"https://kirki.org/\">Kirki customizer framework</a>, which currently has 300,000+ active installs as a plugin.  However, the framework is also available as separate modules that theme authors can bundle within their themes.</p>\n\n\n\n<p>The Admin Notices package is the third package produced by the team and the first that Stathopoulos has spearheaded.</p>\n\n\n\n<p>Adding a basic admin notice in WordPress is relatively easy for most developers. However, handling features such as persistent dismissible actions is more complex.  The Admin Notices package handles this out of the box.</p>\n\n\n\n<p>Some options for the package include the ability to:</p>\n\n\n\n<ul><li>Set a title and message.</li><li>Select a type that adds in the appropriate UI class (info, success, warning, error).</li><li>Choose which admin screens the notice appears on.</li><li>Limit the message by user capability so that it doesn&#8217;t appear for all users.</li></ul>\n\n\n\n<div class=\"wp-block-image\"><a href=\"https://i0.wp.com/wptavern.com/wp-content/uploads/2019/09/wptrt-admin-notices-002.png?ssl=1\" target=\"_blank\" rel=\"noreferrer noopener\"><img /></a></div>\n\n\n\n<p>The above screenshot shows an example of a basic admin notice output for the four available types.  The dismiss action is handled by JavaScript and works without reloading the page.  Once dismissed, users will no longer see the notice.</p>\n\n\n\n<p>&#8220;I think the hardest thing about it was deciding how restrictive we wanted it to be,&#8221; said Stathopoulos of the challenges building this package. The package restricts theme authors to paragraph, link, bold, and italic elements in version 1.0.  It doesn&#8217;t leave a lot of room for experimentation, but standardization is the goal.  The more elements allowed, the more likely the tool doesn&#8217;t solve the team&#8217;s problem of keeping admin notices unobtrusive.</p>\n\n\n\n<h2>User Notifications Are a Complex Problem</h2>\n\n\n\n<p>WordPress doesn&#8217;t provide a formal API for user notifications.  However, it does provide a standard set of CSS classes and a hook for attaching notices.  The Codex also has some examples of <a href=\"https://codex.wordpress.org/Plugin_API/Action_Reference/admin_notices\">best practices</a>.  The lack of a formal API has left theme and plugin authors to their own devices.  Users have suffered because of wildly varying implementations and common issues such as <a href=\"https://wptavern.com/please-stop-abusing-wordpress-admin-notices\">non-dismissible advertisements</a>.</p>\n\n\n\n<p>Tim Hengeveld <a href=\"https://core.trac.wordpress.org/ticket/43484\">proposed a Notification Center API</a> on Trac in 2018.  The ticket has a healthy, ongoing discussion and some UI proposals.  The proposal is still marked as &#8220;Awaiting Review,&#8221; and it&#8217;s unlikely that it&#8217;ll ship anytime sooner than WordPress 5.4 or later.</p>\n\n\n\n<p>Currently, many plugins and themes also use admin notices for user onboarding, which is a separate problem in need of a solution.  There&#8217;s a 4-year-old ticket that discusses <a href=\"https://core.trac.wordpress.org/ticket/34116\">WordPress new-user onboarding</a>, but there&#8217;s not much movement to solve this problem for plugins and themes.</p>\n\n\n\n<p>While the TRT&#8217;s package doesn&#8217;t tackle all issues associated with user notifications, it does help limit some of the short-term damage.</p>\n\n\n\n<h2>More Packages in the Works</h2>\n\n\n\n<p>More packages are currently being built and others are in the planning stages.</p>\n\n\n\n<p>The goal of the overall project is to provide theme authors with drop-in modules they can bundle with their themes.  The packages are all written in PHP 5.6+ in hopes to push theme authors toward more modern coding practices (relatively speaking, since PHP 7.4 will be released this year).  It will also help streamline the review process if more theme authors adopt the packages rather than building everything in-house.</p>\n\n\n\n<p>&#8220;If we build packages for the most-requested things, we&#8217;ll hopefully empower people to build quality themes easier,&#8221; explained Stathopoulos.  &#8220;I think of packages as building blocks for themes.&#8221;</p>\n\n\n\n<p>Stathopoulos is working on a customizer control for selecting a color with alpha transparency, which could be released as early as next week.  It will provide theme users with more control over how their colors appear for themes that implement it.</p>\n\n\n\n<p>&#8220;After we build the basics I want to focus on packages that would enhance a11y and privacy in themes &#8211; two areas where themes are falling short,&#8221; he said.  &#8220;It would help a lot of people, and that is ultimately our goal.&#8221;</p>\n\n\n\n<p>Theme authors have grown accustomed to installing JavaScript and CSS packages via NPM over the past few years.  However, their use of Composer as a PHP dependency manager has lagged.  In some part, this could be due to WordPress&#8217; previous reluctance to bump its minimum version of PHP.  Many packages available on Packagist, the main Composer repository, do not work with older versions of PHP.  WordPress&#8217; recent jump to PHP 5.6+ and plans to move to 7+ in the future may push more theme authors to consider PHP dependency management.</p>\n\n\n\n<p>The TRT has a <a href=\"https://packagist.org/packages/wptrt/\">Packagist account</a> and has made all of its packages installable via Composer.</p>\n\n\n\n<h2>No Requirement to Use Packages Yet</h2>\n\n\n\n<p>There are no current plans for the TRT to start requiring the use of these packages for specific features, but a few team members have proposed doing so.</p>\n\n\n\n<p>&#8220;There are valid reasons to enforce the use of these packages, but it can&#8217;t happen overnight,&#8221; said Stathopoulos. &#8220;We want themes in the repository to have some standards, it can not be the wild west. Code quality has to improve. These packages are a way to make life easier for people, and ultimately save time for everyone.&#8221;</p>\n\n\n\n<p>Stathopoulos is open to theme authors building custom implementations if they can improve upon what the team has built, but he prefers that authors &#8220;discuss their ideas in the package repository and submit a pull-request so that the whole community can benefit.&#8221;</p>\n\n\n\n<p>Getting theme authors involved is one area where the team has struggled.  Contributing to the packages could benefit the entire community.  &#8220;Most people don&#8217;t even know about them since they are not listed anywhere,&#8221; said Stathopoulos.  &#8220;Theme Authors currently have to look for them, and in order to look for them someone needs to tell them they exist (which doesn&#8217;t happen).&#8221;  One of the next steps would be getting the packages listed in the TRT&#8217;s documentation.</p>\n\n\n\n<p>Working together on common theme features could provide a bridge between theme authors and reviewers, allowing them to solve issues together.</p>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<p><em>Note: The author of this article was involved with the initial theme packages proposal and a developer on its initial package releases.</em></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 18 Sep 2019 18:06:27 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Justin Tadlock\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:17;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:75:\"HeroPress: Life Stacks Up –  From A Small Town Boy To A Geek Entrepreneur\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://heropress.com/?post_type=heropress-essays&p=2963\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:192:\"https://heropress.com/essays/life-stacks-up-from-a-small-town-boy-to-a-geek-entrepreneur/#utm_source=rss&utm_medium=rss&utm_campaign=life-stacks-up-from-a-small-town-boy-to-a-geek-entrepreneur\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:10001:\"<img width=\"960\" height=\"480\" src=\"https://s20094.pcdn.co/wp-content/uploads/2019/09/091719-min-1024x512.jpg\" class=\"attachment-large size-large wp-post-image\" alt=\"Pull Quote: For me, WordPress means freedom, self expression, and adaptability.\" /><p>A six year old is in deep thought. His gaze stuck on an intricate structure made with wooden sticks – a large rectangular box in the centre, a tall stick, some knitting threads running up and down. All this is arranged in a shelf in a common terrace wall of two middle class Indian homes.</p>\n<p>The boy is holding what seems like a paper cup telephone – two paper cups with a thread running between. Soon, he smiles and throws one paper cup over the wall to the other side. His counterpart on the other side picks up his side of the &#8220;telephone&#8221; and they start talking.</p>\n<p>&#8220;I made a TV using the sticks. I&#8217;m now going to set up a power line&#8230;&#8221;</p>\n<p>&#8220;Awesome, I&#8217;ll be there after my homework!&#8221;</p>\n<p>Aha! Now it makes sense. The kids are pretend-playing, and this one in particular is into science and model making. He has made an elaborate television model with limited resources.</p>\n<p>Fast forward six years, and the boy is writing programs on a school computer. Couple years later he’s making model rockets and planes.</p>\n<p>Fast forward another six years, and the boy is sitting with Bill Gates, being one of the eight national winners in a competition.</p>\n<p>He goes on to launch India&#8217;s first electronic magazine, a web solutions business, local language versions of Linux and OpenOffice, a content management system, few books and a string of businesses that have made millions of dollars.</p>\n<p>And he fondly remembers meeting Matt Mullenweg and Chris Lema at WordCamp San Francisco in 2014. His web agency business had gone bust around 2011, and his WordPress plugins business was picking up. Those meetings strengthened his conviction for WordPress and he doubled down on his plugins. Today his team takes care of 200,000+ active users across two dozen of their plugins – both free and premium.</p>\n<p>That small town boy is me.</p>\n<h3>Who I Am</h3>\n<p>My name is Nirav Mehta. I live in Mumbai, and I&#8217;m super passionate content, commerce and contribution. I run three businesses – two in WordPress (<a href=\"https://www.storeapps.org/\">StoreApps.org</a> – where we solve problems for growing WooCommerce stores,<a href=\"http://icegram.com/\"> Icegram.com</a> – where creators find tools to inspire, engage and convert their audiences), and one SaaS business (<a href=\"https://www.putler.com/\">Putler</a> – meaningful analytics for e-commerce).</p>\n<p>I have done some or other form of writing for over two decades. I&#8217;ve done open source for my whole life and used Drupal and Joomla earlier. As a matter of fact, I created a content management system using PHP back in 2000. But I liked the simplicity and community of WordPress. So when I wanted to start two blogs in 2006, I jumped on to WordPress.</p>\n<blockquote><p>And it was amazing. WordPress simplified a whole lot of things, allowed customization and had extensive plugin ecosystem.</p></blockquote>\n<p>I continued blogging and tinkering with WordPress. WordPress kept growing, and when I was looking for &#8220;the next big thing&#8221; around 2011, I figured I can bet on e-commerce with WordPress.</p>\n<p>There was no WooCommerce back then, and we built an extension to WPeC – an e-commerce plugin that was popular at that time. Smart Manager – the plugin we built – allowed managing products, orders and customers using an easy spreadsheet like interface. It quickly became popular. When WooCommerce came along, we ported our WPeC plugins to WooCommerce, and also became an official third-party developers with our Smart Coupons plugin. StoreApps – our WooCommerce plugins business continues to be our top business today.</p>\n<p>WordPress has changed my life. For me, WordPress means freedom, self expression and adaptability.</p>\n<h3>Where I Came From</h3>\n<p>I&#8217;m from a small town, I am not an engineer, I didn&#8217;t do an MBA. I don&#8217;t have a godfather. But I&#8217;ve always wanted to contribute to a larger community, I&#8217;m a stickler for elegant solutions that solve practical problems and I&#8217;m ready to delay gratification. I believe grit and humility are essential. I&#8217;m a curious lifetime learner. I&#8217;ve realized that money is important, it&#8217;s a great resource. But I&#8217;ve also learnt that the joy of seeing someone benefit from your work far surpasses anything else.</p>\n<p>WordPress fits perfectly here. It gives me a platform to reach out to the whole world. It&#8217;s built on community and greater good. There are lots of opportunities and entry barriers are low.</p>\n<h3>What WordPress Has Given Me</h3>\n<p>WordPress allowed me to exercise my creative skills and easily build solutions on top of the core platform. I am not a great marketer, and WordPress and WooCommerce enabled me to build strong businesses by tapping into their distribution prowess. WordPress was easy to learn, so when we found people with the right mindset, they became productive soon.</p>\n<p>Icegram – our onsite and email marketing plugins business – is a clear example of the power of WordPress. Icegram Engage shows popups, header-footer bars and many other types of visitor engagement and call to action messages. Maintaining such a solution on a large scale would require huge server costs and sys-op efforts. We could avoid all that because we could keep most of the functionality in WordPress. It also provided a cleaner and much better user experience than typical SaaS solutions. When I wrote the initial code for it, I wanted to keep the frontend logic in JavaScript – and of course, WordPress allowed doing that. Eventually, it was also easy to migrate to a hybrid model – where complex functions are performed on our servers and rest remains in WordPress.</p>\n<blockquote><p>WordPress has given me great friends. I&#8217;ve met so many talented people online and at WordCamps! Me and my WordPress friends have done amazing adventures together! And the circle keeps expanding. You will find amazing people in WordPress!</p></blockquote>\n<p>When you look at my life, and if important events were plotted as a chart, you won&#8217;t see a straight curve. It&#8217;s a bundle of long lull-times with gyrating ups and downs in between. I studied behavior patterns, data modelling and visualization for Putler – our multi-system analytics solution for online businesses. I also get to see numbers from many other businesses. I wanted to analyze how businesses work. What causes success.</p>\n<p>And one big, common takeaway &#8211; in both business and life &#8211; is that results are non-linear. There is no single cause to any result.</p>\n<h3>Back To You</h3>\n<p>It all starts simple. What you do today, is shaped by something you did earlier, and will shape something else you&#8217;ll do in the future.</p>\n<p>Every little act of courage, every little getting out of your comfort zone, every new thing you learn, every setback, every little success&#8230; It all keeps building who you are.</p>\n<p>You see, life stacks up!</p>\n<p>Do not despair, do not lose faith. Series of actions produce a result, and you have the ability to act.</p>\n<p>So stay on!</p>\n<div class=\"rtsocial-container rtsocial-container-align-right rtsocial-horizontal\"><div class=\"rtsocial-twitter-horizontal\"><div class=\"rtsocial-twitter-horizontal-button\"><a title=\"Tweet: Life Stacks Up &#8211;  From A Small Town Boy To A Geek Entrepreneur\" class=\"rtsocial-twitter-button\" href=\"https://twitter.com/share?text=Life%20Stacks%20Up%20%2D%20%20From%20A%20Small%20Town%20Boy%20To%20A%20Geek%20Entrepreneur&via=heropress&url=https%3A%2F%2Fheropress.com%2Fessays%2Flife-stacks-up-from-a-small-town-boy-to-a-geek-entrepreneur%2F\" rel=\"nofollow\" target=\"_blank\"></a></div></div><div class=\"rtsocial-fb-horizontal fb-light\"><div class=\"rtsocial-fb-horizontal-button\"><a title=\"Like: Life Stacks Up &#8211;  From A Small Town Boy To A Geek Entrepreneur\" class=\"rtsocial-fb-button rtsocial-fb-like-light\" href=\"https://www.facebook.com/sharer.php?u=https%3A%2F%2Fheropress.com%2Fessays%2Flife-stacks-up-from-a-small-town-boy-to-a-geek-entrepreneur%2F\" rel=\"nofollow\" target=\"_blank\"></a></div></div><div class=\"rtsocial-linkedin-horizontal\"><div class=\"rtsocial-linkedin-horizontal-button\"><a class=\"rtsocial-linkedin-button\" href=\"https://www.linkedin.com/shareArticle?mini=true&url=https%3A%2F%2Fheropress.com%2Fessays%2Flife-stacks-up-from-a-small-town-boy-to-a-geek-entrepreneur%2F&title=Life+Stacks+Up+%26%238211%3B++From+A+Small+Town+Boy+To+A+Geek+Entrepreneur\" rel=\"nofollow\" target=\"_blank\" title=\"Share: Life Stacks Up &#8211;  From A Small Town Boy To A Geek Entrepreneur\"></a></div></div><div class=\"rtsocial-pinterest-horizontal\"><div class=\"rtsocial-pinterest-horizontal-button\"><a class=\"rtsocial-pinterest-button\" href=\"https://pinterest.com/pin/create/button/?url=https://heropress.com/essays/life-stacks-up-from-a-small-town-boy-to-a-geek-entrepreneur/&media=https://heropress.com/wp-content/uploads/2019/09/091719-min-150x150.jpg&description=Life Stacks Up -  From A Small Town Boy To A Geek Entrepreneur\" rel=\"nofollow\" target=\"_blank\" title=\"Pin: Life Stacks Up &#8211;  From A Small Town Boy To A Geek Entrepreneur\"></a></div></div><a rel=\"nofollow\" class=\"perma-link\" href=\"https://heropress.com/essays/life-stacks-up-from-a-small-town-boy-to-a-geek-entrepreneur/\" title=\"Life Stacks Up &#8211;  From A Small Town Boy To A Geek Entrepreneur\"></a></div><p>The post <a rel=\"nofollow\" href=\"https://heropress.com/essays/life-stacks-up-from-a-small-town-boy-to-a-geek-entrepreneur/\">Life Stacks Up &#8211;  From A Small Town Boy To A Geek Entrepreneur</a> appeared first on <a rel=\"nofollow\" href=\"https://heropress.com\">HeroPress</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 18 Sep 2019 03:00:17 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"Nirav Mehta\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:18;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:75:\"WPTavern: GPL Author Richard Stallman Resigns from Free Software Foundation\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=93898\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:86:\"https://wptavern.com/gpl-author-richard-stallman-resigns-from-free-software-foundation\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:8749:\"<p><a href=\"https://stallman.org/\" rel=\"noopener noreferrer\" target=\"_blank\">Richard Stallman</a>, free software movement activist and originator of the &#8220;copyleft&#8221; concept, has <a href=\"https://www.fsf.org/news/richard-m-stallman-resigns\" rel=\"noopener noreferrer\" target=\"_blank\">resigned from his position as director of the board and president of the Free Software Foundation (FSF)</a>, which he established in 1985. This resignation comes on the heels of his resignation from MIT’s Computer Science and Artificial Intelligence Lab (CSAIL) after remarks he made regarding a 17-year old victim of sex trafficker Jeffrey Epstein, characterizing her as seeming “entirely willing.”</p>\n<p>Stallman <a href=\"https://www.stallman.org/archives/2019-jul-oct.html#14_September_2019_(Statements_about_Epstein)\" rel=\"noopener noreferrer\" target=\"_blank\">blamed media coverage</a> for misinterpreting his comments as a defense of Epstein two days before announcing his <a href=\"https://www.stallman.org/archives/2019-jul-oct.html#16_September_2019_(Resignation)\" rel=\"noopener noreferrer\" target=\"_blank\">resignation from MIT</a> on his personal blog:</p>\n<blockquote><p>To the MIT community, I am resigning effective immediately from my position in CSAIL at MIT. I am doing this due to pressure on MIT and me over a series of misunderstandings and mischaracterizations.</p></blockquote>\n<p>The remarks in question were sent on a department-wide CSAIL mailing list in response to an MIT student email calling for a protest against Jeffrey Epstein’s donation to the school. Selam Jie Gano, the MIT graduate who exposed Stallman&#8217;s comments in a <a href=\"https://medium.com/@selamie/remove-richard-stallman-fec6ec210794\" rel=\"noopener noreferrer\" target=\"_blank\">post</a> on Medium, also leaked the full thread to <a href=\"https://www.vice.com/en_us/article/9ke3ke/famed-computer-scientist-richard-stallman-described-epstein-victims-as-entirely-willing\" rel=\"noopener noreferrer\" target=\"_blank\">Vice</a>.</p>\n<p>In the email thread, which was also circulated to undergraduate students, Stallman became pedantic about the definition of assault and the use of the term &#8216;rape&#8217; after a student pointed out the laws of the location and the victim&#8217;s age:</p>\n<blockquote><p>I think it is morally absurd to define “rape” in a way that depends on minor details such as which country it was in or whether the victim was 18 years old or 17.</p></blockquote>\n<p>These comments caused media organizations to dig up old posts from Stallman&#8217;s blog where he <a href=\"https://stallman.org/archives/2012-jul-oct.html#15_September_2012_(Censorship_of_child_pornography)\" rel=\"noopener noreferrer\" target=\"_blank\">demands an end to the censorship of &#8220;child pornography&#8221;</a> and <a href=\"https://stallman.org/archives/2006-may-aug.html?fbclid=IwAR09M66FT8o8cYpAZCkW07KCWwNtXWJgvAz02H5K6_iwrGyWIhY24OuJ5Js#05%20June%202006%20(Dutch%20paedophiles%20form%20political%20party)\" rel=\"noopener noreferrer\" target=\"_blank\">says</a> he is &#8220;skeptical of the claim that voluntarily pedophilia harms children.&#8221;</p>\n<p>Why Stallman felt it necessary to lend his controversial views to public comments on rape, assault, and child sex trafficking on a public mailing list is a mystery, but he has a long history of being outspoken when it comes to politics and civil liberties.</p>\n<p>This particular incident seemed to be the straw that broke the camel&#8217;s back, unleashing a flood of outrage from the the free software and broader tech communities who demanded Stallman&#8217;s removal from the FSF. Critics cited two decades of behaviors and statements that many have found to be disturbing and offensive. The Geek Feminism Wiki maintains a <a href=\"https://geekfeminism.wikia.org/wiki/Richard_Stallman\" rel=\"noopener noreferrer\" target=\"_blank\">catalog</a> that includes some of these references.</p>\n<p>&#8220;The free software community looks the other way while they build their empires on licenses that sustain Stallman&#8217;s power,&#8221; Software engineer  and founder of RailsBridge Sarah Mei <a href=\"https://twitter.com/sarahmei/status/1172283772428906496\" rel=\"noopener noreferrer\" target=\"_blank\">said</a> in a Tweetstorm calling on the FSF to remove Stallman from his positions of influence.</p>\n<p>&#8220;Your refusal to part ways with him &#8211; despite well-known incidents that have pushed women and others out of free software for decades &#8211; might have been ok 10 years ago. Maybe even two years ago. It&#8217;s not ok now.&#8221;</p>\n<p>The Software Freedom Conservancy also issued a <a href=\"https://sfconservancy.org/news/2019/sep/16/rms-does-not-speak-for-us/\" rel=\"noopener noreferrer\" target=\"_blank\">statement</a> calling for Stallman&#8217;s removal, titled &#8220;Richard Stallman Does Not and Cannot Speak for the Free Software Movement:&#8221;</p>\n<blockquote><p>When considered with other reprehensible comments he has published over the years, these incidents form a pattern of behavior that is incompatible with the goals of the free software movement. We call for Stallman to step down from positions of leadership in our movement.</p>\n<p>We reject any association with an individual whose words and actions subvert these goals. We look forward to seeing the FSF&#8217;s action in this matter and want to underscore that allowing Stallman to continue to hold a leadership position would be an unacceptable compromise. Most importantly, we cannot support anyone, directly or indirectly, who condones the endangerment of vulnerable people by rationalizing any part of predator behavior.</p></blockquote>\n<p>In a <a href=\"https://twitter.com/sarahmei/status/817378684638068736\" rel=\"noopener noreferrer\" target=\"_blank\">2017 Twitter thread</a>, Mei shared some context on her perspective of how Stallman&#8217;s influence has had a ripple effect of damage throughout the free software and open source communities:</p>\n<blockquote><p>In the 90s, Richard Stallman&#8217;s attitude towards women alienated me (and many others) from any interest in or support for &#8220;free software.&#8221; Viewing software through the Richard Stallman/GNU/&#8221;free as in freedom&#8221; lens would have run our industry into the ground. But it was the only alternative to proprietary software for ~20 years. So lots of folks worked on it despite finding Stallman problematic. This was the period when women largely declined to be part of computing, despite having pretty reasonable representation through the 80s.</p>\n<p>In the early 2000s, &#8220;open source&#8221; was a breath of fresh air. All of the usefulness! None of the built-in arrogance, privilege, or misogyny! But just because it wasn&#8217;t built in doesn&#8217;t mean it disappeared. As folks converted, the behaviors normalized by Stallman and others followed. Our drive now for diversity/inclusion wasn&#8217;t even conceivable until we discarded GNU, Stallman, and &#8220;free software&#8221; in favor of &#8220;open source.&#8221; It&#8217;s not an accident that the communities who still, today, embrace that outdated philosophy are the least diverse and the most hostile.</p></blockquote>\n<p>Stallman is the author of the GPL, which he wrote with the help of lawyers. For the most part, the free software community is able to objectively separate the license from the man who conceived it. The FSF&#8217;s sister organization in Europe <a href=\"https://fsfe.org/news/2019/news-20190917-01.html\" rel=\"noopener noreferrer\" target=\"_blank\">welcomed Stallman&#8217;s resignation</a>, echoing the sentiments of many who value his contributions but are unwilling to support his public representation of the organization:</p>\n<blockquote><p>On 16 September, one of our independent sister organizations, the US-based Free Software Foundation (FSF), announced the resignation of Richard M. Stallman as its president. While we recognize Stallman&#8217;s role in founding the Free Software movement, we welcome the decision.</p></blockquote>\n<p>The FSF has the opportunity to redefine itself after the resignation of its founder and supporters are hopeful that the free software movement can find a better way forward without Stallman&#8217;s influence.</p>\n<p>&#8220;I believe in Free Software and have published most of my work open source under LGPL/GPL/AGPL (notably including Cydia, Cycript, WinterBoard, ldid, and now my work on Orchid),&#8221; software engineer Jay Freeman <a href=\"https://twitter.com/saurik/status/1173810527853670402\" rel=\"noopener noreferrer\" target=\"_blank\">said</a>. &#8220;I&#8217;m glad to see Richard Stallman leave, and hope this starts a new era for the Free Software Foundation.&#8221;</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 17 Sep 2019 23:58:55 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:19;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:63:\"WPTavern: Yoast to Reward Contributors with the Yoast Care Fund\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=93862\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:74:\"https://wptavern.com/yoast-to-reward-contributors-with-the-yoast-care-fund\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4284:\"<p>Yoast, a company primarily known for its popular Yoast SEO plugin, announced a new program earlier this month called <a href=\"https://yoast.com/yoast-care/\">Yoast Care</a>.  The project aims to reward volunteers in the WordPress community.  &#8220;Care&#8221; stands for &#8220;Community Appreciation REwards.&#8221;</p>\n\n\n\n<p>Thousands of people contribute to WordPress.  Some choose to contribute code.  Others answer dozens of support questions every day in the forums.  Many spend their free time actively running or helping with the various <a href=\"https://make.wordpress.org\">Make WordPress</a> teams.  Many people do it because they love WordPress or have found a home within the community, but not all of them get paid for their work toward the open-source platform.</p>\n\n\n\n<p>Contributing untold hours is often a thankless job.  The many millions of WordPress users will never know about the time and effort these volunteers pour into the project.  They are in the trenches doing the work that keeps WordPress running.  They don&#8217;t wear capes, but they are the unsung heroes of the community.</p>\n\n\n\n<p>&#8220;We visit a lot of WordCamps and know a lot of people. We notice that some people have a hard time making a living from just their WordPress-work,&#8221; said Marieke van de Rakt, CEO of Yoast. &#8220;We wanted to do something for these people. We can&#8217;t hire them all.&#8221;</p>\n\n\n\n<p>Yoast Care will grant $500 to around 50 volunteers each year.  The company has already set aside $25,000 for the first year and has an open application process for nominating contributors.</p>\n\n\n\n<p>&#8220;We&#8217;re aiming for people that do not get paid for their work on WordPress,&#8221; said van de Rakt, founder of Yoast Academy and CEO of Yoast. &#8220;It has to be a person that is active in a Make WordPress team.&#8221;</p>\n\n\n\n<p>Some within the community have noted that Yoast is a for-profit company and that such programs are more about PR.  At the heart of the discussion is whether the fund will obscure the longstanding issue of how to properly fund contributors to open-source projects ($500 only goes so far).  Others have pointed out that the program is a step in the right direction and could push other companies to follow suit.</p>\n\n\n\n<p>The fund could help those who need it most.  It may help a volunteer replace their worn-out laptop, cover a freelancer during a low-income month, or boost someone in need of cash flow for their new WordPress project.</p>\n\n\n\n<p>The application process is open for anyone to fill out, but applicants can&#8217;t throw their own names into the hat.  The form for applying also asks for up to 3 references to confirm the nominee&#8217;s work. The team has already received many applications.</p>\n\n\n\n<p>Taco Verdonscho is leading the Yoast Care project for the company&#8217;s community team.  Such a program is no small task to run, and the rewards will be spread out through the year.  </p>\n\n\n\n<p>&#8220;It is a lot of work,&#8221; said van de Rakt.  &#8220;They&#8217;ve really thought it through (what the demands are), so I think it&#8217;s rather easy to decide whether or not the application can be rewarded. But, still after that, we need to do an interview and make it happen financially. So there are a lot of people involved.&#8221;</p>\n\n\n\n<p>Outside of a cash reward, Yoast will feature winners in a blog post that highlights his or her contributions to WordPress.</p>\n\n\n\n<p>Yoast is not new to community outreach and funding those in need.  Last year, the team <a href=\"https://wptavern.com/yoast-launches-fund-to-increase-speaker-diversity-at-tech-conferences\">launched the Yoast Diversity Fund</a>.  The program was created to help minorities and other underrepresented groups afford to speak at conferences.  It covers travel, accommodations, childcare, and other costs.  The Diversity Fund is still <a href=\"https://yoast.com/yoast-diversity-fund/apply/\">accepting applications</a>.</p>\n\n\n\n<p>Most within the inner WordPress community know at least one or two people who deserve some appreciation for all the work they do.  If you know someone who fits this description, you can nominate them via the <a href=\"https://yoast.com/community/yoast-care-fund/\">Yoast Care application page</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 17 Sep 2019 17:51:05 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Justin Tadlock\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:20;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:46:\"BuddyPress: BuddyPress 5.0.0 Release Candidate\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"https://buddypress.org/?p=307797\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:66:\"https://buddypress.org/2019/09/buddypress-5-0-0-release-candidate/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2517:\"<p>Hello!</p>\n\n\n\n<p>The first release candidate for BuddyPress 5.0.0 is now available for a last round of testing!</p>\n\n\n\n<p>This is an important milestone as we progress toward the BuddyPress 5.0.0 final release date. &#8220;Release Candidate&#8221; means that we think the new version is ready for release, but with more than 200,000 active installs, hundreds of BuddyPress plugins and Thousands of WordPress themes, it’s possible something was missed. BuddPress 5.0.0 is&nbsp;scheduled to be released&nbsp;on&nbsp;<strong>Monday, September 30</strong>, but we need&nbsp;<em>your</em>&nbsp;help to get there—if you haven’t tried 5.0.0 yet, <strong>now is the time!</strong> </p>\n\n\n\n<div class=\"wp-block-button aligncenter is-style-squared\"><a class=\"wp-block-button__link has-background\" href=\"https://downloads.wordpress.org/plugin/buddypress.5.0.0-RC1.zip\">Download and test the 5.0.0-RC1</a></div>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<p><em>PS: as usual you alternatively get a copy via our Subversion repository.</em></p>\n\n\n\n<p>A detailed changelog will be part of our official release note, but&nbsp;you can get a quick overview by reading the post about the&nbsp;<a href=\"https://buddypress.org/2019/08/buddypress-5-0-0-beta1/\">5.0.0 Beta1</a>&nbsp;release.</p>\n\n\n\n<div class=\"wp-block-image\"><img src=\"https://plugins.svn.wordpress.org/buddypress/assets/icon.svg\" alt=\"\" width=\"33\" height=\"33\" /></div>\n\n\n\n<h2>Plugin and Theme Developers </h2>\n\n\n\n<p>Please test your plugins and themes against BuddyPress 5.0.0. If you find compatibility problems, please be sure to post to this specific <a href=\"https://buddypress.org/support/topic/buddypress-5-0-0-release-candidate/\">support topic</a> so we can figure those out before the final release.</p>\n\n\n\n<h2>Polyglots, we need you!</h2>\n\n\n\n<p>Do you speak a language other than English?&nbsp;<a href=\"https://translate.wordpress.org/projects/wp-plugins/buddypress/\">Help us translate BuddyPress into many languages!</a>&nbsp;This release also marks the&nbsp;<a href=\"https://make.wordpress.org/polyglots/handbook/glossary/#string-freeze\">string freeze</a>&nbsp;point of the 5.0.0 release schedule.</p>\n\n\n\n<p><strong>If you think you&#8217;ve found a bug</strong>, please let us know reporting it on&nbsp;<a href=\"https://buddypress.org/support\">the support forums</a>&nbsp;and/or&nbsp;on&nbsp;<a href=\"https://buddypress.trac.wordpress.org/\">our development tracker</a>.</p>\n\n\n\n<p>Thanks in advance for giving the release candidate a test drive!</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 16 Sep 2019 23:15:07 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"imath\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:21;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:94:\"WPTavern: New Attock WordPress Meetup Empowers Pakistani Women Freelancers and Business Owners\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=93733\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:105:\"https://wptavern.com/new-attock-wordpress-meetup-empowers-pakistani-women-freelancers-and-business-owners\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:10042:\"<p><a href=\"https://2019.lahore.wordcamp.org/\" rel=\"noopener noreferrer\" target=\"_blank\">WordCamp Lahore</a> is getting rebooted on November 30 &#8211; December 1, at the National University of Computer and Emerging Sciences. The first edition of the event was planned for 2016 but was derailed by local disagreements and ultimately <a href=\"https://wptavern.com/karachi-to-host-first-wordcamp-in-pakistan-following-cancellation-of-wordcamp-lahore\" rel=\"noopener noreferrer\" target=\"_blank\">canceled</a>. For the past three years organizers have worked to strengthen their local meetup groups and follow suggestions from the WordPress Foundation before reapplying.</p>\n<p>WordCamp Lahore lead organizer <a href=\"https://www.meshpros.com/\" rel=\"noopener noreferrer\" target=\"_blank\">Muhammad Kashif</a> said his team is expecting more than 350 attendees, with the majority of them coming from the local community. The <a href=\"https://www.meetup.com/WordPress-Lahore/\" rel=\"noopener noreferrer\" target=\"_blank\">Lahore WordPress meetup group</a> is thriving and has grown to 4,383 members who regularly meet in various groups across the area.</p>\n<p>&#8220;We still have attendees from other cities and in closing I encourage them to start local chapters and offer any help they need,&#8221; Kashif said. He works as a Master Trainer for a government training program called <a href=\"https://www.erozgaar.pitb.gov.pk/\" rel=\"noopener noreferrer\" target=\"_blank\">eRozgaar</a> that trains unemployed youth in more than <a href=\"https://www.erozgaar.pitb.gov.pk/#erb08\" rel=\"noopener noreferrer\" target=\"_blank\">25 centers</a> across Punjab. The program was launched by the Punjab Government in March 2017 and <a href=\"https://www.erozgaar.pitb.gov.pk/#erb06\" rel=\"noopener noreferrer\" target=\"_blank\">WordPress is a major part of the eRozgaar curriculum</a>.</p>\n<p>&#8220;I manage the WordPress curriculum and in a recent update I have included community building, which is about Meetups and WordCamp events,&#8221; Kashif said. He reports that eRozgaar trainees have collectively earned more than $1 million US dollars to date after going through the 3.5 month-program.</p>\n<p>&#8220;The program is making a big impact, especially for women who can&#8217;t go out for jobs,&#8221; Kashif said. &#8220;They are making good money from freelancing and WordPress is playing a big part in that.&#8221;</p>\n<p>Kashif attributes some of Pakistan&#8217;s current economic challenges to a rapidly growing population and poor planning from past governments. The job opportunities have not grown as fast as the population, which was one of the reasons the government created the eRozgaar training program.</p>\n<p>As the result of having WordPress in the curriculum that is used across so many areas of Punjab, new meetups are starting to pop up in other cities. <a href=\"https://www.salmanoreen.com/\" rel=\"noopener noreferrer\" target=\"_blank\">Salma Noreen</a>, one of the program&#8217;s trainers who Kashif worked with, started <a href=\"https://www.meetup.com/Attock-WordPress-Meetup/\" rel=\"noopener noreferrer\" target=\"_blank\">a meetup in Attock</a> and is the first female WordPress meetup organizer in Pakistan. She plans to apply for WordCamp Attock in 2020.</p>\n<p><a href=\"https://i2.wp.com/wptavern.com/wp-content/uploads/2019/09/this-too.jpg?ssl=1\"><img /></a>Salma Noreen, first female WordPress meetup organizer in Pakistan</p>\n<p>&#8220;Attock is a small city but love for WordPress is big and I am so happy to see other women participating in the WordPress community,&#8221; Noreen said.</p>\n<p>&#8220;Every year, 1000+ people graduate in this city after 16 years of education. But we don&#8217;t have many jobs in this small city, so a small number of people who are backed by financially good families can move to other big cities like Lahore and Karachi for jobs and learning opportunities. The remaining people&#8217;s future is always a question mark.</p>\n<p>&#8220;Being a woman, I was more worried about women, as we have a cultural barrier that most women cannot get permission to relocate or go out of home for a regular 9 to 5 job. Introducing them to WordPress and then guiding them on how to find online clients has helped many to earn a decent living from home.&#8221;</p>\n<p>For the past 10 years, Noreen worked primarily as a freelancer and has completed more than 3,500 projects in web development. She is mentoring new WordPress users in her city to become successful freelancers and online store owners using resources like Udemy courses, YouTube, public blogs, and the WordPress codex.</p>\n<p>&#8220;I am still struggling but yes I am confident that one day everyone will be making enough from home,&#8221; she said.</p>\n<p>The Attock WordPress meetup is averaging 60-70 attendees in recent months, where members share their knowledge, experience, and best practices. For many of those attending, the meetup group was their first introduction to the software. Noreen describes the local community as &#8220;crazy about WordPress&#8221; and eager to have their own WordCamp in 2020.</p>\n<p><a href=\"https://i1.wp.com/wptavern.com/wp-content/uploads/2019/09/group-photo-2.jpg?ssl=1\"><img /></a>Attock WordPress meetup</p>\n<p>One meetup member, Uroosa Samman, is a graduate of Environmental Science studies but is now working with WordPress after attending the monthly meetups.</p>\n<p>&#8220;I didn&#8217;t have any WordPress or coding background during my education,&#8221; Samman said. &#8220;It was difficult for me to learn tech things. The meetups were very helpful and motivational for me, so I decided to start working in tech. Since the events were organized by a female organizer, it was comfortable for us to attend. I am able to provide my services as a freelancer and I am developing my own WordPress e-commerce store. If I get stuck in any issue related to WordPress, I immediately contact this community and they are always ready to help each other.&#8221;</p>\n<p><a href=\"https://i0.wp.com/wptavern.com/wp-content/uploads/2019/09/FB_IMG_1564500844418.jpg?ssl=1\"><img /></a>Women attending a recent Attock WordPress Meetup</p>\n<p>Shahryar Amin, a recent college graduate, was uncertain about his future until he discovered WordPress through Noreen&#8217;s support and the Attock meetup:</p>\n<blockquote><p>Just a few months ago, I was completely devastated financially. Pakistan is going through turbulent time, and its economy has never been performing this low. So, fresh graduates like me had their dreams absolutely shattered, when after four months of rigorous effort, we were unable to find a source of livelihood. That was truly a testing time.</p>\n<p>Moving back to my small city, I was not much hopeful for the future. My hometown, Attock, is a remote city with limited opportunities to advance one’s career. But ironically, that turned out to be a wrong assumption. I moved back to my city after nearly four years, and it had some phenomenal changes which I couldn’t resist noticing. The most<br />\nimpressive of them was WordPress meetups. </p>\n<p>That was the first time I became familiar with the platform. I was curious, and that got me to the very first meetup organized by Ms. Salma Noreen. She is a remarkable soul, and I can’t thank her more for putting up such effort for an ignored city like ours. I learned my basics from these meetups, and as my interest become my passion, I was spending more and more hours on learning WordPress through the internet. I had no programming skills, but fortunately one don’t need any to setup a website on WordPress. </p>\n<p>As I delved further into it, I discovered some very useful plugins, like Elementor, Divi and Visual composer, and at that moment I decided to become a designer using WordPress. I won’t say that I have become an expert in WordPress, but I am paying back the community by sharing my knowledge as a speaker at the very last meetup on July 30. Also, I have been working as a freelance designer on various online platforms, and WordPress expertise has truly been rewarding me financially.</p></blockquote>\n<p><a href=\"https://i2.wp.com/wptavern.com/wp-content/uploads/2019/09/Screen-Shot-2019-09-16-at-3.01.35-PM.png?ssl=1\"><img /></a>Shahryar Amin speaking at a recent Attock WordPress meetup</p>\n<p>Attock resident Sania Nisar has a degree in software engineering and used to spend several days creating a simple website before discovering WordPress. She has never had any formal training through paid courses but is now working as a WordPress professional with the knowledge she gained from attending WordPress meetups and online resources.</p>\n<p>&#8220;WordPress Attock is playing a vital role in empowering women in my vicinity,&#8221; Nisar said. &#8220;It is difficult for the women of Attock to travel to big cities like Islamabad to gain knowledge. However, WordPress Attock has efficiently solved this problem by providing an engaging learning platform for the women of this city. Today I am a successful freelancer and a WordPress professional.&#8221;</p>\n<p><a href=\"https://i2.wp.com/wptavern.com/wp-content/uploads/2019/09/meetup1.jpg?ssl=1\"><img /></a></p>\n<p>Noreen said her team hopes to bring 15 to 20 people from Attock to attend WordCamp Lahore. The trip is expensive and takes approximately seven hours so not many will be able to make it but there will be other camps in the region that are nearer for Attock residents.</p>\n<p>Last year a WordCamp was held in Islamabad, and the second WordCamp Karachi took place in August 2019. WordCamp Lahore will be Pakistan&#8217;s fourth WordCamp, held in the country&#8217;s second-most populous city. Attendees will have the opportunity to meet and connect with WordPress professionals and enthusiasts from across Pakistan. Speaker applications are open and sessions will be held in Urdu and English. Regular admission is Rs 1,700.00 and <a href=\"https://2019.lahore.wordcamp.org/tickets/\" rel=\"noopener noreferrer\" target=\"_blank\">tickets are now on sale</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 16 Sep 2019 22:04:38 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:22;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:40:\"WPTavern: Justin Tadlock Joins WP Tavern\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=93843\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:51:\"https://wptavern.com/justin-tadlock-joins-wp-tavern\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4839:\"<p>The kid scampered ahead of his classmates.  He wanted to be one of the first to set foot in the building, but he stopped as he got to the first step.  He looked up to count the floors.  One, two, three…it wasn&#8217;t <em>The Times</em>.  He was awestruck all the same.  <em>The Birmingham News</em>.</p>\n\n\n\n<p>Truth be told, the kid was a man grown in 2007, but he was still a kid at heart.  His graduation was fast approaching.  He&#8217;d soon leave The Plains, his home of Auburn, Alabama.  He needed to get some experience at smaller, local papers before landing a job at <em>The Birmingham News</em>.  He didn&#8217;t know it while standing on those steps, but before the day was out, he&#8217;d return home and start filling out applications for every small paper across the state.</p>\n\n\n\n<p>His only real experience with newspapers outside of university was reading about J. Jonah Jameson and Peter Parker or following the exploits of Clark Kent and Lois Lane.  He had this 1950s-esque picture in his mind of a cigar-smoking reporter wearing a cheap suit and fedora while pounding the keys of his typewriter.  He&#8217;d be working toward a Pulitzer-winning story.  Other reporters would sprint by his desk with their next big lead.  The editor would yell orders across the room as everyone rushed to beat the deadline.</p>\n\n\n\n<p>Reality didn&#8217;t exactly match the picture in his mind.  The kid knew it wouldn&#8217;t.  On those steps of the recently-built news office, he&#8217;d need to let go of the fantasy.  He breathed deep and stepped forward at the instruction of his professor.</p>\n\n\n\n<p>Field trips were a rare occurrence in college, but this professor was different.  His classroom was merely a part of the learning process.  Journalism was more than memorizing rules and writing a few papers each semester.  The only way to understand journalism was to step foot into an office and observe.</p>\n\n\n\n<p>That&#8217;s the day the kid&#8217;s life changed forever.  He knew what he wanted to do after he graduated.  He wanted to work at a small-town newspaper by day and pen the great Southern American novel by night.</p>\n\n\n\n<p>The roads people travel are rarely the direct route they set out on.</p>\n\n\n\n<p>A few months later, the kid was living in Atlanta, Georgia, and traveling to Home Depots across half the state as a vendor.  During his summer in the Peach State, he got an opportunity to visit the CNN Center.  It was a thing of beauty.  With renewed vigor, he put in more applications at small papers.  Either no one was hiring or he didn&#8217;t have the experience.</p>\n\n\n\n<p>He applied for other jobs.  Once he interviewed to be a used-car salesman.  However, he landed a job teaching in South Korea.  While imparting the few things he picked up about the English language to young minds, he began building his reputation in the WordPress community.  Before leaving the country, he&#8217;d bootstrapped his own WordPress theme shop in 2008.</p>\n\n\n\n<p>After 11 years, the kid stumbled upon an opportunity to join the staff at WP Tavern, a chance to combine his passion for WordPress and writing.</p>\n\n\n\n<p>Now a new chapter in his life begins.</p>\n\n\n\n<h2>Allow Me to Introduce Myself</h2>\n\n\n\n<p>My name is Justin Tadlock.  I&#8217;m the new staff writer for WP Tavern.  It&#8217;s my hope that I can bring a different perspective and produce many engaging stories for you to read long into the future.</p>\n\n\n\n<p>You&#8217;ve probably used at least a few lines of my code to run your web site.  I&#8217;ve contributed to WordPress in some form or fashion since I started using the software in 2005.  I formerly ran Theme Hybrid, which was one of the earliest and longest-running theme shops in the WordPress ecosystem.  I also co-authored <em>Professional WordPress Plugin Development</em>.</p>\n\n\n\n<p>Over the coming weeks and months, I plan to get to know more of you within the WordPress community.  I&#8217;ve been an avid reader of WP Tavern since its inception.  It&#8217;s always held a special place in my heart, and I want it to be an environment where everyone feels welcome to discuss all the things happening in the WordPress world.</p>\n\n\n\n<p>It will take me a bit to get a feel for the new writing position and find my voice.  I may have a few hit-or-miss stories out of the gates, but I&#8217;m always open to feedback and criticism from our readers.  Ultimately, it&#8217;s my job to serve you the stories that you enjoy reading.</p>\n\n\n\n<p>I&#8217;m stoked for the opportunity to get to know more of you.  I want to help you share your stories.  I want the community to know the people behind this platform that so many of us rely on in our personal and professional lives.</p>\n\n\n\n<p>I hope I exceed your expectations for quality reporting and feature stories for WordPress.  Stay tuned.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 16 Sep 2019 16:02:22 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Justin Tadlock\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:23;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:112:\"WPTavern: Adam Jacob Advocates for Building Healthy OSS Communities in “The War for the Soul of Open Source”\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=93730\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:117:\"https://wptavern.com/adam-jacob-advocates-for-building-healthy-oss-communities-in-the-war-for-the-soul-of-open-source\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3704:\"<p><a href=\"https://i2.wp.com/wptavern.com/wp-content/uploads/2019/09/Screen-Shot-2019-09-13-at-1.40.07-PM.png?ssl=1\"><img /></a></p>\n<p>Chef co-founder and former CTO <a href=\"https://twitter.com/adamhjk\" rel=\"noopener noreferrer\" target=\"_blank\">Adam Jacob</a> gave a short presentation at O&#8217;Reilly Open Source Software Conference (OSCON) 2019 titled &#8220;<a href=\"https://www.youtube.com/watch?v=8q5o-4pnxDQ\" rel=\"noopener noreferrer\" target=\"_blank\">The War for the Soul of Open Source</a>.&#8221; In his search for meaning in open source software today, Jacob confronts the notion of open source business models.</p>\n<p>&#8220;We often talk about open source business models,&#8221; he said. &#8220;There isn&#8217;t an open source business model. That&#8217;s not a thing and the reason is open source is a channel. Open source is a way that you, in a business sense, get the software out to the people, the people use the software, and then they become a channel, which [companies] eventually try to turn into money.&#8221;</p>\n<p>Companies often employ open source as a strategy to drive adoption, only to have mega corporations scoop up the software and corner the market. Jacob addressed the friction open source communities have with companies that use OSS to make billions of dollars per year running it as a service, citing Amazon Web Services (AWS) as a prime example.</p>\n<p>Amid conflicts like these, it&#8217;s a challenge to find meaning in OSS via business. Jacob looked to organizations like the Free Software Foundation and Open Source Initiative but could not get on board with the methods and outcomes they pursue through their efforts.</p>\n<p>He concluded that what is left is the people at the heart of OSS, who improbably come together with an overlapping sense of shared values and purpose.</p>\n<p>&#8220;Each of us are a weird different shape, struggling to find our path and yet open source software gives us this ability to gather together around this resource that we turn from being scarce to being infinite,&#8221; he said.</p>\n<p>&#8220;Look at your own desires, look at your own needs and the things you want in your own life. Then go out and find and build and steward communities with other people who share those values and who will embrace your purpose, and sustain each other. Because that is the true soul of open source.&#8221;</p>\n<p>In December 2018, Jacob launched the <a href=\"https://sfosc.org/\" rel=\"noopener noreferrer\" target=\"_blank\">Sustainable Free and Open Source Communities</a> (SFOSC) project to advocate for these ideas. Instead of focusing on protecting revenue models of OSS companies, the project&#8217;s contributors work together to collaborate on writing core principles, social contracts, and business models as guidelines for healthy OSS communities.</p>\n<p>&#8220;I believe we need to start talking about Open Source not in terms of licensing models, or business models (though those things matter): instead, we should be talking about wether or not we are building sustainable communities,&#8221; Jacob said in a <a href=\"https://medium.com/sustainable-free-and-open-source-communities/we-need-sustainable-free-and-open-source-communities-edf92723d619\" rel=\"noopener noreferrer\" target=\"_blank\">post</a> introducing the project. &#8220;What brings us together, as people, in this common effort around the software? What rights do we hold true for each other? What rights are we willing to trade in order to see more of the software in the world, through the investment of capital?&#8221;</p>\n<p>Check out Jacob&#8217;s presentation below for a 13-minute condensed version of the inspiration behind the SFOSC project.</p>\n<p></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 13 Sep 2019 21:31:17 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:24;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:80:\"WPTavern: Local Lightning Now in Public Beta with Major Performance Improvements\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=93700\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:91:\"https://wptavern.com/local-lightning-now-in-public-beta-with-major-performance-improvements\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4418:\"<p>Flywheel put its new Local Lightning app into <a href=\"https://localbyflywheel.com/community/t/local-lightning-public-beta/14075\" rel=\"noopener noreferrer\" target=\"_blank\">public beta</a> this week. The app is an improved version of the company&#8217;s local WordPress development tool, formerly known as Pressmatic before Flywheel <a href=\"https://wptavern.com/flywheel-acquires-wordpress-local-development-tool-pressmatic\" rel=\"noopener noreferrer\" target=\"_blank\">acquired</a> it from Clay Griffiths and renamed it to &#8220;<a href=\"https://localbyflywheel.com/\" rel=\"noopener noreferrer\" target=\"_blank\">Local by Flywheel</a>.&#8221;</p>\n<p>Since its acquisition in 2016, Local has gained many fans, particularly developers who had grown tired of debugging local development environments. Local has proven to be a reliable app that saves many wasted hours. It also allows developers to quickly switch between PHP and MySQL versions as well as Apache and nginx.</p>\n<p>Overall, Local users enjoy the app&#8217;s features but have found performance to be <a href=\"https://localbyflywheel.com/community/t/speed-issues-on-local-machine/360\" rel=\"noopener noreferrer\" target=\"_blank\">a continual issue</a>. Users reported having one-minute page loads in the backend, on small, uncomplicated sites. These speed issues began to drive users away from Local to other products, as many found that working locally was slower than creating a test site with their hosting companies.</p>\n<p>Even booting up the app can be abysmally slow, as demonstrated in a video Griffiths shared announcing the Local Lightning beta:</p>\n<p><a href=\"https://cloudup.com/cBmHR2MODnR\"><img src=\"https://i1.wp.com/cldup.com/K7hEKiIfjA.gif?resize=600%2C338&ssl=1\" alt=\"Local lightning comparison\" width=\"600\" height=\"338\" /></a></p>\n<p>&#8220;To chart a more reliable and powerful path forward, we’re rebuilding Local’s core architecture and moving away from virtualization in favor of native, system-level software to run WordPress locally,&#8221; Griffiths said.</p>\n<p>The new Local Lightning app reduces system requirements and the minimum disk space requirement has decreased by more than 18GB. Griffiths also reports that the download size for Local is 50% less than before.</p>\n<p>Local is also now available on Linux, thanks to the new architecture in the updated app. Linux availability has been a frequent request since Local was originally launched.</p>\n<blockquote class=\"twitter-tweet\">\n<p lang=\"en\" dir=\"ltr\"><img src=\"https://s.w.org/images/core/emoji/12.0.0-1/72x72/1f916.png\" alt=\"?\" class=\"wp-smiley\" /> Hey, guess what? LOCAL IS NOW AVAILABLE FOR LINUX!</p>\n<p><img src=\"https://s.w.org/images/core/emoji/12.0.0-1/72x72/1f427.png\" alt=\"?\" class=\"wp-smiley\" /> We’ve built it into the public beta of Local Lightning. </p>\n<p><img src=\"https://s.w.org/images/core/emoji/12.0.0-1/72x72/26a1.png\" alt=\"⚡\" class=\"wp-smiley\" /> Get it here: <a href=\"https://t.co/7LOgLYWeLc\">https://t.co/7LOgLYWeLc</a> <a href=\"https://t.co/N6klXH6BKl\">pic.twitter.com/N6klXH6BKl</a></p>\n<p>&mdash; Local by Flywheel (@LocalbyFlywheel) <a href=\"https://twitter.com/LocalbyFlywheel/status/1172175142883139584?ref_src=twsrc%5Etfw\">September 12, 2019</a></p></blockquote>\n<p></p>\n<p>Local Lightning and Local by Flywheel have been developed as two separate applications in order to allow users to migrate their sites at their own pace. They can also run alongside each other and are named differently. &#8220;Local by Flywheel&#8221; is now the old version and the new Local Lightning app is simply known as &#8220;Local.&#8221; Users can migrate their sites by exporting from the old version and dragging them into the new app for automatic import. The beta is lacking some features that were previously available, including hot-swapping development environments and support for Varnish HTTP Cache. Griffiths&#8217; team is working on restoring feature parity with the original app.</p>\n<p>When asked in the product&#8217;s forums about the general release date, a Flywheel representative said that it &#8220;will definitely be by the end of the year.&#8221; Users who want to join the public beta can download the latest version for Mac, Windows, or Linux from the <a href=\"https://localbyflywheel.com/community/t/local-lightning-public-beta/14075\" rel=\"noopener noreferrer\" target=\"_blank\">Local Lightning announcement post</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 13 Sep 2019 16:17:26 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:25;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:90:\"WPTavern: WPHindi Plugin Instantly Converts Text from English to Hindi in the Block Editor\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=92869\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:106:\"https://wptavern.com/wphindi-plugin-instantly-converts-text-from-english-to-hindi-live-in-the-block-editor\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3607:\"<p>Hindi is one of the world&#8217;s top languages, with more than 520 million native and non-native speakers, and is the <a href=\"https://thelogicalindian.com/news/hindi-fastest-growing-language/\" rel=\"noopener noreferrer\" target=\"_blank\">fastest growing language in India</a>. In a region where English is also commonly spoken, many Hindi publishers have the unique requirement of being able to switch back and forth between the two languages when writing articles.</p>\n<p><a href=\"https://wordpress.org/plugins/wphindi/\" rel=\"noopener noreferrer\" target=\"_blank\">WPHindi</a> is a new plugin that was developed to help WordPress users stay inside the editor instead of copying and pasting from third-party tools.</p>\n<p>It offers a block that instantly converts text from English to Hindi as users are typing. It also works with the Classic Editor. The block supports intelligent auto-suggestions that make it easy to correct typos. Users can quickly enable/disable WPHindi with one click when switching between languages. It also works seamlessly with the rich text options inside the editor.</p>\n<p></p>\n<p>The plugin was originally created by the team at <a href=\"https://www.zozuk.com\" rel=\"noopener noreferrer\" target=\"_blank\">Zozuk</a>, a WordPress support and maintenance service, as a custom solution for a client.</p>\n<p>&#8220;They are a big publisher in the Hindi content space and with a lot of writers,&#8221; Zozuk representative Aditya Rathore said. &#8220;Using tools outside the WordPress dashboard was becoming a huge productivity killer for them.&#8221;</p>\n<p>After this request Zozuk contacted 54 Hindi content publishers who are WordPress users and found that 39 of them were facing the same problem.</p>\n<p>&#8220;It was more than enough to realize the scale of the problem and we decided to make the plugin available for free to every webmaster including our partners,&#8221; Rathore said. &#8220;The scale of the problem and how important it was to solve it, proved to be our element of inspiration for WPHindi.&#8221;</p>\n<p>Data from a <a href=\"https://www.theatlas.com/charts/r1q1GxrJW\" rel=\"noopener noreferrer\" target=\"_blank\">KPMG-Google study</a> indicates that 201 million Hindi users, which comprise 38% of the Indian internet user base, will be online by 2021.</p>\n<div class=\"atlas-chart\"><img src=\"https://i2.wp.com/s3.us-east-1.amazonaws.com/qz-production-atlas-assets/charts/atlas_r1q1GxrJW.png?w=627&ssl=1\" /></div>\n<p></p>\n<p>WPHindi is currently the only solution of its kind in the WordPress space. An older plugin called <a href=\"https://www.monusoft.com/products/wordpress-plugin\" rel=\"noopener noreferrer\" target=\"_blank\">Hindi Writer</a> performed a similar function for converting text in the comment box but it was not available from the official plugin directory and has not been updated since 2006.</p>\n<p>Hindi publishers have also used tools like <a href=\"http://google.com/intl/hi/inputtools/try/\" rel=\"noopener noreferrer\" target=\"_blank\">google.com/intl/hi/inputtools/try/</a> and <a href=\"http://easyhindityping.com\" rel=\"noopener noreferrer\" target=\"_blank\">easyhindityping.com</a> but these are not tailored to WordPress and have to be open in a separate window. WPHindi provides text conversion directly in the editor, speeding up writers&#8217; workflow.</p>\n<p>Rathore said Zozuk plans to monetize the plugin in the future with an add-on that will allow users to comment in Hindi on the frontend. The plugin is currently in development. The team is is also working on releasing similar plugins for other languages like Bengali and Marathi.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 12 Sep 2019 18:52:14 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:26;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:102:\"WPTavern: Richard Best Releases Free Audio and Ebook: “A Practical Guide to WordPress and the GPL”\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=93615\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:106:\"https://wptavern.com/richard-best-releases-free-audio-and-ebook-a-practical-guide-to-wordpress-and-the-gpl\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2768:\"<p>If you&#8217;re itching to go deeper into the legal aspects of navigating WordPress&#8217; relationship to the GPL license, <a href=\"https://richardbestlaw.com/\" rel=\"noopener noreferrer\" target=\"_blank\">Richard Best</a> has recently made his ebook (and the audio version) called &#8220;<a href=\"https://richardbestlaw.com/2019/09/10/a-practical-guide-to-wordpress-and-the-gpl/\" rel=\"noopener noreferrer\" target=\"_blank\">A Practical Guide to WordPress and the GPL</a>&#8221; available for free. Best, a technology and public lawyer based in New Zealand, had previously sold the book with other products as part of a <a href=\"http://wpandlegalstuff.com/a-practical-guide-to-wordpress-and-the-gpl-get-it/\" rel=\"noopener noreferrer\" target=\"_blank\">business package</a> that is still available for purchase. After receiving feedback on his most recent post titled &#8220;<a href=\"http://wpandlegalstuff.com/taking-gpld-code-proprietary/\" rel=\"noopener noreferrer\" target=\"_blank\">Taking GPL’d code proprietary</a>,&#8221; he found that the issues addressed in the book are still relevant and decided to release it for free.</p>\n<p>The first two sections provide a brief history of WordPress, its adoption of the GPL, and a summary of the license. These sections are a bit dry, but Chapter 3 is where it gets more interesting, particularly for theme and plugin developers who have questions about licensing GPL-derivatives. Best explores the practical application of the GPL in common business scenarios:</p>\n<ul>\n<li>If I modify the core WordPress software or a GPL’d theme or plugin, must I release the source code of the modified versions(s) to the public?</li>\n<li>I’m a theme/plugin developer. I’ve put huge effort into writing my theme/plugin and I’m going to release it under the GPL but I want to make sure that everyone who receives my theme or plugin, even if from someone else, is obliged to pay me a licensing fee or notify me that they have it. Can I do that?</li>\n<li>I’ve purchased some fully GPL’d themes or plugins from a commercial theme or plugin provider. May I sell those themes or plugins from my own website for my own benefit or publish those themes or plugins on my own website and give them away for free?</li>\n</ul>\n<p>Subsequent chapters cover controversies surrounding &#8220;GPL non-compliant&#8221; sales models, applications of copyright law, GPL compatibility with other licenses, and trademarks. Both the audio and the PDF ebook are <a href=\"https://richardbestlaw.com/2019/09/10/a-practical-guide-to-wordpress-and-the-gpl/\" rel=\"noopener noreferrer\" target=\"_blank\">available for download</a> on Best&#8217;s website. The text of the book is licensed under the Creative Commons Attribution 4.0 International License.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 11 Sep 2019 22:24:33 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:27;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:121:\"WPTavern: Google Announces New Ways to Identify Nofollow Links, Progress on Related Gutenberg Ticket Is Currently Stalled\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=93592\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:131:\"https://wptavern.com/google-announces-new-ways-to-identify-nofollow-links-progress-on-related-gutenberg-ticket-is-currently-stalled\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4775:\"<p>This week Google <a href=\"https://webmasters.googleblog.com/2019/09/evolving-nofollow-new-ways-to-identify.html?fbclid=IwAR2pPFs1IaEfRNj7w_xPO1TLw-1RQSWwUeRiKjYZBwSENf7A1f426mDlz0I\" rel=\"noopener noreferrer\" target=\"_blank\">announced</a> changes to the 15-year old <a href=\"https://support.google.com/webmasters/answer/96569\" rel=\"noopener noreferrer\" target=\"_blank\">nofollow attribute</a> that was previously recommended for identifying links related to advertising, sponsors, or content for which users are not intending to pass along ranking credit. The nofollow attribute is no longer a catchall for these types of instances, as Google has introduced two new rel values (&#8220;sponsored&#8221; and &#8220;ugc&#8221;) to further specify the purpose of the link to the search engine:</p>\n<ul>\n<li><strong>rel=&#8221;sponsored&#8221;</strong>:</li>\n<p> Use the sponsored attribute to identify links on your site that were created as part of advertisements, sponsorships or other compensation agreements.</p>\n<li><strong>rel=&#8221;ugc&#8221;</strong>:</li>\n<p> UGC stands for User Generated Content, and the ugc attribute value is recommended for links within user generated content, such as comments and forum posts.</p>\n<li><strong>rel=&#8221;nofollow&#8221;</strong>:</li>\n<p> Use this attribute for cases where you want to link to a page but don’t want to imply any type of endorsement, including passing along ranking credit to another page.\n</ul>\n<p>Google is also shifting to using a &#8220;hint model&#8221; for interpreting the new link attributes:</p>\n<blockquote><p>When nofollow was introduced, Google would not count any link marked this way as a signal to use within our search algorithms. This has now changed. All the link attributes &#8212; sponsored, UGC and nofollow &#8212; are treated as hints about which links to consider or exclude within Search. We’ll use these hints &#8212; along with other signals &#8212; as a way to better understand how to appropriately analyze and use links within our systems.</p></blockquote>\n<p>The announcement includes a few notable instructions regarding usage. Although all the new link attributes are working today as hints for ranking purposes, there is no need to change existing links. For sponsored links, Google recommends switching over to using rel=”sponsored” if or when it is convenient. Users can also specify multiple rel values (e.g. rel=&#8221;ugc sponsored&#8221;). Google plans to use the hints for crawling and indexing purposes beginning March 1, 2020.</p>\n<p>The new ways to identify nofollow links impacts not only how users create links in their sites but also <a href=\"https://wordpress.org/plugins/search/nofollow/\" rel=\"noopener noreferrer\" target=\"_blank\">plugins that add the nofollow attribute</a> sitewide or other otherwise. Plugin authors will want to reevaluate the options provided in their products.</p>\n<p>Progress on the relevant <a href=\"https://github.com/WordPress/gutenberg/pull/16609\" rel=\"noopener noreferrer\" target=\"_blank\">Gutenberg PR for adding a nofollow option</a> has stalled and is not currently listed for any upcoming milestones. Last week Gutenberg designer Mark Uraine expressed hesitation on adding this feature to the plugin.</p>\n<p>&#8220;I’m hesitant on this one,&#8221; Uraine <a href=\"https://github.com/WordPress/gutenberg/pull/16609#issuecomment-527921959\" rel=\"noopener noreferrer\" target=\"_blank\">said</a>. &#8220;I think it’s been a long-standing discussion and there are reasons behind not including this option in the Classic Editor.</p>\n<p>&#8220;How does it adhere to the WordPress 80/20 rule? We’re looking to implement this as an option (not a decision)… so will 80% of WP users benefit from it?&#8221;</p>\n<p>Gutenberg users are continuing to advocate on the ticket for the necessity of nofollow link options.</p>\n<p>&#8220;Now, with Gutenberg, you can only add a nofollow by switching to the HTML version and manually add the nofollow attribute,&#8221; Andreas de Rosi said. &#8220;It&#8217;s a big pain. I don&#8217;t know how to best implement it (I am not a programer), but this is an important feature the Gutenberg editor should have.&#8221;</p>\n<p>Paal Joachim Romdahl <a href=\"https://github.com/WordPress/gutenberg/pull/16609#issuecomment-528838567\" rel=\"noopener noreferrer\" target=\"_blank\">commented</a> on the ticket, requesting a simple way for plugins to extend the link dialog box if the Gutenberg team decides to reject the PR for adding nofollow options.</p>\n<p>More general <a href=\"https://github.com/WordPress/gutenberg/pull/13190\" rel=\"noopener noreferrer\" target=\"_blank\">discussion</a> regarding how to implement link settings extensibility is open in a separate ticket on the Gutenberg repository.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 11 Sep 2019 18:41:31 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:28;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:109:\"WPTavern: Kioken Blocks: The New Street Fighter-Inspired Block Collection that Is Taking Aim at Page Builders\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=93524\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:119:\"https://wptavern.com/kioken-blocks-the-new-street-fighter-inspired-block-collection-that-is-taking-aim-at-page-builders\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:7918:\"<p>With the proliferation of block collection plugins over the past year, <a href=\"https://wordpress.org/plugins/kioken-blocks/\" rel=\"noopener noreferrer\" target=\"_blank\">Kioken Blocks</a> is a relatively unknown newcomer that you may have missed. Compared to competitors with thousands of users like <a href=\"https://wordpress.org/plugins/coblocks/\" rel=\"noopener noreferrer\" target=\"_blank\">CoBlocks</a> (30K+), <a href=\"https://wordpress.org/plugins/atomic-blocks/\" rel=\"noopener noreferrer\" target=\"_blank\">Atomic Blocks</a> (20K+), <a href=\"https://wordpress.org/plugins/stackable-ultimate-gutenberg-blocks/\" rel=\"noopener noreferrer\" target=\"_blank\">Stackable</a> (10K+), and <a href=\"https://wordpress.org/plugins/ultimate-addons-for-gutenberg/\" rel=\"noopener noreferrer\" target=\"_blank\">Ultimate Addons for Gutenberg</a> (100K+), Kioken is a small fish in a big pond of page builder utilities.</p>\n<p>You might have seen Kioken Blocks in action recently without knowing it, if you checked out Matias Ventura&#8217;s demo introducing the concept of “<a href=\"https://wptavern.com/gutenberg-team-explores-the-future-of-full-site-editing-with-new-prototype\" rel=\"noopener noreferrer\" target=\"_blank\">block areas</a>.&#8221; The plugin was first released two months ago but is already starting to differentiate itself with some innovative design features, block templates, and layouts. Its name was inspired by the <a href=\"https://streetfighter.com/\" rel=\"noopener noreferrer\" target=\"_blank\">Street Fighter</a> arcade game and major releases are named for different character moves.</p>\n<p>Kioken&#8217;s most recent release includes a new Vertical Text setting that allows users to rotate paragraphs and headings for a special effect in more complex layouts.</p>\n<p></p>\n<p>Inside the block editor, users can flip the vertical text rotation, adjust the alignment, add margins, dropcaps, and apply other standard text settings to the selection.</p>\n<p><a href=\"https://i0.wp.com/wptavern.com/wp-content/uploads/2019/09/Screen-Shot-2019-09-10-at-1.49.07-PM.png?ssl=1\"><img /></a></p>\n<p>Kioken currently includes 17 blocks, all created with an emphasis on providing an aesthetic base design that will seamlessly fit into a user&#8217;s theme, with further customization options for each block. The blocks are not cookie cutter repeats of other collections but rather offer their own distinct styles and features.</p>\n<p>For example, the <a href=\"https://kiokengutenberg.com/blocks/kinetic-posts-block/\" rel=\"noopener noreferrer\" target=\"_blank\">Kinetic Posts</a> block allows users to list blog posts, including custom post types, inside a grid, columns/list, or slider with multiple different layout options. Users can run custom queries, such as ordering randomly, or by name, popularity, date, and by post type with custom taxonomy queries.</p>\n<p><a href=\"https://i1.wp.com/wptavern.com/wp-content/uploads/2019/09/Screen-Shot-2019-09-10-at-2.06.08-PM.png?ssl=1\"><img /></a></p>\n<p>Kioken Blocks creator Onur Oztaskiran said he focuses on adding features and blocks that are not commonly available already. This includes some under the hoods usability features, such as custom block appenders, lighter block highlighter on block selection on dark backgrounds, and block settings change indicators in the sidebar.</p>\n<p>&#8220;I try to add blocks that people don’t have access to yet,&#8221; Oztaskiran said. &#8220;So I don’t spend my time on creating accordions or team blocks but rather add things that enrich your content building process in the same fashion premium page building tools do (Kinetic Wrapper block, Animator and Vertical Text extensions are some of these).&#8221;</p>\n<h3>Kioken Blocks Aims to Provide a Faster, Simpler Alternative to Complex Page Builder Plugins</h3>\n<p>Oztaskiran has a design background, having previously worked as the design lead at Udemy, Noon.com, and Qordoba, but he taught himself how to build blocks in order to push the limits of WordPress&#8217; page building capabilities.</p>\n<p>&#8220;Kioken Blocks started out as a personal hobby to learn Gutenberg development and test out if I can do something with GB that would replace mine and everyone else’s page building workflow with WordPress, using only Gutenberg by extending it.</p>\n<p>&#8220;I am a designer and not so great developer. I’ve mostly built Kioken Blocks following Gutenberg resources on the web and GitHub, most of the time by learning from the Gutenberg GitHub repo.&#8221;</p>\n<p>Oztaskiran&#8217;s personal site, <a href=\"https://monofactor.com/\" rel=\"noopener noreferrer\" target=\"_blank\">monofactor.com</a>, was built with nothing but Gutenberg and Kioken Blocks, including the fancy animations reminiscent of Themeforest products, along with the layout. The site is a good example of how the block editor and a few custom blocks can enable users to create beautiful, complex layouts without having to use a heavy, over-engineered page builder plugin.</p>\n<p>&#8220;I took a leap of faith in Gutenberg when it was first released and started developing for it since I&#8217;m also a user and hate many things about page builder plugins,&#8221; Oztaskiran said. &#8220;I love to hate Gutenberg as well, but right now I can&#8217;t stop using it.&#8221;</p>\n<p>Oztaskiran used page builder plugins in the past and even created extensions for some of them, but ultimately his frustrations inspired him to go all in on Gutenberg block development.</p>\n<p>&#8220;With page builders, what took me away from them most was the MBs of resources they add to my sites, and the complexity of content editing in the editor, the long learning curve for some of them, and most importantly you need to be a &#8216;pro&#8217; to create complex layouts and engaging, rich content,&#8221; Oztaskiran said.</p>\n<p>As a result of these frustrations, he decided to focus on speed and usability in Kioken Blocks. Oztaskiran said he is satisfied to have developed a product that allows users to create animated, complex layouts in minutes, much faster than he was able to do in other platforms. Kioken&#8217;s predefined block presets allow users to insert elements like background hero sections, product intros, sliding testimonials, and other page elements, making it easy to quickly design a site. These types of elements further blur the line between predefined block templates and themes.</p>\n<p><a href=\"https://i2.wp.com/wptavern.com/wp-content/uploads/2019/09/Screen-Shot-2019-09-10-at-4.57.56-PM.png?ssl=1\"><img /></a></p>\n<p>&#8220;What amazes me with Gutenberg is you only need a lightweight unbloated GB compatible theme and nothing else,&#8221; Oztaskira said. &#8220;You can create amazing things.&#8221;</p>\n<p>He is currently maintaining the plugin by himself without a team but the project is very time consuming. He sells commercial block templates through the plugin&#8217;s upgrade page and the user base is growing, so is considering making some partnerships in the future. Kioken Blocks only has approximately 100+ active installs at the moment, but Oztaskiran reports that his conversion rate is about 6-7% on selling Pro licenses, which include priority support and commercial block templates and layouts.</p>\n<p>Despite identifying himself as just &#8220;a designer and a crappy developer,&#8221; Oztaskiran&#8217;s investment in learning Gutenberg block development is starting to pay off.</p>\n<p>&#8220;You don’t need to be a pro dev to understand the logic, and with having an average JS knowledge you can get on board to GB development in a short time,&#8221; he said.&#8221;</p>\n<p>&#8220;I indeed had ups and downs with Gutenberg, and Kioken Blocks aims to cover for those &#8216;downs.&#8217; I’ve been trying to build a tool for the editor so that some day you will only need Gutenberg and no other page building tools to create engaging and beautiful content.&#8221;</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 10 Sep 2019 22:53:51 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:29;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"BuddyPress: BuddyPress 5.0.0-beta2\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"https://buddypress.org/?p=307715\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:54:\"https://buddypress.org/2019/09/buddypress-5-0-0-beta2/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2888:\"<p>Hello BuddyPress contributors!</p>\n\n\n\n<p><strong>5.0.0-beta2</strong> is available for testing, you can&nbsp;<a href=\"https://downloads.wordpress.org/plugin/buddypress.5.0.0-beta2.zip\">download it here</a>&nbsp;or get a copy via our Subversion repository. This is really important for us to have your feedback and testing help.</p>\n\n\n\n<p>Since <a href=\"https://buddypress.org/2019/08/buddypress-5-0-0-beta1/\">5.0.0-beta1</a>:</p>\n\n\n\n<ul><li>We&#8217;ve brought some improvements to string i18n into the BP REST API code.</li><li>We&#8217;ve also improved the JavaScript function we are making available in this release to ease your clients BP REST API Requests.</li></ul>\n\n\n\n<h2>5.0.0 final release is approaching!</h2>\n\n\n\n<p>The <strong>Release Candidate (RC) is scheduled on September 16</strong>: at this time BuddyPress 5.0.0 will be in a string freeze. It means we won&#8217;t change i18n strings anymore for this release to leave enough time to our beloved polyglot contributors to <a href=\"https://translate.wordpress.org/projects/wp-plugins/buddypress/\">translate BuddyPress</a> into their native languages. If you&#8217;re a good english writer or copywriter you can still help us to <a href=\"https://buddypress.trac.wordpress.org/ticket/8132#comment:5\">polish the text</a> we plan to use to inform about the 5.0.0 new features.</p>\n\n\n\n<p>If you are still using our Legacy Template Pack and think it&#8217;s important to include a Twenty Nineteen companion stylesheet into this release, <strong>September 16 is also the deadline to make it happen</strong>. Please test, contribute and improve the patch attached to this <a href=\"https://buddypress.trac.wordpress.org/ticket/8103\">ticket</a>.</p>\n\n\n\n<div class=\"wp-block-image\"><img src=\"https://plugins.svn.wordpress.org/buddypress/assets/icon.svg\" alt=\"\" width=\"33\" height=\"33\" /></div>\n\n\n\n<p>Let&#8217;s use the coming days to make sure your BuddyPress plugins or your theme or your specific WordPress configuration are ready for BuddyPress 5.0.0 : <strong>we need you to help us help you</strong>: please <a href=\"https://downloads.wordpress.org/plugin/buddypress.5.0.0-beta2.zip\">download and test 5.0.0-beta2</a>!</p>\n\n\n\n<div class=\"wp-block-button aligncenter is-style-squared\"><a class=\"wp-block-button__link has-background\" href=\"https://downloads.wordpress.org/plugin/buddypress.5.0.0-beta2.zip\">Download and test 5.0.0-beta2</a></div>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<p>5.0.0 is almost ready (Targeted release date is <a href=\"https://bpdevel.wordpress.com/2019/09/06/bp-dev-chat-summary-september-4/\">September 30, 2019</a>), but please do not run this Beta 2 release in a production environment just yet. Let us know of any issues you find in <a href=\"https://buddypress.org/support\">the support forums</a> and/or on <a href=\"https://buddypress.trac.wordpress.org/\">our development tracker</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 10 Sep 2019 17:45:07 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"imath\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:30;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:102:\"WPTavern: Creative Commons Releases New WordPress Plugin for Attributing Content with Gutenberg Blocks\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=93506\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:113:\"https://wptavern.com/creative-commons-releases-new-wordpress-plugin-for-attributing-content-with-gutenberg-blocks\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2484:\"<p><a href=\"https://creativecommons.org/\" rel=\"noopener noreferrer\" target=\"_blank\">Creative Commons</a> has released an <a href=\"https://wordpress.org/plugins/creative-commons/\" rel=\"noopener noreferrer\" target=\"_blank\">official WordPress plugin</a> for attributing and licensing content. It is an updated and revamped version of the organization&#8217;s <a href=\"https://github.com/tarmot/wp-cc-plugin\" rel=\"noopener noreferrer\" target=\"_blank\">WPLicense</a> plugin. It is also loosely based on an old plugin called <a href=\"https://wordpress.org/plugins/license/\" rel=\"noopener noreferrer\" target=\"_blank\">License</a>, which seems to have been abandoned after not receiving any updates for six years.</p>\n<p>The new Creative Commons plugin is an attribution tool that is compatible with the block editor. It comes with eight different blocks for licensing any post, page, image, or other type of media.</p>\n<p><a href=\"https://i1.wp.com/wptavern.com/wp-content/uploads/2019/09/creative-commons-gutenberg-blocks.png?ssl=1\"><img /></a></p>\n<p>The block settings allow the user to specify the Attribution text, add additional text after the license, and customize the block&#8217;s background and text colors.</p>\n<p><a href=\"https://i1.wp.com/wptavern.com/wp-content/uploads/2019/09/creative-commons-block-customization.png?ssl=1\"><img /></a></p>\n<p>The plugin also retains several features from the older versions, including the ability to set a default license and display it as a widget or in the footer. Users can license their entire sites or license some posts, pages, or images differently on a per-content basis using the CC Gutenberg blocks. It is also multisite compatible, where network admins can license the entire network with a default license or allow site admins to choose their own. License information can be displayed with &#8220;One Click Attribution&#8221; for images.</p>\n<p>Software developer <a href=\"https://ahmadbilal.dev/\" rel=\"noopener noreferrer\" target=\"_blank\">Ahmad Bilal</a> worked on the Creative Commons plugin with help from a mentor as part of his Google Summer of Code project. This update is long overdue, as the older version of the plugin was not compatible with newer versions of WordPress beyond 3.8.1. The new plugin is compatible with the latest version of WordPress (5.2.2) and is now <a href=\"https://wordpress.org/plugins/creative-commons/\" rel=\"noopener noreferrer\" target=\"_blank\">available in the official plugin directory</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 10 Sep 2019 03:58:11 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:31;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:84:\"WPTavern: Gutenberg Team Explores the Future of Full-Site Editing with New Prototype\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=93512\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:95:\"https://wptavern.com/gutenberg-team-explores-the-future-of-full-site-editing-with-new-prototype\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:6839:\"<p>From its inception, the block editor was always intended to be more than just an editor for the main content area. Gutenberg phase 2 brings the block editor to other parts of the site, including widgets, menus, and other aspects of site customization. Matias Ventura, one of the lead engineers on the project, has offered a glimpse of the team&#8217;s vision for how the block editor will tackle full-site editing with an intriguing new <a href=\"https://make.wordpress.org/core/2019/09/05/defining-content-block-areas/\" rel=\"noopener noreferrer\" target=\"_blank\">prototype</a>.</p>\n<p>Ventura shared a video demo, introducing the concept of &#8220;block areas,&#8221; which he said would include headers, footers, sidebars, and any other meaningful template part outside of the post content that contains blocks. In the example below, every element on the page is made of blocks and can be directly manipulated by the user.</p>\n<p></p>\n<p>The prototype wasn&#8217;t necessarily created to prescribe a specific implementation but rather shows some of the possibilities of how block areas could be organized within the page. Each block area is saved separately and any of the template parts can have a distinct name. Ventura suggested they might be saved as individual posts in an internal custom post type, which can be isolated and edited individually or within the scope of the whole page. This would allow for different view modes and possibly even a design mode with a grid overlay:</p>\n<p><a href=\"https://i1.wp.com/wptavern.com/wp-content/uploads/2019/09/Screen-Shot-2019-09-09-at-9.25.03-AM.png?ssl=1\"><img /></a></p>\n<p>The prototype demonstrates the possibility of drilling down into the individual blocks nested within theme templates and post content. This offers users a better understanding of the page structure and allows them to easily navigate nested blocks.</p>\n<p><a href=\"https://i0.wp.com/wptavern.com/wp-content/uploads/2019/09/Screen-Shot-2019-09-09-at-9.21.27-AM.png?ssl=1\"><img /></a></p>\n<p>Ventura&#8217;s writeup is somewhat technical and implementation details are still being actively discussed across several tickets on GitHub, but initial community reactions to the prototype have been positive overall.</p>\n<h3>A Closer Look at How Block Areas Could Replace the Customizer</h3>\n<p>With WordPress closing in on the one year anniversary of having the block editor in core, the interface presented in the block areas prototype seems immediately more familiar than the Customizer. Full-site editing in the Gutenberg era will fundamentally change how users approach their site designs. The block editor stands to unify customization and content interfaces that were previously unable to make the jump into full-on frontend editing.</p>\n<p>&#8220;It&#8217;s too early to say for sure, but in a world where everything is a block, there isn&#8217;t much need for the Customizer&#8217;s current interface where the preview is disconnected from the controls in a separate window,&#8221; Customizer component maintainer Weston Ruter said. &#8220;If theme templates are built entirely with blocks which support direct manipulation, then it&#8217;s essentially a frontend editing paradigm.&#8221;</p>\n<p>Ruter, who was instrumental in architecting a great deal of the Customizer, said the current interface, which splits the design and controls into separate windows, was necessary because so many of the controls required full-page reloads. The split interface ensures that the controls don&#8217;t constantly disappear while the page reloads to display the changes.</p>\n<p>&#8220;The better Customizer integrations are the live &#8216;postMessage&#8217; updating-controls which didn&#8217;t require reloads (e.g. color picker),&#8221; Ruter said. &#8220;More recently the &#8216;selective refresh&#8217; capability also facilitated themes and plugins to re-generate partial templates without having to reload the entire page. In theory, those capabilities did allow for <a href=\"https://github.com/xwp/wp-customize-inline-editing\" rel=\"noopener noreferrer\" target=\"_blank\">inline editing</a> without having to reload the page.&#8221;</p>\n<p>While the Customizer gave users more control over their site designs, the component has always struggled to provide powerful controls and live refreshing in the same interface with a limited amount of page real estate. Ruter highlighted a few of the advantages of making the block editor the primary vehicle for customization in WordPress.</p>\n<p>&#8220;Blocks bring a common interface to be able to do such inline editing for any part of the page, not just special areas in the Customizer preview that get the extra user interface goodies added,&#8221; he said. &#8220;And so with this common block interface with direct manipulation paradigm, there&#8217;s no need for a separate controls panel and there is no need to do full page reloads to do preview changes. So there would be no need for the current Customizer interface.&#8221;</p>\n<p>Although much of the Customizer is likely to become obsolete in the new era of Gutenberg-powered full-site editing, the <a href=\"https://make.wordpress.org/core/2016/10/12/customize-changesets-technical-design-decisions/\" rel=\"noopener noreferrer\" target=\"_blank\">Customizer changeset</a> is one key concept that Ruter thinks could be preserved. This is the code that enables users to <a href=\"https://make.wordpress.org/core/2017/11/03/new-features-and-enhancements-with-customizer-changesets-in-4-9/\" rel=\"noopener noreferrer\" target=\"_blank\">stage and schedule sitewide design changes</a>.</p>\n<p>&#8220;This is independent of the current Customizer interface and relates to the underlying data model of WordPress,&#8221; he said. &#8220;If changes made to Gutenberg blocks were put into such a changeset prior to being published, then the changes could be previewed across a site before going live. The need for this has not been so apparent until now because the changes have been scoped to post content. But once the block data being manipulated across various entities of a site, then it becomes important to have some place to stage those changes prior to going live.&#8221;</p>\n<p>Plugin and theme developers will want to monitor the conversations surrounding the implementation of block areas for full site editing. When this prototype become a reality, it will have a significant impact on themes and plugins that are currently extending the Customizer. Many product developers will need to re-architect their solutions to be better suited to site customization that is powered by the block editor. Ventura lists all the relevant GitHub issues in his post <a href=\"https://make.wordpress.org/core/2019/09/05/defining-content-block-areas/\" rel=\"noopener noreferrer\" target=\"_blank\">introducing content-block areas</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 09 Sep 2019 19:48:07 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:32;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:83:\"WPTavern: First Look at Twenty Twenty: New WordPress Default Theme based on Chaplin\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=93474\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:94:\"https://wptavern.com/first-look-at-twenty-twenty-new-wordpress-default-theme-based-on-chaplain\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3576:\"<p>Anders Norén unveiled the <a href=\"https://make.wordpress.org/core/2019/09/06/introducing-twenty-twenty/\" rel=\"noopener noreferrer\" target=\"_blank\">designs for the new Twenty Twenty theme</a> today. As speculated earlier this week, <a href=\"https://wptavern.com/anders-noren-to-design-twenty-twenty-default-theme-shipping-in-wordpress-5-3\" rel=\"noopener noreferrer\" target=\"_blank\">WordPress will repurpose Noren&#8217;s Chaplin theme</a> in order to expedite shipping the new default theme on the constrained <a href=\"https://make.wordpress.org/core/5-3/\" rel=\"noopener noreferrer\" target=\"_blank\">5.3 release timeline</a>.</p>\n<p>Although the new default theme will be based on Chaplin, it will not retain the same style.</p>\n<p>&#8220;Using an existing theme as a base will help us get going on development faster,&#8221; Norén said. &#8220;Very little of the style of Chaplin will remain though, so it will still look and feel very much like its own thing.&#8221;</p>\n<p>The screenshots he shared in the announcement look like a completely different theme. With just a few color and typography changes, along with a centered column for content, Twenty Twenty has its own distinct character.</p>\n<p>\n<a href=\"https://wptavern.com/first-look-at-twenty-twenty-new-wordpress-default-theme-based-on-chaplain/twenty-twenty-sub-page\"><img width=\"150\" height=\"150\" src=\"https://i2.wp.com/wptavern.com/wp-content/uploads/2019/09/twenty-twenty-sub-page.jpg?resize=150%2C150&ssl=1\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>\n<a href=\"https://wptavern.com/first-look-at-twenty-twenty-new-wordpress-default-theme-based-on-chaplain/twenty-twenty-single-post\"><img width=\"150\" height=\"150\" src=\"https://i1.wp.com/wptavern.com/wp-content/uploads/2019/09/twenty-twenty-single-post.jpg?resize=150%2C150&ssl=1\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>\n</p>\n<p>Norén said he designed it to be a flexible, all-purpose theme suitable for businesses, organizations, and blogs, depending on the combination of blocks.</p>\n<p>&#8220;The promise of the block editor is to give users the freedom to design and structure their sites as they see fit,&#8221; he said in the <a href=\"https://make.wordpress.org/core/2019/09/06/introducing-twenty-twenty/\" rel=\"noopener noreferrer\" target=\"_blank\">post</a> introducing Twenty Twenty. &#8220;The responsibility of a theme is to empower users to create their inspired vision by making the end result look as good, and work as well, as the user intended.&#8221;</p>\n<p>The theme uses <a href=\"https://rsms.me/inter/\" rel=\"noopener noreferrer\" target=\"_blank\">Inter</a> for the typeface, selected for its legibility and bold personality when used in headings. It also comes in a Variable Font version, which Norén said will be a first for WordPress default themes. The benefits are that it reduces the number of requests and decreases the page size.</p>\n<p>Those who are adventurous can <a href=\"https://github.com/WordPress/twentytwenty\" rel=\"noopener noreferrer\" target=\"_blank\">download Twenty Twenty right now from GitHub</a> and play around with the theme in its current state. Once it is stable, Norén and his team plan to merge it into core and continue development on Trac. There will be weekly meetings held in the #core-themes Slack channel for those who want to contribute to the design and development. The first one is scheduled for <a href=\"https://www.timeanddate.com/worldclock/fixedtime.html?iso=20190909T1900\" rel=\"noopener noreferrer\" target=\"_blank\">Monday, September 9, 2019, 02:00 PM CDT</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 07 Sep 2019 03:16:12 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:33;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:62:\"WPTavern: Google Releases Native Lazyload Plugin for WordPress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=93443\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:73:\"https://wptavern.com/google-releases-native-lazyload-plugin-for-wordpress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:5493:\"<p><a href=\"https://i1.wp.com/wptavern.com/wp-content/uploads/2019/09/Screen-Shot-2019-09-06-at-10.26.38-AM.png?ssl=1\"><img /></a></p>\n<p>The most recent release of Chrome (76) added a new “loading” attribute that supports <a href=\"https://wptavern.com/chrome-76-adds-native-lazy-loading-wordpress-contributors-continue-discussion-regarding-core-support\" rel=\"noopener noreferrer\" target=\"_blank\">native lazy loading in the browser</a>. An implementation for WordPress core is still under discussion. In the meantime, plugins that enable this for WordPress sites are starting to pop up, and Google has just released one of its own.</p>\n<p><a href=\"https://wordpress.org/plugins/native-lazyload/\" rel=\"noopener noreferrer\" target=\"_blank\">Native Lazyload</a> was created by Google engineer Felix Arntz and the team behind the official AMP and PWA plugins for WordPress. It lazy loads images and iframes with the new loading attribute for browsers that support it. It also includes a fallback mechanism for browsers that do not yet support it, but this can be disabled with a filter. The plugin has no settings &#8211; users simply activate it and it works.</p>\n<p>In a <a href=\"https://felix-arntz.me/blog/native-lazy-loading-wordpress/\" rel=\"noopener noreferrer\" target=\"_blank\">post</a> introducing the new plugin, Arntz explains why current lazy loading options, which require custom JavaScript, are not always good for performance:</p>\n<blockquote><p>Lazy-loading has for a long time not been a switch you can just toggle to make it work. It was not a browser feature, so it typically required loading and running custom JavaScript logic to make it work. Unfortunately, JavaScript itself is an expensive resource, so lazy-loading as it’s been done so far might in certain cases actually have a negative impact on performance (e.g. if a page doesn’t contain any images or only contains a single image that’s immediately visible). Furthermore, if a user had disabled JavaScript in their browsers, lazy-loading wouldn’t work at all.</p></blockquote>\n<p>The plugin uses a similar implementation that is being discussed in the core ticket. Arntz described it as a &#8220;progressive enhancement,&#8221; where a user&#8217;s website performance will &#8220;magically improve without intervention,&#8221; as more browsers add support for the loading attribute.</p>\n<p>With the release of this plugin, and Google&#8217;s input on the related trac ticket, it&#8217;s clear that the company is interested in seeing WordPress core support the new loading attribute. Chrome Engineering Manager <a href=\"https://addyosmani.com/\" rel=\"noopener noreferrer\" target=\"_blank\">Addy Osmani</a> <a href=\"https://core.trac.wordpress.org/ticket/44427#comment:38\" rel=\"noopener noreferrer\" target=\"_blank\">commented</a> on the ticket 10 days ago to lend his support for the effort and make a few recommendations.</p>\n<p>&#8220;I&#8217;m very supportive of core getting support for native lazy-loading in a non-destructive manner,&#8221; Osmani said.</p>\n<p>&#8220;The ideal change I would love to see in lazy-load plugins is deferring to native lazy-loading where supported and applying their fallback where it is not.&#8221; Osmani estimates that more than 17K origins are already using loading=lazy, according to Google&#8217;s telemetry.</p>\n<p>Andy Potts, a software engineer at the BBC <a href=\"https://medium.com/bbc-design-engineering/native-lazy-loading-has-arrived-c37a165d70a5\" rel=\"noopener noreferrer\" target=\"_blank\">reported</a> seeing major performance improvements after adopting native lazy loading. He implemented it on one of the company&#8217;s internal products, a site with approximately 3,000 active users per day:</p>\n<p>&#8220;One of the most common actions on the site involves running a query which renders a list of up to 100 images — which I thought seemed like the ideal place to experiment with native lazy loading,&#8221; Potts said.</p>\n<p>&#8220;Adding the loading attribute to the images <strong>decreased the load time on a fast network connection by ~50% — it went from ~1 second to &lt; 0.5 seconds, as well as saving up to 40 requests to the server</strong>. All of those performance enhancements just from adding one attribute to a bunch of images!&#8221;</p>\n<p>Kris Gunnars, who operates <a href=\"http://searchfacts.com\" rel=\"noopener noreferrer\" target=\"_blank\">searchfacts.com</a>, added Google&#8217;s new Native Lazyload plugin to his site and <a href=\"https://wordpress.org/support/topic/very-powerful-lazy-loading-plugin/\" rel=\"noopener noreferrer\" target=\"_blank\">reported</a> remarkable performance improvements, especially on mobile.</p>\n<p>&#8220;After I installed this, my mobile PageSpeed score went from 92 to 96 and it also shaved a whopping 1.5 seconds off of my Time to Interactive score,&#8221; Gunnars said.</p>\n<p>With WordPress powering <a href=\"https://w3techs.com/technologies/details/cm-wordpress/all/all\" rel=\"noopener noreferrer\" target=\"_blank\">34.5%</a> of the top 10 million websites, core support for native lazy loading stands to make a huge impact on the overall performance of the web. Progress on the <a href=\"https://core.trac.wordpress.org/ticket/44427\" rel=\"noopener noreferrer\" target=\"_blank\">ticket</a> has been slow, as contributors continue discussing the best approach. In the meantime, users who are anxious to implement it on their sites can install any one of a number of plugins that are already available.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 06 Sep 2019 19:14:10 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:34;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"WordPress.org blog: People of WordPress: Abdullah Ramzan\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=7086\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:71:\"https://wordpress.org/news/2019/09/people-of-wordpress-abdullah-ramzan/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:5588:\"<p><em>You’ve probably heard that WordPress is open-source software, and may know that it’s created and run by volunteers. WordPress enthusiasts share many examples of how WordPress changed people’s lives for the better. This monthly series shares some of those lesser-known, amazing stories.</em></p>\n\n\n\n<h2><strong>Meet Abdullah Ramzan, from Lahore, Punjab, Pakistan.</strong></h2>\n\n\n\n<p>Abdullah Ramzan was born and brought up in the under-developed city of <a href=\"https://en.wikipedia.org/wiki/Layyah\"><strong>​Layyah​</strong></a>, which is situated in Southern Punjab, Pakistan and surrounded by desert and the river ​Sindh​.</p>\n\n\n\n<p>He graduated from college in his home town and started using a computer in ​2010​ when he joined <a href=\"https://gcuf.edu.pk/\"><strong>​Government College University Faisalabad​</strong></a>. Abdullah’s introduction to WordPress happened while he was finishing the last semester of his degree. His final project was based in WordPress.</p>\n\n\n\n<p>Ramzan’s late mother was the real hero in his life, helping him with his Kindergarten homework and seeing him off to school every day.&nbsp;</p>\n\n\n\n<p>Before her heart surgery, Ramzan visited her in the hospital ICU, where she hugged him and said: ​“<strong>Don’t worry, everything will be good</strong>.” Sadly, his mother died during her surgery. However, her influence on Ramzan’s life continues.</p>\n\n\n\n<h3><strong>Start of Ramzan’s Career:</strong></h3>\n\n\n\n<p>After graduation, Ramzan struggled to get his first job. He first joined PressTigers<strong>​</strong> as a Software Engineer and met Khawaja Fahad Shakeel<a href=\"https://twitter.com/FahadShakeel\"><strong>​</strong></a>, his first mentor. Shakeel provided Ramzan with endless support. Something had always felt missing in his life, but he felt like he was on the right track for the first time in his life when he joined the WordPress community.&nbsp;</p>\n\n\n\n<h3><strong>Community – WordCamps and Meetups:</strong></h3>\n\n\n\n<p>Although Ramzan had used WordPress since ​2015​, attending WordPress meetups and open source contributions turned out to be a game-changer for him. He learned a lot from the WordPress community and platform, and developed strong relationships with several individuals. One of them is <a href=\"https://twitter.com/jainnidhi03\"><strong>​</strong></a>Nidhi Jain​ from Udaipur India who he works with on WordPress development. The second is <a href=\"https://twitter.com/desrosj\"><strong>​</strong></a>Jonathan Desrosiers​ who he continues to learn a lot from.</p>\n\n\n\n<p>In addition, Usman Khalid<a href=\"https://twitter.com/Usman__Khalid\"><strong>​</strong></a>, the lead organizer of WC Karachi, mentored Ramzan, helping him to develop his community skills.&nbsp;</p>\n\n\n\n<p>With the mentorship of these contributors, Ramzan is confident supporting local WordPress groups and helped to organize ​WordCamp Karachi​, where he spoke for the first time at an international level event. He believes that WordPress has contributed much to his personal identity.&nbsp;</p>\n\n\n\n<img src=\"https://i0.wp.com/wordpress.org/news/files/2019/09/AbdullahRamzan.jpeg?resize=632%2C422&ssl=1\" alt=\"Abdullah Ramzan among a group of community members at WordCamp Karachi 2018\" class=\"wp-image-7088\" />Abdullah Ramzan at WordCamp Karachi 2018\n\n\n\n<h3><strong>WordPress and the Future:</strong></h3>\n\n\n\n<p>As a <a href=\"https://www.meetup.com/WordPress-Lahore/members/?op=leaders&sort=name\"><strong>​co-organizer of WordPress Meetup Lahore,​</strong></a> he would love to involve more people in the community leadership team, to provide a platform for people to gather under one roof, to learn and share something with each other. </p>\n\n\n\n<p>But he has loftier ambitions. Impressed by <a href=\"https://walktowc.eu/\">Walk to WordCamp Europe</a>, Abdullah is seriously considering walking to WordCamp Asia. He also one day hopes for the opportunity to serve his country as a senator of Pakistan<a href=\"http://www.senate.gov.pk/\"><strong>​</strong></a> and intends to enter the next senate election.</p>\n\n\n\n<h3><strong>Words of Encouragement</strong></h3>\n\n\n\n<p>Abdullah Ramzan knows there is no shortcut to success. “You have to work hard to achieve your goals,” explained Ramzan. He still has much he wishes to accomplish and hopes to be remembered for his impact on the project.</p>\n\n\n\n<p>Abdullah believes WordPress can never die as long as people don’t stop innovating to meet new demands. The beauty of WordPress is that it is made for everyone.</p>\n\n\n\n<p>Ramzan encouraged, “If you seriously want to do something for yourself, do something for others first. Go for open source, you’ll surely learn how to code. You’ll learn how to work in a team. Join local meetups, meet with the folks: help them, learn from them, and share ideas.”</p>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<div class=\"wp-block-image\"><img src=\"https://i1.wp.com/wordpress.org/news/files/2019/07/heropress_large_white_logo.jpg?resize=109%2C82&ssl=1\" alt=\"\" class=\"wp-image-7025\" width=\"109\" height=\"82\" /></div>\n\n\n\n<p><em>This post is based on an article originally published on HeroPress.com, a community initiative created by <a href=\"https://profiles.wordpress.org/topher1kenobe/\">Topher DeRosia</a>. HeroPress highlights people in the WordPress community who have overcome barriers and whose stories would otherwise go unheard.</em></p>\n\n\n\n<p><em>Meet more WordPress community members over at </em><a href=\"https://heropress.com/\"><em>HeroPress.com</em></a><em>!</em></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 06 Sep 2019 18:21:22 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:16:\"Yvette Sonneveld\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:35;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:74:\"WPTavern: WordSesh EMEA Schedule Published, Registration Opens September 9\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=93428\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:84:\"https://wptavern.com/wordsesh-emea-schedule-published-registration-opens-september-9\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3153:\"<p><a href=\"https://wptavern.com/wordsesh-emea-coming-september-25-a-new-virtual-wordpress-event-for-europe-middle-east-and-africa\" rel=\"noopener noreferrer\" target=\"_blank\">WordSesh EMEA</a>, a 12-hour virtual conference designed for the WordPress community in the Middle East, Europe, and Africa, has <a href=\"https://wordsesh.com/\" rel=\"noopener noreferrer\" target=\"_blank\">published the full schedule</a> for the upcoming event. The lineup includes speakers from the UK to Cape Town to Sri Lanka, and other parts of the wider world of WordPress. Approximately 8 of the 11 speakers selected are from the targeted regions for this event. The remaining three are located in the U.S.</p>\n<p><a href=\"https://i1.wp.com/wptavern.com/wp-content/uploads/2019/09/wordsesh-emea-speakers.jpg?ssl=1\"><img /></a></p>\n<p>WordSesh EMEA&#8217;s schedule features a healthy mix of topics, including multiple sessions on using Gatsby with WordPress, image optimization, webops, managing a business with mental illness, building SaaS apps with WordPress and Laravel, and Jetpack.</p>\n<p><a href=\"https://muhammad.dev/\" rel=\"noopener noreferrer\" target=\"_blank\">Muhammad Muhsin</a>, a Sri Lanka-based React developer at <a href=\"https://rtcamp.com\" rel=\"noopener noreferrer\" target=\"_blank\">rtCamp</a>, will be presenting a session on using WordPress as a headless CMS with Gatsby. After Gatsby introduced themes, he started converting WordPress themes to Gatsby and experimenting with using WPGraphQL to get the content. He is also the lead developer for the <a href=\"http://GatsbyWPThemes.com\" rel=\"noopener noreferrer\" target=\"_blank\">GatsbyWPThemes.com</a> project.</p>\n<p>If you have ever heard the marketing term &#8220;digital experience platform&#8221; (DXP) and wondered what all the buzz is about, Karim Marucchi, CEO of <a href=\"https://crowdfavorite.com/\" rel=\"noopener noreferrer\" target=\"_blank\">Crowd Favorite</a>, has a session titled &#8220;What&#8217;s All The Fuss About DXPs, and Why Should I Care?&#8221; He will explore a recent trend where enterprise clients are moving away from content management towards DXP&#8217;s that integrate online marketing tools.</p>\n<p><a href=\"https://ahmadbilal.dev\" rel=\"noopener noreferrer\" target=\"_blank\">Ahmad Bilal</a>, a developer based in Pakistan and 2019 Google Summer of Code student, will be presenting a session on GitHub Actions and how to automatically deploy a plugin to WordPress.org when tagging a new version on GitHub.</p>\n<p>WordSesh EMEA provides an opportunity for viewers in the Middle East, Europe, and Africa to see virtual conference sessions during regular daytime hours, but it also gives viewers in the Western hemisphere a chance to hear speakers who they may never meet at a local WordCamp. It is scheduled for Wednesday, September 25, 2019, from 7:00-19:00 UTC. A handy dropdown on the schedule allows viewers to select their own timezone for the schedule display. Sessions will be conducted in English for this first EMEA event and will also be live captioned.</p>\n<p>WordSesh EMEA is free for all to attend online and registration for tickets will be open Monday, September 9.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 05 Sep 2019 20:30:12 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:36;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:88:\"WPTavern: Anders Norén to Design Twenty Twenty Default Theme, Shipping in WordPress 5.3\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=93395\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:97:\"https://wptavern.com/anders-noren-to-design-twenty-twenty-default-theme-shipping-in-wordpress-5-3\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4093:\"<p>WordPress 5.3&#8217;s release lead coordinators <a href=\"https://make.wordpress.org/core/2019/09/04/dev-chat-summary-september-4/\" rel=\"noopener noreferrer\" target=\"_blank\">announced a new batch of focus leads</a> during yesterday&#8217;s core dev chat.</p>\n<p><a href=\"https://www.andersnoren.se/\" rel=\"noopener noreferrer\" target=\"_blank\">Anders Norén</a>, one of the most well-respected theme authors in the community and an early adopter of Gutenberg, will be leading the design of the upcoming Twenty Twenty default theme. He is working alongside team Theme Wrangler <a href=\"https://profiles.wordpress.org/ianbelanger/\" rel=\"noopener noreferrer\" target=\"_blank\">Ian Belanger</a>, a developer who is currently sponsored by Bluehost as a core contributor. <a href=\"https://profiles.wordpress.org/poena/\" rel=\"noopener noreferrer\" target=\"_blank\">Carolina Nymark</a> is also collaborating as a rep from the Theme Review team.</p>\n<p><a href=\"https://twitter.com/andersnoren/status/1169368819095224320\" rel=\"noopener noreferrer\" target=\"_blank\">Reactions to the news</a> were overwhelmingly positive. I have never seen the WordPress community more excited about a  default theme. Those who have followed Norén&#8217;s work for a long time are hopeful that Twenty Twenty will be a theme they can actually use to build websites.</p>\n<h3>Will WordPress Repurpose the Chaplin Theme for Twenty Twenty or Start from Scratch?</h3>\n<p>Norén has released <a href=\"https://wordpress.org/themes/author/anlino/\" rel=\"noopener noreferrer\" target=\"_blank\">20 free themes on WordPress.org</a> with <a href=\"http://wptally.com/?wpusername=anlino\" rel=\"noopener noreferrer\" target=\"_blank\">2.85 million downloads</a> and a cumulative rating of 4.98 out of 5 stars. <a href=\"https://wptavern.com/anders-noren-release-free-chaplin-theme-designed-for-block-editor-theme-authors-discuss-better-ways-to-promote-truly-free-themes\" rel=\"noopener noreferrer\" target=\"_blank\">Chaplin</a>, his most recent release, is a beautiful example of the possibilities that the block editor opens up for users who want to design their own sites without having to search through dozens of panels of Customizer options. It provides the bones for an agency or business style theme but the block editor enables users to create advanced page layouts that would suit many different types of websites.</p>\n<p><a href=\"https://i1.wp.com/wptavern.com/wp-content/uploads/2019/07/chaplin.jpg?ssl=1\"><img /></a>Chaplin would make a good candidate for WordPress&#8217; next default theme, since it showcases the block editor as the main vehicle for editing the home page layout. Users can easily create unique customizations with different combinations of blocks that won&#8217;t look just like every other site using the same default theme.</p>\n<p>Norén would not confirm whether WordPress will be re-purposing Chaplin for Twenty Twenty or if he will be starting from scratch, as the team is not ready to make the announcement yet. <a href=\"https://make.wordpress.org/core/5-3/\" rel=\"noopener noreferrer\" target=\"_blank\">WordPress 5.3</a> is expected November 12, so the timeline may be somewhat constrained for creating an entirely new theme, but it&#8217;s not entirely outside the range of possibility.</p>\n<p>&#8220;This is probably (yes, most definitely) the best thing that&#8217;s going to happen for WP + Gutenberg adoption since the 5.0 release,&#8221; Matt Medeiros <a href=\"https://twitter.com/mattmedeiros/status/1169367750424313856\" rel=\"noopener noreferrer\" target=\"_blank\">commented</a> on the news about Norén designing Twenty Twenty. &#8220;His Chaplin theme has been a joy to use and provoked me to embrace using Gutenberg with his theme.</p>\n<p>&#8220;Right now, Gutenberg feels like an early version of iOS stuffed into a Blackberry Bold when you don&#8217;t get the right theme. I hope he can give us something as enjoyable as Chaplin.&#8221;</p>\n<p>With WordPress 5.3 beta 1 expected September 23, an announcement with more details regarding Twenty Twenty&#8217;s design and scope should be available soon.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 05 Sep 2019 19:24:43 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:37;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:68:\"WordPress.org blog: WordPress 5.2.3 Security and Maintenance Release\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=7064\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:84:\"https://wordpress.org/news/2019/09/wordpress-5-2-3-security-and-maintenance-release/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:7631:\"<p>WordPress 5.2.3 is now available! </p>\n\n\n\n<p>This security and maintenance release features 29 fixes and enhancements. Plus, it adds a number of security fixes—see the list below.</p>\n\n\n\n<p>These bugs affect WordPress versions 5.2.2 and earlier; version 5.2.3 fixes them, so you&#8217;ll want to upgrade. </p>\n\n\n\n<p>If you haven&#8217;t yet updated to 5.2, there are also updated versions of 5.0 and earlier that fix the bugs for you.</p>\n\n\n\n<h3>Security Updates</h3>\n\n\n\n<ul><li>Props to&nbsp;<a href=\"https://blog.ripstech.com/authors/simon-scannell/\">Simon Scannell of RIPS Technologies</a>&nbsp;for finding and disclosing two issues. The first, a cross-site scripting (XSS) vulnerability found in post previews by contributors. The second was a cross-site scripting vulnerability in stored comments.&nbsp;</li><li>Props to&nbsp;<a href=\"https://security-consulting.icu/blog/\">Tim Coen</a>&nbsp;for disclosing an issue where validation and sanitization of a URL could lead to an open redirect.&nbsp;</li><li>Props to Anshul Jain for disclosing reflected cross-site scripting during media uploads.</li><li>Props to&nbsp;<a href=\"https://fortiguard.com/\">Zhouyuan Yang of Fortinet’s FortiGuard Labs</a>&nbsp;who disclosed a vulnerability for cross-site scripting (XSS) in shortcode previews.</li><li>Props to Ian Dunn of the Core Security Team for finding and disclosing a case where reflected cross-site scripting could be found in the dashboard.</li><li>Props to Soroush Dalili (<a href=\"https://twitter.com/irsdl?lang=en\">@irsdl</a>) from NCC Group for disclosing an issue with URL sanitization that can lead to cross-site scripting (XSS) attacks.</li><li>In addition to the above changes, we are also updating jQuery on older versions of WordPress. This change was&nbsp;<a href=\"https://core.trac.wordpress.org/ticket/47020\">added in 5.2.1</a>&nbsp;and is now being brought to older versions.&nbsp;</li></ul>\n\n\n\n<p>You can browse the&nbsp;<a href=\"https://core.trac.wordpress.org/query?status=closed&resolution=fixed&milestone=5.2.3&order=priority\">full list of changes on Trac</a>.</p>\n\n\n\n<p>For more info, browse the full list of changes on Trac or check out the Version&nbsp;<a href=\"https://wordpress.org/support/wordpress-version/version-5-2-3/\">5.2.3 documentation page</a>.</p>\n\n\n\n<p>WordPress 5.2.3 is a short-cycle maintenance release. The next major release will be&nbsp;<a href=\"https://make.wordpress.org/core/5-3/\">version 5.3.</a></p>\n\n\n\n<p>You can download WordPress 5.2.3 from the button at the top of this page, or visit your<strong> Dashboard → Updates</strong> and click <strong>Update Now</strong>. </p>\n\n\n\n<p>If you have sites that support automatic background updates, they&#8217;ve already started the update process.</p>\n\n\n\n<h2>Thanks and props!</h2>\n\n\n\n<p>This release brings together contributions from more than 62 other people. Thank you to everyone who made this release possible!</p>\n\n\n\n<p><a href=\"https://profiles.wordpress.org/adamsilverstein/\">Adam Silverstein</a>,&nbsp;<a href=\"https://profiles.wordpress.org/xknown/\">Alex Concha</a>,&nbsp;<a href=\"https://profiles.wordpress.org/alpipego/\">Alex Goller</a>,&nbsp;<a href=\"https://profiles.wordpress.org/afercia/\">Andrea Fercia</a>,&nbsp;<a href=\"https://profiles.wordpress.org/aduth/\">Andrew Duthie</a>,&nbsp;<a href=\"https://profiles.wordpress.org/azaozz/\">Andrew Ozz</a>,&nbsp;<a href=\"https://profiles.wordpress.org/afragen/\">Andy Fragen</a>, <a href=\"https://profiles.wordpress.org/762e5e74/\">Ashish Shukla</a>,&nbsp;<a href=\"https://profiles.wordpress.org/wpboss/\">Aslam Shekh</a>,&nbsp;<a href=\"https://profiles.wordpress.org/backermann1978/\">backermann1978</a>,&nbsp;<a href=\"https://profiles.wordpress.org/cdog/\">Catalin Dogaru</a>,&nbsp;<a href=\"https://profiles.wordpress.org/chetan200891/\">Chetan Prajapati</a>,&nbsp;<a href=\"https://profiles.wordpress.org/aprea/\">Chris Aprea</a>,&nbsp;<a href=\"https://profiles.wordpress.org/christophherr/\">Christoph Herr</a>,&nbsp;<a href=\"https://profiles.wordpress.org/danmicamediacom/\">dan@micamedia.com</a>,&nbsp;<a href=\"https://profiles.wordpress.org/diddledan/\">Daniel Llewellyn</a>,&nbsp;<a href=\"https://profiles.wordpress.org/donmhico/\">donmhico</a>,&nbsp;<a href=\"https://profiles.wordpress.org/iseulde/\">Ella van Durpe</a>,&nbsp;<a href=\"https://profiles.wordpress.org/epiqueras/\">epiqueras</a>,&nbsp;<a href=\"https://profiles.wordpress.org/fencer04/\">Fencer04</a>,&nbsp;<a href=\"https://profiles.wordpress.org/flaviozavan/\">flaviozavan</a>,&nbsp;<a href=\"https://profiles.wordpress.org/garrett-eclipse/\">Garrett Hyder</a>,&nbsp;<a href=\"https://profiles.wordpress.org/pento/\">Gary Pendergast</a>,&nbsp;<a href=\"https://profiles.wordpress.org/gqevu6bsiz/\">gqevu6bsiz</a>,&nbsp;<a href=\"https://profiles.wordpress.org/thakkarhardik/\">Hardik Thakkar</a>,&nbsp;<a href=\"https://profiles.wordpress.org/ianbelanger/\">Ian Belanger</a>,&nbsp;<a href=\"https://profiles.wordpress.org/iandunn/\">Ian Dunn</a>,&nbsp;<a href=\"https://profiles.wordpress.org/whyisjake/\">Jake Spurlock</a>,&nbsp;<a href=\"https://profiles.wordpress.org/audrasjb/\">Jb Audras</a>,&nbsp;<a href=\"https://profiles.wordpress.org/jeffpaul/\">Jeffrey Paul</a>,&nbsp;<a href=\"https://profiles.wordpress.org/jikamens/\">jikamens</a>,&nbsp;<a href=\"https://profiles.wordpress.org/johnbillion/\">John Blackbourn</a>,&nbsp;<a href=\"https://profiles.wordpress.org/desrosj/\">Jonathan Desrosiers</a>, <a href=\"https://profiles.wordpress.org/jorgefilipecosta/\">Jorge Costa,</a> <a href=\"https://profiles.wordpress.org/karlgroves/\">karlgroves</a>,&nbsp;<a href=\"https://profiles.wordpress.org/kjellr/\">Kjell Reigstad</a>,&nbsp;<a href=\"https://profiles.wordpress.org/laurelfulford/\">laurelfulford</a>,&nbsp;<a href=\"https://profiles.wordpress.org/majemedia/\">Maje Media LLC</a>,&nbsp;<a href=\"https://profiles.wordpress.org/mspatovaliyski/\">Martin Spatovaliyski</a>,&nbsp;<a href=\"https://profiles.wordpress.org/marybaum/\">Mary Baum</a>,&nbsp;<a href=\"https://profiles.wordpress.org/monikarao/\">Monika Rao</a>,&nbsp;<a href=\"https://profiles.wordpress.org/mukesh27/\">Mukesh Panchal</a>,&nbsp;<a href=\"https://profiles.wordpress.org/nayana123/\">nayana123</a>,&nbsp;<a href=\"https://profiles.wordpress.org/greatislander/\">Ned Zimmerman</a>,&nbsp;<a href=\"https://profiles.wordpress.org/nickdaugherty/\">Nick Daugherty</a>, <a href=\"https://profiles.wordpress.org/rabmalin/\">Nilambar Sharma</a>,&nbsp;<a href=\"https://profiles.wordpress.org/nmenescardi/\">nmenescardi</a>,&nbsp;<a href=\"https://profiles.wordpress.org/bassgang/\">Paul Vincent Beigang</a>,&nbsp;<a href=\"https://profiles.wordpress.org/pedromendonca/\">Pedro Mendonça</a>,&nbsp;<a href=\"https://profiles.wordpress.org/peterwilsoncc/\">Peter Wilson</a>,&nbsp;<a href=\"https://profiles.wordpress.org/sergeybiryukov/\">Sergey Biryukov</a>,&nbsp;<a href=\"https://profiles.wordpress.org/vjik/\">Sergey Predvoditelev</a>,&nbsp;<a href=\"https://profiles.wordpress.org/sharaz/\">Sharaz Shahid</a>,&nbsp;<a href=\"https://profiles.wordpress.org/sstoqnov/\">Stanimir Stoyanov</a>,&nbsp;<a href=\"https://profiles.wordpress.org/ryokuhi/\">Stefano Minoia</a>,&nbsp;<a href=\"https://profiles.wordpress.org/karmatosed/\">Tammie Lister</a>,&nbsp;<a href=\"https://profiles.wordpress.org/isabel_brison/\">tellthemachines</a>,&nbsp;<a href=\"https://profiles.wordpress.org/tmatsuur/\">tmatsuur</a>,&nbsp;<a href=\"https://profiles.wordpress.org/vaishalipanchal/\">Vaishali Panchal</a>,&nbsp;<a href=\"https://profiles.wordpress.org/vortfu/\">vortfu</a>,&nbsp;<a href=\"https://profiles.wordpress.org/tsewlliw/\">Will West</a>, and&nbsp;<a href=\"https://profiles.wordpress.org/yarnboy/\">yarnboy</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 05 Sep 2019 01:51:15 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jake Spurlock\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:38;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:63:\"WPTavern: WordPress Governance Project Looks for New Leadership\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=93009\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:74:\"https://wptavern.com/wordpress-governance-project-looks-for-new-leadership\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:11564:\"<p>The <a href=\"https://wpgovernance.com/\" rel=\"noopener noreferrer\" target=\"_blank\">WordPress Governance</a> project is looking for new leadership after its current leaders, <a href=\"https://bamadesigner.com/\" rel=\"noopener noreferrer\" target=\"_blank\">Rachel Cherry</a> and <a href=\"https://mor10.com/\" rel=\"noopener noreferrer\" target=\"_blank\">Morten Rand-Hendriksen</a>, announced that they will be stepping down. Weekly meetings have been canceled until the organization selects new leadership.</p>\n<p>After its introduction at WordCamp Europe 2018, the project went through what its leadership believed were the appropriate channels for launching it through the Community group but it was <a href=\"https://wptavern.com/wordpress-governance-project-flagged-as-unsanctioned-first-meeting-set-for-january-15\" rel=\"noopener noreferrer\" target=\"_blank\">flagged as unsanctioned by WordPress leadership</a> shortly before the first meeting and denied access to the Make blog and Slack workspace. Despite initial setbacks, the group has been meeting regularly throughout 2019 on its own website and Slack instance.</p>\n<p>&#8220;I need to step down from my leadership role in this project,&#8221; Cherry <a href=\"https://twgp.slack.com/archives/CF94YNHT8/p1566830315017300\" rel=\"noopener noreferrer\" target=\"_blank\">said</a> in a recent meeting. &#8220;I’m not stepping away for good, but this project is too important and I don’t have the bandwidth needed to keep it moving forward in the manner it deserves.&#8221;</p>\n<p>She said the team is looking for two co-chairs who will help lead WordPress Governance going forward. Responsibilities include managing the overall vision and planning, as well as managing meetings and delegating assignments in support of the vision. Cherry said the duties list is intentionally &#8220;slim and vague,&#8221; as the leadership team doesn&#8217;t want the new leaders to feel they have to keep doing what has been done in the past.</p>\n<p>&#8220;The Governance Project was always meant to be a community project meaning we want the community to take ownership of it,&#8221; Rand-Hendriksen said in his farewell <a href=\"https://twgp.slack.com/archives/CF94YNHT8/p1566574797490300\" rel=\"noopener noreferrer\" target=\"_blank\">announcement</a>. &#8220;This is the first step: We&#8217;ve established the project and set some parameters. Now it&#8217;s time for the community to move beyond our intentionally vague vision and make it into what the community wants and needs. New internal governance in the form of co-chairs from the actual community is a key step in this direction.&#8221;</p>\n<h3>Governance Project Aims to Bring Clarity to WordPress&#8217; Organizational Structure and Decision Making Process</h3>\n<p>In a recent post titled &#8220;<a href=\"https://wpgovernance.com/2019/09/03/what-is-governance-and-why-does-it-matter/\" rel=\"noopener noreferrer\" target=\"_blank\">What is governance and why does it matter</a>,&#8221; Cherry said that the project &#8220;made a crucial error&#8221; in not clearly setting clear expectations at the beginning:</p>\n<blockquote><p>This lack of clarity, combined with a growing undercurrent of unrest in the WordPress community, led some to label the project a revolt, a revolution, even a coup.</p>\n<p>That’s unfortunate and has done governance, and our project, a disservice. I feel it&#8217;s incumbent upon myself and Morten to set the record straight so we are able to move forward as a community.</p></blockquote>\n<p>Cherry identified two recent controversial issues within the WordPress project with debates that highlight a lack of established policy, including <a href=\"https://make.wordpress.org/core/2019/08/07/proposal-auto-update-old-versions-to-4-7/\" rel=\"noopener noreferrer\" target=\"_blank\">auto-updating old versions of WordPress</a> and questions about <a href=\"https://make.wordpress.org/community/2019/08/15/discussion-how-to-handle-conflict-of-interest-situations/\" rel=\"noopener noreferrer\" target=\"_blank\">conflicts of interest</a>.</p>\n<p>On both of these matters members of the governance project have chimed in on the Make/WordPress posts to urge decision makers to establish policies that will guide future decisions and to be more transparent about who is making the decisions.</p>\n<p>Rand-Hendriksen <a href=\"https://make.wordpress.org/core/2019/08/07/proposal-auto-update-old-versions-to-4-7/#comment-36698\" rel=\"noopener noreferrer\" target=\"_blank\">asked</a> questions about how and where the decision will be made regarding auto-updating old versions of WordPress, who holds responsibility for the final decision, and how people without decision-making power will be represented. His questions went unanswered.</p>\n<p>&#8220;The WordPress project already has some governance, but much of it remains ad-hoc, opaque, and often inscrutable,&#8221; Cherry said. She identified three key areas where the WordPress Governance project seeks to introduce clarity and transparency: organizational structure, day-to-day processes, and how decisions are made.</p>\n<p>The group is also actively working on researching and drafting policies around a variety of topics, including the following:</p>\n<ul>\n<li>Community Code of Conduct</li>\n<li>Diversity and Inclusion Policy</li>\n<li>Code of Ethics</li>\n<li>Privacy Policy</li>\n<li>Conflict of Interest Policy</li>\n<li>Accessibility Policy</li>\n</ul>\n<p>It is not clear whether these policies would then be submitted to WordPress&#8217; community team for consideration, as the group has not yet attempted to propose a finished document.</p>\n<p>&#8220;Considering there’s no clear process for proposing and ratifying these types of policies, the goal of these efforts are to create a starting point for future official discussions within the WordPress project,&#8221; Cherry said.</p>\n<h3>The Challenge of Defining Governance in a BDFL-led Open Source Project</h3>\n<p>In the past, WordPress has navigated controversial issues in its own way. While the project has handbooks that offer guidelines, its leadership has never really been in the business of piling up policies to act on in anticipation of of future conflicts. The Governance project seems to have a good deal of both active and passive supporters. Regardless, when it was officially branded as unsanctioned, it was clear that WordPress&#8217; leadership was not actively looking to amend its organizational structure or decision-making process through the Governance project&#8217;s particular approach.</p>\n<p>Cherry&#8217;s post clearly states that the project is not aiming to overthrow Matt Mullenweg as WordPress&#8217; <a href=\"https://en.wikipedia.org/wiki/Benevolent_dictator_for_life\" rel=\"noopener noreferrer\" target=\"_blank\">Benevolent Dictator for Life</a> (BDFL).</p>\n<p>&#8220;Governance and Matt Mullenweg leading the WordPress project are not mutually exclusive,&#8221; Cherry said.</p>\n<p>&#8220;The goal of the WordPress Governance Project isn’t to change how Matt is involved, but to more clearly define how the project is managed, and how he and others fit into the process.&#8221;</p>\n<p>The BDFL governance model has traditionally operated with leaders acting more as a &#8220;community-approved arbitrator,&#8221; who often &#8220;let things work themselves out through discussion and experimentation whenever possible,&#8221; as Karl Fogel describes in <a href=\"https://producingoss.com/html-chunk/benevolent-dictator.html#benevolent-dictator-qualifications\" rel=\"noopener noreferrer\" target=\"_blank\">Producing Open Source Software</a>. Historically, WordPress&#8217; particular expression of BDFL leadership has loosely followed this design.</p>\n<p>In her February 2019 newsletter, <a href=\"https://nadiaeghbal.com/\" rel=\"noopener noreferrer\" target=\"_blank\">Nadia Eghbal</a>, a researcher who specializes in open source infrastructure, shared some informal thoughts about governance, particularly in relationship to BDFL-led projects:</p>\n<blockquote><p>A friend of mine has very good taste in music, but I couldn’t tell you what he listens to. I couldn’t name a single artist he plays, or where one song begins or ends. His view is that “the best kind of music is where nobody notices it’s playing”. In his ideal world, music shapes ambiance as a background process. </p>\n<p>Similarly, despite all our talk about governance design, I keep coming back to the idea that the best kind of governance is where nobody can tell it’s there.</p></blockquote>\n<p>Eghbal describes the relationship between the “government&#8221; and “the governed” as fragile and symbiotic and that &#8220;having power can be just as vulnerable [as disenfranchisement], an act of cupping water in your hands, rather than closing your fist over it.&#8221; Maintaining a BDFL leadership role requires diplomacy and a broad awareness of the project&#8217;s needs. Eghbal surmises that contributors support a leader in this position because of the character the leader has demonstrated:</p>\n<blockquote><p>In open source, there’s this concept of a “benevolent dictator for life”: a developer, usually the author, who runs the project and whose authority is not challenged. This phrase is often interpreted as “You’re the dictator, but at least you’re nice about it”. But I think there’s a hidden causal relationship that gets missed. It’s not that you’re a dictator who’s decided to be benevolent. Rather: because you are benevolent, you get to be dictator for life.</p></blockquote>\n<p>This idea echoes Fogel&#8217;s summary of the <a href=\"https://producingoss.com/html-chunk/benevolent-dictator.html#benevolent-dictator-qualifications\" rel=\"noopener noreferrer\" target=\"_blank\">qualities of a good BDF</a>. The forkability of any open source project serves to keep BDFL powers in check:</p>\n<blockquote><p>It is common for the benevolent dictator to be a founder of the project, but this is more a correlation than a cause. The sorts of qualities that make one able to successfully start a project — technical competence, ability to persuade other people to join, and so on — are exactly the qualities any BD would need.</p></blockquote>\n<p>In reviewing the 16-year history of WordPress&#8217; leadership structure on a <a href=\"https://poststatus.com/matt-mullenweg-on-gutenberg/\" rel=\"noopener noreferrer\" target=\"_blank\">Post Status podcast episode</a> earlier this year, Matt Mullenweg described different experiments the project has explored, including a &#8220;lead developers consensus&#8221; approach and having the release lead as the final decision maker for the software. In recent years he has returned to a more overt BDFL model but said, &#8220;I don&#8217;t see that as the forever structure.&#8221;</p>\n<p>In attempting to clarify WordPress&#8217; organizational structure and decision making model, the independent Governance project will need to be sensitive to the possibility that this ability to improvise and evolve the project&#8217;s leadership structures may have been one of the key factors in its continued growth and long-term ability to thrive.</p>\n<p>The new leaders who replace Cherry and Rand-Hendriksen will have a formidable challenge ahead of them in carving out a path for the organization to have a meaningful impact on WordPress, despite not being designated as an official project. As it stands, the leaders face an uphill climb in moving the project from an unofficial working group to one that can effectively draft policies that WordPress will readily adopt.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 04 Sep 2019 22:28:28 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:39;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:101:\"WPTavern: WordPress 5.3 to Use Robots Meta Tag to Better Discourage Search Engines from Listing Sites\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=93331\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:112:\"https://wptavern.com/wordpress-5-3-to-use-robots-meta-tag-to-better-discourage-search-engines-from-listing-sites\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2491:\"<p>WordPress is changing the method it uses to prevent search engines from indexing sites. Previously, if a user checked the &#8220;Discourage search engines from indexing this site&#8221; option in a site&#8217;s Settings > Reading screen, WordPress would add <code>Disallow: /</code> to the robots.txt file. This would prevent crawling but did not always prevent sites from showing up in search results. </p>\n\n\n\n<img />\n\n\n\n<p>As of 5.3, WordPress will drop the robots.txt method in favor of adding an updated robots meta tag to prevent the site from being listed in search engines: <code>&lt;meta name=\'robots\' content=\'noindex,nofollow\' /></code>. The meta tag offers a more reliable way of preventing indexing and subsequent crawling.</p>\n\n\n\n<p>When checking the setting to discourage search engines from indexing a site, users are often looking for a way to hide their sites, but the setting does not always work as they expected. Jono Alderson summarized the problem and the proposed solution in a <a href=\"https://core.trac.wordpress.org/ticket/43590#comment:9\">comment</a> on the trac <a href=\"https://core.trac.wordpress.org/ticket/43590\">ticket</a> that brought about the changes:</p>\n\n\n\n<blockquote class=\"wp-block-quote\"><p>The Reading setting infers that it&#8217;s intended to prevent search engines from <em>indexing</em> the content, rather than from <em>crawling</em> it. However, <strong>the presence of the robots disallow rule prevents search engines from ever discovering the <code>noindex</code> directive</strong>, and thus they may index &#8216;fragments&#8217; (where the page is indexed without content).<br /><br />2) Google recently announced that they&#8217;re making efforts to prevent fragment indexing. However, until this exists (and I&#8217;m not sure it will; it&#8217;s still a necessary/correct solution sometimes), we should solve for current behaviors. <strong>Let&#8217;s remove the <code>robots.txt</code> disallow rule</strong>, and allow Google (and others) to <em>crawl</em> the site.</p></blockquote>\n\n\n\n<p>In the <a href=\"https://make.wordpress.org/core/2019/09/02/changes-to-prevent-search-engines-indexing-sites/\">dev note</a> announcing the change, Peter Wilson recommends that developers wanting to exclude development sites from being indexed by search engines should include the HTTP Header <code>X-Robots-Tag: noindex, nofollow</code> when serving all assets for the site, including images, PDFs, video, and other assets.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 04 Sep 2019 03:19:17 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:40;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:83:\"WPTavern: Toolbelt: A New Jetpack-Inspired Plugin with a Focus on Speed and Privacy\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=92814\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:93:\"https://wptavern.com/toolbelt-a-new-jetpack-inspired-plugin-with-a-focus-on-speed-and-privacy\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:6830:\"<p><a href=\"https://i0.wp.com/wptavern.com/wp-content/uploads/2019/08/Screen-Shot-2019-09-02-at-11.16.22-PM.png?ssl=1\"><img /></a></p>\n<p>WordPress theme and plugin developer <a href=\"https://www.binarymoon.co.uk/\" rel=\"noopener noreferrer\" target=\"_blank\">Ben Gillbanks</a> is building a <a href=\"https://wordpress.org/plugins/jetpack/\" rel=\"noopener noreferrer\" target=\"_blank\">Jetpack</a> alternative with an emphasis on speed, simplicity, and privacy. <a href=\"https://wordpress.org/plugins/wp-toolbelt/\" rel=\"noopener noreferrer\" target=\"_blank\">Toolbelt</a> is a new, lightweight plugin that offers a collection of functionality that is commonly-used on WordPress sites. Currently available modules include features like breadcrumbs, browser native lazy loading, a Portfolio custom post type, related posts with images, responsive video, static social sharing, and more.</p>\n<p>Gillbanks runs <a href=\"https://prothemedesign.com/\" rel=\"noopener noreferrer\" target=\"_blank\">Pro Theme Design</a>, a commercial WordPress theme shop, and has sold themes on WordPress.com for the past seven years. He likes the idea of Jetpack and all of his commercial themes support it, but a desire to deliver more performant and sustainable sites drove him to create Toolbelt. He&#8217;s working on a new free theme called <a href=\"https://github.com/BinaryMoon/jarvis\" rel=\"noopener noreferrer\" target=\"_blank\">Jarvis</a> that will be released on WordPress.org with full Toolbelt compatibility.</p>\n<p>&#8220;With my new theme I wanted to make something that was fast, private, and accessible. Inspired by people like Jack Lenox with <a href=\"https://sustywp.com/\" rel=\"noopener noreferrer\" target=\"_blank\">Susty</a> (and <a href=\"https://wordpress.tv/2019/08/27/jack-lenox-how-better-performing-websites-can-help-save-the-planet-2/\" rel=\"noopener noreferrer\" target=\"_blank\">his talk at WordCamp Europe</a>), I wanted to make something more sustainable. In testing my theme on my personal site I found that Jetpack was slowing it down. So I started rebuilding the features I wanted to use as an optimized plugin.&#8221;</p>\n<p>Toolbelt currently includes more than a dozen modules, offered in a format similar to Jetpack but with a dramatically stripped down management interface in the admin. All modules are disabled by default so users can turn on only the ones they need.</p>\n<p><a href=\"https://i0.wp.com/wptavern.com/wp-content/uploads/2019/08/Screen-Shot-2019-09-02-at-11.01.15-PM.png?ssl=1\"><img /></a></p>\n<p>The settings page includes a column that transparently displays the page impact for several of the modules, as high performance is one of Gillbanks&#8217; chief goals for the plugin.</p>\n<p>&#8220;I had been testing my theme on a dev server and it was getting a score of 99 or 100 &#8211; but when I added it to my personal site the score dropped,&#8221; he said. &#8220;It took me a while to realize the problem was Jetpack, and once I had disabled Jetpack my score went up to 99 or 100 again. So now, each time I add a feature, I test the site to make sure I am maintaining the performance I am testing my site, with each feature and &#8211; hopefully &#8211; keeping the score nice and high.&#8221;</p>\n<p>Although Toolbelt borrows a lot of code from both <a href=\"https://wordpress.org/plugins/jetpack/\" rel=\"noopener noreferrer\" target=\"_blank\">Jetpack</a> and the <a href=\"https://github.com/nilovelez/machete/\" rel=\"noopener noreferrer\" target=\"_blank\">Machete</a> plugin, Gillbanks made some deliberate choices in favor of performance when loading the code for the modules:</p>\n<ul>\n<li>Doesn’t use jQuery or any other javascript framework. All javascript is vanilla js, and minified.</li>\n<li>Minifies all assets (JS and CSS)</li>\n<li>Loads all assets inline. They are already small, and loading them directly on the page means there are no server requests.</li>\n<li>Only loads things when they are needed. JS and CSS are only loaded for activated modules.</li>\n<li>No options. There’s only one database option, and that’s an array that stores what modules are active.</li>\n<li>Uses the minimum code possible. Minimum Javascript and PHP. Less code means more speed, and fewer bugs.</li>\n</ul>\n<h3>Toolbelt&#8217;s Approach to Privacy: No Phoning Out, No User Tracking</h3>\n<p>Privacy is one of the most important aspects of the plugin for Gillbanks, who is English and has to deal with GDPR and EU cookie laws. Toolbelt does not phone out for any of its features, nor does the plugin share data with third parties or use standard social sharing JavaScripts. It also does not track usage or add any comments to the site&#8217;s HTML.</p>\n<p>&#8220;One of the downsides of Jetpack is that it relies on the wordpress.com servers, including hosting images and content on their site,&#8221; Gillbanks said. &#8220;Things like Related Posts sync the blog post data to their servers so it can be searched and filtered.&#8221;</p>\n<p>The privacy choices built into Toolbelt may limit Gillbanks&#8217; ability to reproduce certain features that rely on third-party servers, such as visitor stats, downtime monitoring, and image CDN.</p>\n<p>&#8220;I&#8217;m not sure if I&#8217;ll add these features, or partner with privacy focused third party services,&#8221; Gillbanks said. &#8220;I must admit I&#8217;d really like to add the stats so I&#8217;m hoping I can find someone to work with.&#8221;</p>\n<p>Toolbelt is heavily inspired by Jetpack but Gillbanks said he doesn&#8217;t plan to rebuild all of its features. He is starting with the easier ones and focusing on the ones he wants to use. He also doesn&#8217;t have plans to monetize it anytime soon.</p>\n<p>&#8220;I&#8217;m open to adding premium features in the future, but if I do I won&#8217;t start charging for anything that is currently free,&#8221; he said. &#8220;For the time being I just want to keep adding more modules and making something that I find useful.&#8221;</p>\n<p>Gillbanks is currently working on improving Toolbelt&#8217;s cookie consent bar to build a method for having it allow an &#8216;accept&#8217; and &#8216;decline&#8217; option, so that tracking is only enabled when users press the accept button. This assists those who want to follow GDPR guidelines more strictly. The current implementation automatically links to the site&#8217;s privacy policy page if the user has it setup in their site settings.</p>\n<p>Toolbelt doesn&#8217;t have any settings, besides what modules are active on the site, but Gillbanks has created a collection of actions and filters that allow developers to customize things for clients/ themes. The <a href=\"https://github.com/BinaryMoon/wp-toolbelt/wiki\" rel=\"noopener noreferrer\" target=\"_blank\">documentation</a> is available on GitHub, where users can also submit issues and feature requests.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 03 Sep 2019 20:13:43 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:41;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:55:\"WordPress.org blog: The Month in WordPress: August 2019\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=7059\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:70:\"https://wordpress.org/news/2019/09/the-month-in-wordpress-august-2019/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:9644:\"<p>This has been a particularly busy month, with a number of interesting and ambitious proposals for the WordPress project along with active progress across the entire community. </p>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<h2>Core Development and Schedule</h2>\n\n\n\n<p>The upcoming minor release of WordPress, v5.2.3, is currently <a href=\"https://make.wordpress.org/core/2019/08/22/wordpress-5-2-3-rc-1/\">in the release candidate phase</a> and available for testing.</p>\n\n\n\n<p>Following that, the next major release is v5.3 and the Core team has laid out <a href=\"https://make.wordpress.org/core/2019/08/21/wordpress-5-3-schedule-and-scope/\">a schedule and scope</a> for development. In addition, <a href=\"https://make.wordpress.org/core/2019/08/27/bug-scrub-schedule-for-5-3/\">a bug scrub schedule</a> and <a href=\"https://make.wordpress.org/accessibility/2019/08/28/wordpress-5-3-accessibility-focused-bug-scrub-schedule/\">an accessibility-focused schedule</a> have been set out to provide dedicated times for contributors to work on ironing out the bugs in the release.</p>\n\n\n\n<p>Want to get involved in building WordPress Core? Follow <a href=\"https://make.wordpress.org/core/\">the Core team blog</a>, and join the #core channel in <a href=\"https://make.wordpress.org/chat/\">the Making WordPress Slack group</a>.</p>\n\n\n\n<h2>Proposal for User Privacy Improvements</h2>\n\n\n\n<p>The Core Privacy Team <a href=\"https://make.wordpress.org/core/2019/08/07/feature-plugin-discussion-a-consent-and-logging-mechanism-for-user-privacy/\">has proposed a feature plugin</a> to build a consent and logging mechanism for user privacy. This project will focus on improving the user privacy controls in WordPress Core in order to protect site owners and users alike.</p>\n\n\n\n<p>The proposal includes some useful information about building effective controls for users, how other projects have worked on similar efforts, and what kind of time and resources the project will need in order to be developed.</p>\n\n\n\n<p>Want to get involved in this feature project? Follow <a href=\"https://make.wordpress.org/core/\">the Core team blog</a>, and join the #core-privacy channel in <a href=\"https://make.wordpress.org/chat/\">the Making WordPress Slack group</a> where there are open office hours every Wednesday at 19:00 UTC.</p>\n\n\n\n<h2>Core Notification System Proposal</h2>\n\n\n\n<p><a href=\"https://make.wordpress.org/core/2019/08/05/feature-project-proposal-wp-notify/\">A proposal has been made</a> for a new feature project to build a robust notification system for WordPress Core. The aim of the project is to build a system to handle notifications for site owners that can be extended by plugin and theme developers.</p>\n\n\n\n<p>This proposal comes on the back of <a href=\"https://core.trac.wordpress.org/ticket/43484\">a Trac ticket</a> opened 18 months ago. With weekly meetings to discuss the project, the team behind WP Notify are <a href=\"https://make.wordpress.org/core/2019/08/28/wp-notify-meeting-recap-august-26-2019/\">in the planning phase</a> while they establish exactly how to develop the feature.<br /></p>\n\n\n\n<p>Want to get involved in this feature project? Follow <a href=\"https://make.wordpress.org/core/\">the Core team blog</a>, and join the #core channel in <a href=\"https://make.wordpress.org/chat/\">the Making WordPress Slack group</a> &#8211; meetings for this project happen every Monday at 14:00 and 22:00 UTC.</p>\n\n\n\n<h2>Local WordPress Development Environment</h2>\n\n\n\n<p>Members of the Core Team <a href=\"https://make.wordpress.org/core/2019/08/05/wordpress-local-environment/\">have put together a local development environment for WordPress</a> that runs on Docker. This environment provides an easy way for developers to get involved with WordPress core development. </p>\n\n\n\n<p>The work on this was inspired by the environment used for local Gutenberg development, <a href=\"https://make.wordpress.org/core/2019/08/30/gutenberg-local-environment-rewrite/\">which has since been improved</a> based on the new work that has been done here.</p>\n\n\n\n<p><a href=\"https://make.wordpress.org/core/2019/08/05/wordpress-local-environment/\">The announcement post</a> explains how to use the Docker environment. If you have any feedback or bug reports, please comment on the post directly.</p>\n\n\n\n<h2>Updates for Older Versions of WordPress</h2>\n\n\n\n<p>On July 30, the Security Team shared that security updates need to undergo the same testing and release process for every major version of WordPress. This means they have to provide long-term support for over fifteen major versions of WordPress. This requires a lot of time and effort, and <a href=\"https://make.wordpress.org/core/2019/07/29/should-security-fixes-continue-to-be-backported-to-very-old-versions-of-wordpress/\">the team has sought feedback on potential solutions for this challenge</a>. </p>\n\n\n\n<p>Following this discussion, <a href=\"https://make.wordpress.org/core/2019/08/07/proposal-auto-update-old-versions-to-4-7/\">a proposal was made to auto-update old versions of WordPress to v4.7</a>. This proposal garnered many responses and has since been updated to incorporate feedback from comments. The current recommendation is to secure the six latest versions and to eventually auto-update all older versions of WordPress to 4.7. Since this proposal was made, it has been discussed at <a href=\"https://make.wordpress.org/hosting/2019/08/26/hosting-meeting-notes-august-19-2019/\">Hosting Team meetings</a> and <a href=\"https://make.wordpress.org/core/2019/08/16/follow-up-discussion-on-major-auto-updates/\">Dev Chat meetings</a>, and the conversation is still ongoing.</p>\n\n\n\n<p>Want to provide feedback on this proposal? Comment on <a href=\"https://make.wordpress.org/core/2019/08/07/proposal-auto-update-old-versions-to-4-7/\">the original post</a> with your thoughts.</p>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<h2>Further Reading:</h2>\n\n\n\n<ul><li>The recommended minimum PHP version for WordPress Core <a href=\"https://make.wordpress.org/core/2019/08/13/increasing-the-recommended-php-version-in-core/\">has been increased to 7.0</a>.</li><li>Gutenberg development continues at a rapid pace with <a href=\"https://make.wordpress.org/core/2019/08/28/whats-new-in-gutenberg-28-august/\">new updates</a> coming out every month.</li><li>The Core Team is kicking off bug scrub and triage sessions <a href=\"https://make.wordpress.org/core/2019/08/26/apac-triage-and-bug-scrub-sessions/\">at APAC-friendly times</a>.</li><li>WordCamp US announced <a href=\"https://2019.us.wordcamp.org/schedule/\">the event schedule</a> to take place on November 1-3.</li><li>The Plugin Team reminded developers that <a href=\"https://make.wordpress.org/plugins/2019/08/23/reminder-developers-must-comply-with-the-forum-guidelines/\">they need to stick to the Plugin Directory forum guidelines</a> if they choose to use them for support.</li><li>WordPress project leadership is looking at <a href=\"https://make.wordpress.org/updates/2019/07/30/update-sanctions-and-open-source/\">how to respond to political sanctions</a> in light of the open-source nature of the project.&nbsp;</li><li>The Community Team has proposed <a href=\"https://make.wordpress.org/community/2019/08/19/proposal-speaker-feedback-tool/\">a WordCamp speaker feedback tool</a> that will allow more reliable and consistent feedback for WordCamps speakers all over the world.</li><li>The Five for the Future project now has <a href=\"https://make.wordpress.org/updates/2019/08/29/five-for-the-future-proposed-scope-and-mockups/\">more complete mockups</a> and a plan to move forward.</li><li>The Theme Review Team decided to terminate the Trusted Authors program for a number of reasons <a href=\"https://make.wordpress.org/themes/2019/08/14/trusted-author-program-a-year-of-its-journey/\">outlined in the announcement post</a>.</li><li>The Design Team is taking a look at <a href=\"https://make.wordpress.org/design/2019/08/28/discussion-about-the-about-page/\">how they can improve the About page</a> in future WordPress releases.</li><li>This month saw <a href=\"https://make.wordpress.org/cli/2019/08/14/wp-cli-release-v2-3-0/\">the release of v2.3 of WP-CLI</a>, including a number of new commands and improvements.</li><li>WordCamp websites can now make use of <a href=\"https://make.wordpress.org/community/2019/08/19/wordcamp-blocks-are-live/\">custom blocks in the block editor</a> for crafting their content.</li><li>The Mobile Team are looking for testers for the v13.2 release of the <a href=\"https://make.wordpress.org/mobile/2019/08/27/call-for-testing-wordpress-for-android-13-2/\">Android</a> and <a href=\"https://make.wordpress.org/mobile/2019/08/29/call-for-testing-wordpress-for-ios-13-2/\">iOS</a> apps.</li><li>The WordCamp Asia team <a href=\"https://2020.asia.wordcamp.org/2019/08/20/wordcamp-asia-logo-a-design-journey\">published an interesting look</a> at the journey they took to design the event logo.</li><li><a href=\"https://make.wordpress.org/community/2019/08/26/call-for-volunteers-2020-global-sponsorship-working-group/\">A working group of volunteers is being formed</a> to work out the details for the Global Sponsorship Program in 2020.</li><li>In an effort to increase the accessibility of available WordPress themes, the Theme Review Team now requires that <a href=\"https://make.wordpress.org/themes/2019/08/03/planning-for-keyboard-navigation/\">all themes include keyboard navigation</a>.</li></ul>\n\n\n\n<p><em>Have a story that we should include in the next “Month in WordPress” post? Please </em><a href=\"https://make.wordpress.org/community/month-in-wordpress-submissions/\"><em>submit it here</em></a><em>.</em></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 02 Sep 2019 10:00:13 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:15:\"Hugh Lashbrooke\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:42;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:83:\"WPTavern: NetNewsWire 5.0 RSS Reader Rebuilt from Scratch, Now Free and Open Source\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=93240\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:93:\"https://wptavern.com/netnewswire-5-0-rss-reader-rebuilt-from-scratch-now-free-and-open-source\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4964:\"<p><a href=\"https://inessential.com/2019/08/26/netnewswire_5_0_now_available\" rel=\"noopener noreferrer\" target=\"_blank\">NetNewsWire 5.0</a> was released this week as a completely rebuilt, free and open source Mac app. Back in its earlier days, the 17-year old RSS reader was widely regarded as the best available. Since its creation, the app has changed hands multiple times through two acquisitions, finally <a href=\"https://inessential.com/2018/08/31/netnewswire_comes_home\" rel=\"noopener noreferrer\" target=\"_blank\">landing back home with its creator, Brent Simmons</a>, in August 2018.</p>\n<p>NetNewsWire 5.0 retains much of its original character while incorporating modern features like JSON Feed support, Dark Mode, a “Today” smart feed, syncing via Feedbin, starred articles, and more. It is a brand new app that doesn&#8217;t use any code from previous versions. Users who are updating from older commercial versions can export OPML from the old app and import it into the NetNewsWire 5.0 app.</p>\n<p>Notably lacking from the app is the ability to sync data across devices. Right now this is only possible if users hook up Feedbin. Simmons said he is working with contributors on an iOS version of the app.</p>\n<p><a href=\"https://i0.wp.com/wptavern.com/wp-content/uploads/2019/08/NNW5Light.png?ssl=1\"><img /></a></p>\n<p>Although it may not yet have as many features as some of its contemporaries, NetNewsWire&#8217;s return was celebrated by those who are hopeful that RSS can be one of the key technologies for unshackling web users from social media silos. NetNewsWire is back in support of this mission, which is highlighted on the app&#8217;s homepage:</p>\n<blockquote><p>We support the open web. The big social networking sites are damaging society and eroding democracy — and we believe one of the ways out of this is to get our news via the open web rather than from Twitter and Facebook.</p>\n<p>NetNewsWire is part of repairing the web we lost, and it’s part of building the web we want. That future web should not include viral hate speech, abuse, massive corporate surveillance, or successful influence operations by hostile governments and entities opposed to democracy.</p></blockquote>\n<p>NetNewsWire is no longer owned or sponsored by any corporation. In fact, the app&#8217;s GitHub repo has a <a href=\"https://github.com/brentsimmons/NetNewsWire/blob/master/Technotes/HowToSupportNetNewsWire.markdown\" rel=\"noopener noreferrer\" target=\"_blank\">support document</a> that says: &#8220;First thing: don’t send money. This app is written for love, not money.&#8221; It outlines the project&#8217;s values:</p>\n<blockquote><p>NetNewsWire is all about three things:</p>\n<p>The open web<br />\nHigh-quality open source Mac and iOS apps<br />\nThe community that loves both of the above</p></blockquote>\n<p>In contrast to recent <a href=\"https://wptavern.com/standardjs-ends-controversial-funding-experiment\" rel=\"noopener noreferrer\" target=\"_blank\">experiments and conversations around sustaining open source infrastructure</a>, NetNewsWire&#8217;s approach gives the project the <a href=\"https://inessential.com/2015/06/30/love\" rel=\"noopener noreferrer\" target=\"_blank\">creative freedom to take risks</a> and ship software at their own pace.</p>\n<p>When one commenter asked on Twitter about NetNewsWire&#8217;s business model, Ruby on Rails creator David Heinemeier Hansson <a href=\"https://twitter.com/dhh/status/1167445558534914048\" rel=\"noopener noreferrer\" target=\"_blank\">commented</a> in defense of the project&#8217;s lack of a plan for making a profit.</p>\n<p>&#8220;Not everything needs a business model,&#8221; Hansson said. &#8220;Writing open source software for fun, for the intellectual challenge, for the expression of creativity, are valid reasons. Same too goes for writing and sharing. Filtering everything through WHERE’S THE MONEY is a disease of the soul.</p>\n<p>&#8220;An open source RSS reader that does not operate a service does not need a business model. An individual publisher paying a pittance to host a blog with RSS does not need a business model.&#8221;</p>\n<p>If you&#8217;re looking for a new RSS reader to aggregate your news in a more calm environment than Twitter or Facebook can provide, NetNewsWire is a strong open source option with an exciting future ahead. Few apps have this kind of longevity, and it will be interesting to see how it evolves as an open source Mac app. As of <a href=\"https://ranchero.com/netnewswire/\" rel=\"noopener noreferrer\" target=\"_blank\">version 5.0</a>, it&#8217;s still fairly minimalist in terms of features but has a lot of momentum and <a href=\"https://netnewswire.slack.com/join/shared_invite/enQtNjM4MDA1MjQzMDkzLTNlNjBhOWVhYzdhYjA4ZWFhMzQ1MTUxYjU0NTE5ZGY0YzYwZWJhNjYwNTNmNTg2NjIwYWY4YzhlYzk5NmU3ZTc\" rel=\"noopener noreferrer\" target=\"_blank\">a passionate community</a> behind it, which in this case has proven more valuable towards ensuring its future.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 31 Aug 2019 03:10:51 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:43;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:58:\"WPTavern: StandardJS Ends Controversial Funding Experiment\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=93212\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:69:\"https://wptavern.com/standardjs-ends-controversial-funding-experiment\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4851:\"<p>Feross Aboukhadijeh, maintainer of StandardJS, has formally <a href=\"https://feross.org/funding-experiment-recap/\" rel=\"noopener noreferrer\" target=\"_blank\">ended the funding experiment</a> he started lasted week, which <a href=\"https://wptavern.com/standardjs-pauses-experiment-with-ads-in-the-terminal-after-linode-pulls-sponsorship\" rel=\"noopener noreferrer\" target=\"_blank\">inserted ads in the terminal</a> whenever Standard 14 is installed.</p>\n<p>Although the experiment met widespread aversion, it successfully captured public attention and put a spotlight on the critical need for a viable model of funding open source infrastructure. It also uncovered some intense presuppositions that developers have when it comes to protecting their workflow in the terminal.</p>\n<p>&#8220;If nothing else, it’s nice that funding forced open source &#8216;consumers&#8217; – folks who enjoy the benefits of open source software without ever contributing anything back – to reconsider their relationship with open source,&#8221; Aboukhadijeh said. &#8220;I think we successfully pushed back against the entitlement to free labor that is pervasive in the interactions that open source consumers have with maintainers.&#8221;</p>\n<blockquote class=\"twitter-tweet\">\n<p lang=\"en\" dir=\"ltr\">glob bless <a href=\"https://twitter.com/feross?ref_src=twsrc%5Etfw\">@feross</a> for poking the hornet’s nest tho</p>\n<p>&mdash; Forrest L Norvell (@othiym23) <a href=\"https://twitter.com/othiym23/status/1165709255967510528?ref_src=twsrc%5Etfw\">August 25, 2019</a></p></blockquote>\n<p></p>\n<p>Supporting work with advertising is nothing new, but the shock of seeing ads in the terminal activated an urgency in the open source community to collectively brainstorm and consider new approaches.</p>\n<p>&#8220;While I didn’t like the approach, I understood the goal,&#8221; <a href=\"https://eslint.org/\" rel=\"noopener noreferrer\" target=\"_blank\">ESLint</a> creator Nicholas C. Zakas <a href=\"https://twitter.com/slicknet/status/1167154854298411008\" rel=\"noopener noreferrer\" target=\"_blank\">said</a>. &#8220;There is little involved in mindlessly typing &#8216;npm i&#8217; and getting something for free. This experiment at least broke people out of that mode, even if only momentarily.&#8221;</p>\n<p>Google Chrome engineer Chris Palmer <a href=\"https://twitter.com/fugueish/status/1166192728603914241\" rel=\"noopener noreferrer\" target=\"_blank\">said</a> he saw Aboukhadijeh&#8217;s experiment as &#8220;a live demonstration of the fact that it’s very very hard to get people to pay, in any way, for information goods, which are indeed scarce. It has been as delightful and as bracing as it always is.&#8221;</p>\n<p>In his recap of the <code>funding</code> experiment, Aboukhadijeh contends that the phrase &#8220;open source sustainability&#8221; isn&#8217;t ideal, because maintainers are often simply subsisting, as opposed to thriving, on the few donations they receive, despite creating millions of dollars of value for the companies that use their work.</p>\n<p>&#8220;The dirty secret of open source is that much of it is powered by maintainer guilt,&#8221; Aboukhadijeh said. &#8220;A lucky few manage to land day jobs that allow them to work on open source. But most folks have to be more creative – squeezing in time after work, secretly doing open source maintenance at work, or opting out of normal society completely.&#8221;</p>\n<p>Aboukhadijeh is particularly concerned about finding solutions for the &#8220;invisible&#8221; maintainers of transitive open source dependencies, packages that no one installs directly:</p>\n<blockquote><p>But reliable, error-free transitive dependencies are invisible. Therefore, the maintainers are invisible, too. And, the better these maintainers do their job, the more invisible they are. No one ever visits a GitHub repository for a transitive dependency that works perfectly – there’s no reason to do so. But a developer investigating an error stack trace might visit the repository if for no other reason than to file an issue. At least then there’s a small chance they’ll see the maintainer’s plea in the README.</p>\n<p>We need solutions that work for these folks too.</p></blockquote>\n<p>Although this particular funding experiment did not prove to be successful, Aboukhadijeh said he has more sponsors who are interested and more experiments in the works that he is excited about.</p>\n<p>&#8220;Maybe ads aren’t the answer – fine,&#8221; he said. &#8220;But telling maintainers to bury their appeals where no one bothers to look is not the answer, either.</p>\n<p>&#8220;Approximately 100% of the Fortune 500 use open source code. Maintainers are just starting to wake up to our own power. Expect to be surprised. This certainly won’t be the last open source funding experiment.&#8221;</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 30 Aug 2019 16:02:11 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:44;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:107:\"WPTavern: Gutenberg 6.4 Adds New Typewriter Experience, Cover Block Resizing, and Block Inserter Help Panel\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=93172\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:116:\"https://wptavern.com/gutenberg-6-4-adds-new-typewriter-experience-cover-block-resizing-and-block-inserter-help-panel\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:5662:\"<p><a href=\"https://make.wordpress.org/core/2019/08/28/whats-new-in-gutenberg-28-august/\" rel=\"noopener noreferrer\" target=\"_blank\">Gutenberg 6.4 </a>arrived this week with two more improvements to the Cover block. The background can now be set to a solid color (in addition to images and videos). Users can also easily <a href=\"https://github.com/WordPress/gutenberg/pull/17143\" rel=\"noopener noreferrer\" target=\"_blank\">resize the block</a>, making it far more useful for those who are designing their own pages.</p>\n<p>One notable change to Image block in this release is the addition of a <a href=\"https://github.com/WordPress/gutenberg/pull/16475\" rel=\"noopener noreferrer\" target=\"_blank\">circle mask variation</a>. Gutenberg designer Joen Asmussen described how it works with various image aspect ratios:</p>\n<blockquote><p>This PR adds a variation to the Image block, &#8220;Circle Crop&#8221;. What that means is you can choose a style variation for the image, which rounds all 4 corners. When this is applied to a square image, that means a perfect circle. When it is applied to a rectangle, it means a pill-shape.</p></blockquote>\n<p><a href=\"https://i0.wp.com/wptavern.com/wp-content/uploads/2019/08/Screen-Shot-2019-08-29-at-2.55.40-PM.png?ssl=1\"><img /></a></p>\n<p>A new &#8220;<a href=\"https://github.com/WordPress/gutenberg/pull/16460\" rel=\"noopener noreferrer\" target=\"_blank\">Typewriter experience</a>&#8221; landed in this release, providing a smoother writing flow that is especially beneficial when writing on mobile. It keeps the users&#8217;s place while typing, maintaining a margin at the bottom of the screen. This prevents typing from overflowing outside the viewport and allows the user&#8217;s eyes to stay in the same place.</p>\n<p>This video demo from the release post explains how the Typewriter experience improves writing in the editor:</p>\n<p><div class=\"wp-video\"><!--[if lt IE 9]><script>document.createElement(\'video\');</script><![endif]-->\n<a href=\"https://wptavern.com/wp-content/uploads/2019/08/typewriter.mp4\">https://wptavern.com/wp-content/uploads/2019/08/typewriter.mp4</a></div></p>\n<h3>New Help Panel in the Block Inserter Offers More Real Estate for Contextual Help and Tips</h3>\n<p>After another round of <a href=\"https://make.wordpress.org/test/tag/usability-testing/\" rel=\"noopener noreferrer\" target=\"_blank\">usability testing in July 2019</a>, Gutenberg designers found that most participants were not interacting with the new user help tips, preferring to jump right into editing. The floating tips also obscured essential UI and the placement of the tips was <a href=\"https://github.com/WordPress/gutenberg/issues/16225\" rel=\"noopener noreferrer\" target=\"_blank\">even worse on mobile</a>.</p>\n<p>As part of an ongoing effort to <a href=\"https://github.com/WordPress/gutenberg/issues/16315\" rel=\"noopener noreferrer\" target=\"_blank\">bring all tips inline</a>, Gutenberg 6.4 <a href=\"https://github.com/WordPress/gutenberg/pull/16813\" rel=\"noopener noreferrer\" target=\"_blank\">adds a new help panel to the block inserter</a>, designed to provide contextual help and education for users. As the user mouses over different blocks, the panel displays the icon, title, a brief explanation of what the block does, along with space for an image preview.</p>\n<p><a href=\"https://i0.wp.com/wptavern.com/wp-content/uploads/2019/08/Screen-Shot-2019-08-29-at-2.01.21-PM.png?ssl=1\"><img /></a></p>\n<p>Contributors entertained quite a bit of discussion regarding how the block hovering interactions should behave, and this is likely to go through more iterations as users start testing it in the plugin. Some users may not like that it makes the block inserter take up more space on the screen, so there is a checkbox setting to turn it off under the vertical ellipses menu > Options:</p>\n<p><a href=\"https://i2.wp.com/wptavern.com/wp-content/uploads/2019/08/Screen-Shot-2019-08-29-at-2.34.40-PM.png?ssl=1\"><img /></a></p>\n<p>The new help panel might be a good solution for helping users <a href=\"https://github.com/WordPress/gutenberg/issues/16521\" rel=\"noopener noreferrer\" target=\"_blank\">identify the source of a block</a>, since branding in the block icon doesn&#8217;t always provide enough information. It could also be useful in providing a space where plugins authors could indicate if the block is only available with a paid upgrade. This would go a long way towards solving controversial issues related to monetizing plugins. Jetpack is currently <a href=\"https://wptavern.com/jetpack-7-6-improves-amp-compatibility-adds-preview-and-upgrade-nudge-for-blocks-only-available-on-paid-plans\" rel=\"noopener noreferrer\" target=\"_blank\">beta testing a preview and upgrade nudge for blocks only available on paid plans</a>. Using the help panel to indicate that the block is a non-functional preview might prevent users from getting frustrated by inserting the block only to discover the upsell in the editor.</p>\n<p>In a related ticket, Matias Ventura has also floated the idea of implementing <a href=\"https://github.com/WordPress/gutenberg/issues/16866\" rel=\"noopener noreferrer\" target=\"_blank\">block collections</a>, which would initially function in the same way block categories do now. This would allow developers to register a collection as another way to help users identify blocks coming from a single source.</p>\n<p>Gutenberg 6.4 includes several new APIs and more than two dozen enhancements and bug fixes. Check out the <a href=\"https://make.wordpress.org/core/2019/08/28/whats-new-in-gutenberg-28-august/\" rel=\"noopener noreferrer\" target=\"_blank\">release post</a> for a full list of all the changes.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 29 Aug 2019 20:14:35 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:45;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"BuddyPress: BuddyPress 5.0.0-beta1\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"https://buddypress.org/?p=307494\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:54:\"https://buddypress.org/2019/08/buddypress-5-0-0-beta1/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3126:\"<p>BuddyPress 5.0.0-beta1 is available for testing. You can <a href=\"https://downloads.wordpress.org/plugin/buddypress.5.0.0-beta1.zip\">download it here</a> or get a copy via our Subversion repository. We’d love to have your feedback and testing help.</p>\n\n\n\n<p>If your version of WordPress is &lt;= 4.6, we remind you that <strong><a href=\"https://bpdevel.wordpress.com/2018/12/07/buddypress-5-0-0-will-require-wordpress/\">BuddyPress 5.0.0 will require at least WordPress 4.7</a></strong>. </p>\n\n\n\n<p>A detailed changelog will be part of our official release notes, but, until then,&nbsp;here’s a tasty list of some of our favorite&nbsp;changes. (Check out&nbsp;<a href=\"https://buddypress.trac.wordpress.org/query?status=closed&group=resolution&milestone=5.0.0\">this report</a>&nbsp;on Trac for the full list.)</p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<h2><strong>BP REST API</strong></h2>\n\n\n\n<p>A BuddyPress developers tool to build awesome community applications or improve the performance of their existing ones. It has been developed as a feature as a plugin from <a href=\"https://github.com/buddypress/BP-REST\">GitHub</a> and we think it&#8217;s time to include it in BuddyPress Core.</p>\n\n\n\n<p>To help you discover the great powers of this new API, we&#8217;re also introducing a new user interface to manage Group members (<a href=\"https://buddypress.trac.wordpress.org/ticket/8045\">#8045</a>).</p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<h2>BP Invitations API</h2>\n\n\n\n<p>This API opens very promising opportunities to BuddyPress developers willing to manage their custom objects invites or membership requests. We&#8217;re primarly using it to improve how we handle invitations and requests to join Groups (<a href=\"https://buddypress.trac.wordpress.org/ticket/6210\">#6210</a>).</p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<h2>BuddyPress Site Health section</h2>\n\n\n\n<p>Users requesting for support will soon be able to copy the information of this section to their clipboard to share them with us. This should help our beloved support forum contributors to explain/fix issues faster.</p>\n\n\n\n<div class=\"wp-block-image\"><img src=\"https://plugins.svn.wordpress.org/buddypress/assets/icon.svg\" alt=\"\" width=\"33\" height=\"33\" /></div>\n\n\n\n<p>5.0.0 is almost ready (Targeted release date is <a href=\"https://bpdevel.wordpress.com/2019/08/23/bp-dev-chat-summary-august-21/\">September 30, 2019</a>), but&nbsp;please do not run this Beta 1 release in a production environment just yet.&nbsp;Let us know of any issues you find in&nbsp;<a href=\"https://buddypress.org/support\">the support forums</a>&nbsp;and/or&nbsp;on&nbsp;<a href=\"https://buddypress.trac.wordpress.org/\">our development tracker</a>.</p>\n\n\n\n<div class=\"wp-block-button aligncenter is-style-squared\"><a class=\"wp-block-button__link has-background\" href=\"https://downloads.wordpress.org/plugin/buddypress.5.0.0-beta1.zip\">Download and test 5.0.0-beta1</a></div>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<p>Thanks everyone for all your contributions so far; please help us test and polish the 5.0.0 release so it can be as awesome as possible!</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 28 Aug 2019 22:30:07 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"imath\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:46;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:94:\"WPTavern: StandardJS Pauses Experiment with Ads in the Terminal after Linode Pulls Sponsorship\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=93124\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:105:\"https://wptavern.com/standardjs-pauses-experiment-with-ads-in-the-terminal-after-linode-pulls-sponsorship\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:10594:\"<p><a href=\"https://feross.org/\" rel=\"noopener noreferrer\" target=\"_blank\">Feross Aboukhadijeh</a>, maintainer of the <a href=\"https://github.com/standard/\" rel=\"noopener noreferrer\" target=\"_blank\">StandardJS</a> library, a JavaScript style guide, linter, and automatic code fixer, <a href=\"https://github.com/standard/standard/issues/1381\" rel=\"noopener noreferrer\" target=\"_blank\">launched an experiment</a> last week that places ads in the terminal in order to fund development. The experiment has since been paused after receiving negative feedback from the developer community, causing Linode, one of the initial sponsors, to remove its advertisement.</p>\n<p>&#8220;I think that the current model of sustaining open source is not working and we need more experimentation,&#8221; Aboukhadijeh said. &#8220;This is one such experiment.&#8221; He developed a <a href=\"https://github.com/feross/funding\" rel=\"noopener noreferrer\" target=\"_blank\">module</a> that inserts an ad whenever Standard 14 is installed. Sponsorship funds are designated to pay for maintainer time, which he defined as &#8220;writing new features, fixing bugs, answering user questions, and improving documentation.&#8221;</p>\n<p>Aboukhadijeh is a prolific developer who has authored more than <a href=\"https://www.npmjs.com/~feross\" rel=\"noopener noreferrer\" target=\"_blank\">100 packages on npm</a> that are downloaded 100+ million times per month. Standard is his most popular open source project and is used by high profile projects and companies, including Node.js, npm, GitHub, Automattic, and many more.</p>\n<p><a href=\"https://i1.wp.com/wptavern.com/wp-content/uploads/2019/08/Screen-Shot-2019-08-27-at-10.26.50-PM.png?ssl=1\"><img /></a></p>\n<p>Aboukhadijeh said his goal with the experiment is to make Standard and other open source projects healthier.</p>\n<p>&#8220;For complex reasons, companies are generally hesitant or unwilling to fund OSS directly,&#8221; he said. &#8220;When it does happen, it&#8217;s never enough and it never reaches packages which are transitive dependencies (i.e. packages that no one installs explicitly and therefore no one knows exists). Essentially, we have a public good which is consumed by huge numbers of users, but which almost no one pays for. Fortunately, there exists a funding model that usually works for public goods like this – ads.&#8221;</p>\n<p>Here is an example of the LogRocket ad that was part of the initial experiment:</p>\n<p><a href=\"https://i2.wp.com/wptavern.com/wp-content/uploads/2019/08/logrocket-ad.png?ssl=1\"><img /></a></p>\n<p>While some developers communicated support for open source maintainers to monetize their projects in whatever way they choose, the majority of feedback on GitHub, Hacker News, Reddit, and social media strongly criticized this particular approach.</p>\n<p>William Hilton, developer at Stoplight, speculated on the consequences of this type of advertising becoming a popular funding model:</p>\n<blockquote><p>I do worry that npm install will just become a long trail of banner ads though eventually and it won&#8217;t scale. Because if every npm package adds ads, the noticeability of each ad will diminish. (Interestingly, the most valuable &#8220;realestate&#8221; will be packages whose banner is displayed last, so if it becomes a literal &#8220;race-to-the-bottom&#8221; people might add sleep statements to their post-install scripts so they are displayed nearest the bottom. What a dystopian installation experience!)</p></blockquote>\n<p>He also noted that Yarn blocks the output of post-install scripts, which in this case would serve as built-in ad-blocking. Yarn&#8217;s maintainer chimed in on the thread with more context.</p>\n<p>&#8220;As maintainer of Yarn, I&#8217;m strongly against this pattern, although not for the reasons you might think,&#8221; Maël Nison <a href=\"https://github.com/standard/standard/issues/1381#issuecomment-524276499\" rel=\"noopener noreferrer\" target=\"_blank\">said</a>. &#8220;Post-install scripts deoptimize packages and break workflows.</p>\n<p>&#8220;Yarn already doesn&#8217;t print the build logs unless they make the installs crash, so this post-install script wouldn&#8217;t have any visible effect for our users. Still, I value the health of the ecosystem a lot, both from the point of view of maintainers and users, and I would be happy to discuss how we could satisfy this use case in a more integrated and less intrusive way.&#8221;</p>\n<p>Since this is a newer experiment and hasn&#8217;t gone mainstream, it&#8217;s not clear whether npm may decide to block all methods of serving advertisements through the terminal in the future. A new module called <a href=\"https://github.com/kethinov/no-cli-ads\" rel=\"noopener noreferrer\" target=\"_blank\">No CLI Ads</a> was created in response to Aboukhadijeh&#8217;s funding module. It blocks ads from appearing in console output. <a href=\"https://github.com/mkg20001/npm-adblock\" rel=\"noopener noreferrer\" target=\"_blank\">npm-adblock</a> is an alternative that functions in a different way. The existence of simple, albeit inconvenient, ways of blocking these types of ads may be all that is necessary to dry up any potential revenue stream.</p>\n<p>Feedback on this experiment demonstrates that there is wide support for finding a solution to the problem of open source funding, but most agree that terminal ads is not a viable option. In fact, many commenters identified this approach as the most annoying thing that a package maintainer can do, apart from removing the package. Developers do not wish to be spammed while installing a dependency. One commenter describes his terminal as &#8220;the one last stronghold&#8221; and &#8220;haven of peace&#8221; that doesn&#8217;t serve ads from corporate overlords.</p>\n<p>&#8220;Selling ad-space is not innovative,&#8221; developer Matthias Hogerheijde said. &#8220;And it&#8217;s particularly unhelpful in my logs. For me, the issue is more that I don&#8217;t want stuff that doesn&#8217;t help me in my logs. I wholeheartedly agree with putting your &#8216;supported by company X&#8217; in the readme. That helps me understand, it does resonate with me when I see certain companies donating money to OSS. I, too, want to live in a perfect world where every developer can live, pay rent and only work on projects they like. That perfect world for me does not include ads in my terminal.&#8221;</p>\n<p>Reddit commenters took humorous jabs at the idea, penning sample ads that interrupt the build process:</p>\n<p><a href=\"https://i2.wp.com/wptavern.com/wp-content/uploads/2019/08/Screen-Shot-2019-08-27-at-6.18.13-PM.png?ssl=1\"><img /></a></p>\n<h3>Linode Pulls Sponsorship from Standard&#8217;s Terminal Ads Experiment</h3>\n<p>Standard.js users who were unhappy with the ads in their terminals complained to the sponsors and Linode decided to remove its ad from the experiment.</p>\n<blockquote class=\"twitter-tweet\">\n<p lang=\"en\" dir=\"ltr\">We hear you loud and clear. We\'ve reconsidered and have removed the ad.</p>\n<p>&mdash; Linode (@linode) <a href=\"https://twitter.com/linode/status/1165421512633016322?ref_src=twsrc%5Etfw\">August 25, 2019</a></p></blockquote>\n<p></p>\n<p>&#8220;We reconsidered after reflecting on the developer community&#8217;s reaction,&#8221; a Linode representative said on Twitter. &#8220;We still passionately support open source software along with @feross, but we&#8217;ll be more careful about experimenting in the future while continuing to innovate.&#8221;</p>\n<p>Prior to pausing the experiment, Aboukhadijeh reported he had raised $2,000, enough to fund five days worth of his time to release Standard 14.</p>\n<p>&#8220;If we are able to raise additional funds, the next thing I&#8217;d like to focus on is out-of-the-box TypeScript support in StandardJS (one of the most common feature requests!) and modernizing the various text editor plugins (many of which are currently unmaintained),&#8221; Aboukhadijeh said. &#8220;If others in the community are interested in taking the lead on any of these issues, I&#8217;d like to direct some funds to you.&#8221;</p>\n<p>The experiment isn&#8217;t entirely off the table, since it seems to have met one of Aboukhadijeh&#8217;s immediate objectives, despite annoying (and in some cases infuriating) the developer community.</p>\n<p>Four days ago, Standard locked the GitHub thread discussing the new funding model after it became too heated. The project&#8217;s maintainers are now <a href=\"https://github.com/feross/funding/issues/12\" rel=\"noopener noreferrer\" target=\"_blank\">evaluating this iteration of the experiment</a>, but the discussion extends beyond the simple question of whether developers like ads in their terminals. A new thread on the project&#8217;s repo, titled &#8220;<a href=\"https://github.com/feross/funding/issues/10\" rel=\"noopener noreferrer\" target=\"_blank\">What&#8217;s wrong with Open Source right now?</a>&#8221; has diverted some of the negative feedback into a broader, more productive discussion.</p>\n<p>The experiment has reignited important conversations about the sustainability of open source and <a href=\"https://github.com/feross/funding/issues/11\" rel=\"noopener noreferrer\" target=\"_blank\">where project maintainers want to see it go in the future.</a> In a recent <a href=\"https://twitter.com/feross/status/1163553976937304065\" rel=\"noopener noreferrer\" target=\"_blank\">tweet</a>, Aboukhadijeh shared a <a href=\"http://softwaremaniacs.org/blog/2019/02/25/misconception-about-oss-support/en/\" rel=\"noopener noreferrer\" target=\"_blank\">link</a> to particular situation that one maintainer faced in supporting a free syntax highlighting library.</p>\n<p>After receiving urgent comments and emails following a release that had errors causing dependencies to break, Ivan Sagalaev, the original author of highlight.js, aptly summarized the current state of the relationship between businesses and open source projects:</p>\n<blockquote><p>Dear fellow engineers, please take this build hiccup as an opportunity to explain to your particular business people that their entire intellectual property is a thin layer on top of a shaky foundation of open-source code lazily maintained by hobbyists or paid for by other businesses having their own goals in mind. </p>\n<p>If they really want stability they have to invest in it by, for example, hiring engineers to deal with myriad of dependencies, maintain local stable forks, contribute patches upstream, or whatever — the key point is that it should not look like it &#8216;just works&#8217; on fairy dust.</p></blockquote>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 28 Aug 2019 20:14:34 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:47;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:70:\"WPTavern: Top Fifty WP: New Website Ranks Plugins by Downloads per Day\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=93005\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:80:\"https://wptavern.com/top-fifty-wp-new-website-ranks-plugins-by-downloads-per-day\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3117:\"<p>The team behind <a href=\"https://www.pootlepress.com\" rel=\"noopener noreferrer\" target=\"_blank\">Pootlepress</a> has launched a new website that displays the <a href=\"https://topfiftywp.com/\" rel=\"noopener noreferrer\" target=\"_blank\">top 50 WordPress plugins</a> by downloads per day. It uses the <a href=\"https://codex.wordpress.org/WordPress.org_API#Plugins\" rel=\"noopener noreferrer\" target=\"_blank\">WordPress.org Plugin API</a> to pull the previous day&#8217;s download stats from plugins hosted in the directory. The site also shows the average rating as a percent in the right-hand column.</p>\n<p><a href=\"https://i1.wp.com/wptavern.com/wp-content/uploads/2019/08/Screen-Shot-2019-08-27-at-10.33.41-AM.png?ssl=1\"><img /></a></p>\n<p>As one might expect, the most popular plugins with more than a million active installs dominate the top 50 spots. There are a few surprising plugins in the mix, with 500,000 installs or less, where these daily download stats might be an indication of their potential growth: <a href=\"https://wordpress.org/plugins/ocean-extra/\" rel=\"noopener noreferrer\" target=\"_blank\">Ocean Extra</a>, <a href=\"https://wordpress.org/plugins/wps-hide-login/\" rel=\"noopener noreferrer\" target=\"_blank\">WPS Hide Login</a>, <a href=\"https://wordpress.org/plugins/amp/\" rel=\"noopener noreferrer\" target=\"_blank\">AMP</a>, <a href=\"https://wordpress.org/plugins/wp-file-manager/\" rel=\"noopener noreferrer\" target=\"_blank\">File Manager</a>, and <a href=\"https://wordpress.org/plugins/wp-statistics/\" rel=\"noopener noreferrer\" target=\"_blank\">WP Statistics</a>. It&#8217;s something to monitor over time, as there may be quite a bit of turnover in the top 50.</p>\n<p>It&#8217;s also interesting to see a few plugins among the top 50 that provide utilities frequently used when working with WordPress but not necessary to have installed all the time. It looks like users are installing plugins like WordPress Importer, Maintenance, All-in-One WP Migration, and Coming Soon Page, and then leaving them active on their sites.</p>\n<h3>Top Fifty WP Is Now Available as a Plugin with Gutenberg Blocks for Top Plugins and Themes</h3>\n<p>Pootlepress has <a href=\"https://www.pootlepress.com/2019/08/introducing-topfiftywp-com-our-new-website-that-shows-the-most-downloaded-wordpress-plugins-per-day/\" rel=\"noopener noreferrer\" target=\"_blank\">packaged up Top 50 WP as a plugin</a> so that other publishers can use it to display the same data on their own websites. It includes two Gutenberg blocks &#8211; one for plugins and the other for themes. They are listed under Layout Elements.</p>\n<p><a href=\"https://i0.wp.com/wptavern.com/wp-content/uploads/2019/08/Screen-Shot-2019-08-27-at-2.00.12-PM.png?ssl=1\"><img /></a></p>\n<p>Pootlepress founder Jamie Marsland said the plugin is coming soon to WordPress.org but for now it can be downloaded from his website. It requires the Caxton plugin to be installed, which provides Pootlepress&#8217; base framework for new blocks. Marsland&#8217;s team is working on adding more blocks with plugin and theme data, as well as customization options for each block.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 27 Aug 2019 19:15:06 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:48;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:46:\"WPTavern: Micro.blog Adds Tumblr Cross-Posting\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=93064\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:57:\"https://wptavern.com/micro-blog-adds-tumblr-cross-posting\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4304:\"<p>Over the weekend, <a href=\"https://micro.blog/\" rel=\"noopener noreferrer\" target=\"_blank\">Micro.blog</a> added <a href=\"https://www.manton.org/2019/08/23/tumblr-crossposting.html\" rel=\"noopener noreferrer\" target=\"_blank\">Tumblr cross-posting</a> to its service in response to <a href=\"https://wptavern.com/automattic-acquires-tumblr-plans-to-rebuild-the-backend-powered-by-wordpress\" rel=\"noopener noreferrer\" target=\"_blank\">Automattic&#8217;s acquisition of the company</a>. Micro.blog users can now elect to have their blog posts automatically syndicated to Tumblr.</p>\n<p><a href=\"https://i1.wp.com/wptavern.com/wp-content/uploads/2019/08/tumblr-cross-posting.png?ssl=1\"><img /></a></p>\n<p>Although Tumblr is somewhat of a competitor to Micro.blog&#8217;s social networking and microblogging service, founder Manton Reece said he sees Tumblr as more of a social network:</p>\n<blockquote><p>I usually avoid adding blog hosting services to Micro.blog’s available cross-posting destinations. After all, if it’s a good blog host that I could recommend as your primary blog, why not just post everything there instead of using Micro.blog’s own blog hosting? But the more I’ve used Tumblr in the last couple of weeks, the more I think about Tumblr as a community first and a blog host second.</p></blockquote>\n<p>Micro.blog may bear some similarities to Tumblr but the service has an entirely different flavor. It has become an alternative watering hole for indie web enthusiasts with its support for Webmention and Micropub protocols. Many who use the service seem to already be convinced of the value of hosting a blog that is independent from the major social media silos.</p>\n<p>Micro.blog already had several Tumblr-related features built in to the platform. Users can follow Tumblr blogs on Micro.blog by visiting the Discover feed and plugging in any Tumblr domain name. Micro.blog users can also add their own Tumblr feeds to their accounts so followers can see posts from both their main microblog and the Tumblr blog.</p>\n<p>On a recent episode of the Core Intuition podcast titled &#8220;<a href=\"https://coreint.org/2019/08/episode-384-a-much-bigger-megaphone/\" rel=\"noopener noreferrer\" target=\"_blank\">A Much Bigger Megaphone</a>,&#8221; Reece and co-host Daniel Jalkut, the developer of <a href=\"https://www.red-sweater.com/marsedit/\" rel=\"noopener noreferrer\" target=\"_blank\">MarsEdit</a>, speculate on the future of Tumblr and discuss some key differences from Micro.blog&#8217;s service and social network. Micro.blog acts more as an aggregate of blogs from around the web, whereas Tumblr&#8217;s blogging aspect is limited to Tumblr accounts only.</p>\n<p>Both networks aim to make blogging easier and seem to focus on shorter-style posts. However, Micro.blog is more of a social network for independent microbloggers who want to connect their content to a stream of blogs. Tumblr is a blogging service that has a symbiotic relationship with the communities its publishing capabilities enable. It has the potential to become the most important social network on the open web, given its active user base and Automattic&#8217;s commitment to independent publishing.</p>\n<p>Both Reece and Jalkut said they were optimistic that Automattic&#8217;s acquisition of Tumblr will introduce more opportunities for both Micro.blog and MarsEdit, as the company&#8217;s influence makes it easier to market the value of owning your own blog. For a long time, Tumblr&#8217;s API hasn&#8217;t supported some of the key features of MarsEdit and Jlkut said he is hopeful that with Automattic at the helm the API may change to support the types of things his customers need.</p>\n<p>In a <a href=\"https://www.manton.org/2019/08/13/tumblr-and-appnet.html\" rel=\"noopener noreferrer\" target=\"_blank\">post</a> published shortly after the acquisition, Reece said he believes Tumblr has a lot of overlap with Micro.blog and views Automattic as having a &#8220;shared vision of the future that embraces content ownership, supports healthy communities, and deemphasizes massive social networks.&#8221; Those who value blogs and blogging are hopeful that Tumblr&#8217;s new ownership will rekindle some of the social magic that was present in the early days of the web but has since become more scarce.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 27 Aug 2019 03:59:56 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:49;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:81:\"WPTavern: php Central Europe Conference Canceled Due to Lack of Speaker Diversity\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=93012\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:92:\"https://wptavern.com/php-central-europe-conference-canceled-due-to-lack-of-speaker-diversity\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:8679:\"<p><a href=\"https://2019.phpce.eu/en/\" rel=\"noopener noreferrer\" target=\"_blank\">phpCE</a>, a central European PHP conference that was previously scheduled for October 4-6, has been cancelled due to a public fiasco resulting from a lack of gender diversity in the speaker lineup. The event, previously known as PHPCon Poland, was set to be held in Dresden, Germany, after the concept changed last year to rotate host cities and include a larger region of the PHP community.</p>\n<p>After phpCE had <a href=\"https://twitter.com/phpce_eu/status/1156646682114830336\" rel=\"noopener noreferrer\" target=\"_blank\">boasted</a> a &#8220;rich and diverse lineup,&#8221; the published schedule was criticized for including zero women, while several speakers were given two sessions apiece. The <a href=\"https://2018.phpce.eu/en/\" rel=\"noopener noreferrer\" target=\"_blank\">2018 event</a> had a similar lack of diversity among speakers. <a href=\"https://www.cfpland.com/\" rel=\"noopener noreferrer\" target=\"_blank\">CFP Land</a> founder Karl Hughes&#8217; tweet precipitated a flood of critical feedback.</p>\n<blockquote class=\"twitter-tweet\">\n<p lang=\"en\" dir=\"ltr\">This year\'s <a href=\"https://twitter.com/phpce_eu?ref_src=twsrc%5Etfw\">@phpce_eu</a> conference seems to have gone with the \"White Males Only\" conference lineup <img src=\"https://s.w.org/images/core/emoji/12.0.0-1/72x72/1f62c.png\" alt=\"?\" class=\"wp-smiley\" /></p>\n<p>Shame. It\'s 2019, we can do better.</p>\n<p>&mdash; Karl L Hughes (@KarlLHughes) <a href=\"https://twitter.com/KarlLHughes/status/1151525811616387073?ref_src=twsrc%5Etfw\">July 17, 2019</a></p></blockquote>\n<p></p>\n<p>Organizers received the public criticisms as an attack, a response that disappointed many who were previously considering attending the event. Speakers started to withdraw from the conference and <a href=\"https://twitter.com/phpce_eu/status/1165381240922484743\" rel=\"noopener noreferrer\" target=\"_blank\">ticket sales dried up</a>, as organizers demonstrated an unwillingness to do further diversity outreach beyond their initial call for proposals.</p>\n<p>Mark Baker, one of the speakers who decided to <a href=\"https://markbakeruk.net/2019/07/24/withdrawal-from-speaking-at-phpce-2019\" rel=\"noopener noreferrer\" target=\"_blank\">cancel his engagement</a>, said organizers attempted to persuade him not to withdraw by offering to put the sole female speaker applicant on the schedule. Baker said he was uncomfortable, as that would put &#8220;a lot of pressure on the woman, knowingly being invited to speak after an all-male speaker list has already been announced, making her a &#8216;token&#8217; to diversity.&#8221;</p>\n<p>&#8220;It wasn’t an easy decision to make, because I do enjoy sharing my coding passion; but having advocated for diversity at PHP developer conferences for the last several years, I have to follow my beliefs that diversity should be a cornerstone of the PHP developer community,&#8221; Baker said. &#8220;Diversity matters more to me than speaking.&#8221;</p>\n<p>Larry Garfield (<a href=\"https://twitter.com/crell\" rel=\"noopener noreferrer\" target=\"_blank\">@crell</a>), who is active in the Drupal community, <a href=\"https://steemit.com/php/@crell/skipping-php-ce-this-year\" rel=\"noopener noreferrer\" target=\"_blank\">reported</a> that he also tried to work with phpCE&#8217;s organizers to diversify the lineup before being forced by his personal convictions to withdraw.</p>\n<p>&#8220;I messaged the organizers, asking them to drop some of our double-sessions in favor of more female participation,&#8221; Garfield said. &#8220;We also offered to work with them to figure out ways to reduce the cost of bringing us in (a number of us were transatlantic, and Dresden is not the cheapest city to get to) so they could afford to cover more speakers.</p>\n<p>&#8220;Unfortunately, the organizers indicated they were not open to such an arrangement. According to them, they had only a single woman submit a session proposal this year despite having women present in previous years, and hers was a repeat from a local conference last year. They were also firm that the Call For Papers was done and over and they&#8217;re not open to reaching out to new people now. Sadly, from what the organizers told me, they actively don&#8217;t want to do outreach.&#8221;</p>\n<p>A situation that has gone this far is often irreparable once it reaches the point of becoming an international debacle. If a diverse speaker selection hasn&#8217;t been established before the schedule announcement goes out, backpedaling to arrive at inclusion inevitably sends a signal to potential attendees that this might not be a welcoming event.</p>\n<p>Due to the way it was handled, phpCE&#8217;s cancellation became a spectacular failure of inclusion that played out in a public way over the past several weeks. phpCE&#8217;s organizers remained <a href=\"https://twitter.com/phpce_eu/status/1151606520406257664\" rel=\"noopener noreferrer\" target=\"_blank\">defensive in their replies</a> to critics on social media, clinging instead to what the community has deemed to be an outmoded and ineffective approach to organizing more diverse events.</p>\n<blockquote class=\"twitter-tweet\">\n<p lang=\"en\" dir=\"ltr\">D&amp;I is okay as long as it means the equalization of chances. If you place D&amp;I in a stronger position than substantive content of the agenda, you destroy the event. The \"prioritize\" sounds exactly in that way.</p>\n<p>&mdash; Dariusz Grzesista (@DarGrze) <a href=\"https://twitter.com/DarGrze/status/1151923365269127168?ref_src=twsrc%5Etfw\">July 18, 2019</a></p></blockquote>\n<p></p>\n<p>phpCE did not publish a post regarding why the event was cancelled but rather cited several blog posts and exchanges on social media as factors in the decision.</p>\n<h3>How WordPress Is Equipping Event Organizers to Create more Diverse Speaker Lineups</h3>\n<p>Many organizers of large tech events are making proactive attempts at getting more diverse speakers and the web is full of countless resources from those who have shared their processes and tips on the topic. In the WordPress world specifically, the Community team has created a <a href=\"https://make.wordpress.org/community/handbook/meetup-organizer/event-formats/diversity-speaker-training-workshop/\" rel=\"noopener noreferrer\" target=\"_blank\">Diversity Speaker Training Workshop</a> to help meetup and WordCamp organizers cultivate better representation from different groups in their communities.</p>\n<p>This particular workshop, which was created by Jill Binder and <a href=\"https://en.blog.wordpress.com/2019/06/19/want-to-see-a-more-diverse-wordpress-contributor-community-so-do-we/\" rel=\"noopener noreferrer\" target=\"_blank\">sponsored by Automattic</a>, has produced positive results in 55 WordPress communities in 26 different countries.</p>\n<p>“All of the communities that held this workshop experienced a real change in the speaker roster for their annual conferences; many of their WordCamps went from having 10% women speakers to having 50% or more women speakers in less than a year,&#8221; community organizer Andrea Middleton said. &#8220;In 2017, Seattle had 60% women speakers and in 2018, Vancouver had 63%.” Organizers of large events like WordCamp US and WordCamp Miami have also created more diverse lineups in recent years with their own proactive strategies.</p>\n<blockquote class=\"twitter-tweet\">\n<p lang=\"en\" dir=\"ltr\">Another great year of amazing, diverse speakers! <a href=\"https://twitter.com/hashtag/WCMIA?src=hash&ref_src=twsrc%5Etfw\">#WCMIA</a> <a href=\"https://twitter.com/hashtag/WordPress?src=hash&ref_src=twsrc%5Etfw\">#WordPress</a> <a href=\"https://t.co/e2smmCpPAF\">pic.twitter.com/e2smmCpPAF</a></p>\n<p>&mdash; WordCamp Miami (@wordcampmiami) <a href=\"https://twitter.com/wordcampmiami/status/1107383222453833728?ref_src=twsrc%5Etfw\">March 17, 2019</a></p></blockquote>\n<p></p>\n<p>The <a href=\"https://wordpress.tv/2019/07/30/jill-binder-what-is-the-diverse-speaker-workshop/\" rel=\"noopener noreferrer\" target=\"_blank\">Diversity Speaker Training Workshop</a> seems to be particularly effective because it focuses on actively creating and equipping future speakers in a more organic way at the local level. Any WordPress event organizers who feel they have no options for increasing the diversity of their events can get help from the Community team. Relying on the call for speakers to deliver a diverse lineup is not always the most effective strategy. In many cases, it takes a great deal of work to bring in diverse speakers, but the Community Team has worked for years to pioneer new resources that help organizers succeed in these efforts.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 26 Aug 2019 19:35:45 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}}}}}}}}}}s:4:\"type\";i:128;s:7:\"headers\";O:42:\"Requests_Utility_CaseInsensitiveDictionary\":1:{s:7:\"\0*\0data\";a:8:{s:6:\"server\";s:5:\"nginx\";s:4:\"date\";s:29:\"Wed, 25 Sep 2019 03:42:43 GMT\";s:12:\"content-type\";s:8:\"text/xml\";s:4:\"vary\";s:15:\"Accept-Encoding\";s:13:\"last-modified\";s:29:\"Wed, 25 Sep 2019 03:30:09 GMT\";s:15:\"x-frame-options\";s:10:\"SAMEORIGIN\";s:4:\"x-nc\";s:9:\"HIT ord 1\";s:16:\"content-encoding\";s:4:\"gzip\";}}s:5:\"build\";s:14:\"20130911163210\";}','no'),(183,'can_compress_scripts','1','no'),(195,'recently_activated','a:0:{}','yes'),(772,'theme_mods_astra-child','a:5:{i:0;b:0;s:18:\"nav_menu_locations\";a:2:{s:7:\"primary\";i:2;s:11:\"footer_menu\";i:0;}s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1568594389;s:4:\"data\";a:9:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";a:6:{i:0;s:8:\"search-2\";i:1;s:14:\"recent-posts-2\";i:2;s:17:\"recent-comments-2\";i:3;s:10:\"archives-2\";i:4;s:12:\"categories-2\";i:5;s:6:\"meta-2\";}s:13:\"header-widget\";a:0:{}s:15:\"footer-widget-1\";a:0:{}s:15:\"footer-widget-2\";a:0:{}s:24:\"advanced-footer-widget-1\";a:0:{}s:24:\"advanced-footer-widget-2\";a:0:{}s:24:\"advanced-footer-widget-3\";a:0:{}s:24:\"advanced-footer-widget-4\";a:0:{}}}s:18:\"custom_css_post_id\";i:283;s:11:\"custom_logo\";i:18;}','yes'),(233,'jetpack_constants_sync_checksum','a:19:{s:16:\"EMPTY_TRASH_DAYS\";i:2473281379;s:17:\"WP_POST_REVISIONS\";i:4261170317;s:26:\"AUTOMATIC_UPDATER_DISABLED\";i:634125391;s:7:\"ABSPATH\";i:3291617998;s:14:\"WP_CONTENT_DIR\";i:33705829;s:9:\"FS_METHOD\";i:634125391;s:18:\"DISALLOW_FILE_EDIT\";i:634125391;s:18:\"DISALLOW_FILE_MODS\";i:634125391;s:19:\"WP_AUTO_UPDATE_CORE\";i:634125391;s:22:\"WP_HTTP_BLOCK_EXTERNAL\";i:634125391;s:19:\"WP_ACCESSIBLE_HOSTS\";i:634125391;s:16:\"JETPACK__VERSION\";i:3417957315;s:12:\"IS_PRESSABLE\";i:634125391;s:15:\"DISABLE_WP_CRON\";i:634125391;s:17:\"ALTERNATE_WP_CRON\";i:634125391;s:20:\"WP_CRON_LOCK_TIMEOUT\";i:3994858278;s:11:\"PHP_VERSION\";i:938118350;s:15:\"WP_MEMORY_LIMIT\";i:3065409971;s:19:\"WP_MAX_MEMORY_LIMIT\";i:1839787262;}','yes'),(236,'jetpack_sync_https_history_main_network_site_url','a:1:{i:0;s:4:\"http\";}','yes'),(237,'jetpack_sync_https_history_site_url','a:2:{i:0;s:4:\"http\";i:1;s:4:\"http\";}','yes'),(238,'jetpack_sync_https_history_home_url','a:2:{i:0;s:4:\"http\";i:1;s:4:\"http\";}','yes'),(1207,'wordfence_ls_version','1.0.3','yes'),(1208,'wordfence_version','7.4.0','yes'),(1209,'wordfence_case','1','yes'),(1210,'wordfence_installed','1','yes'),(1211,'wordfenceActivated','1','yes'),(1212,'wf_plugin_act_error','','yes'),(1224,'7238c9070c32ed98a38810e053129a9a','a:2:{s:7:\"timeout\";i:1569458462;s:5:\"value\";a:15:{s:14:\"stable_version\";s:5:\"2.7.0\";s:12:\"last_updated\";s:19:\"2019-09-25 09:30:20\";s:8:\"sections\";s:84860:\"a:2:{s:11:\"description\";s:161:\"Elementor Pro adds new features to the Elementor Page Builder plugin. Control your conversions, your user engagement, your entire website, from one page builder.\";s:9:\"changelog\";s:84638:\"<h4>2.7.0 - 2019-09-24</h4>\n<ul>\n<li>New: Enhanced Galleries widget (<a href=\"https://github.com/elementor/elementor/issues/1898\">#1898</a>, <a href=\"https://github.com/elementor/elementor/issues/3103\">#3103</a>, <a href=\"https://github.com/elementor/elementor/issues/4279\">#4279</a>, <a href=\"https://github.com/elementor/elementor/issues/7631\">#7631</a>)</li>\n<li>New: Dynamic Number (<a href=\"https://github.com/elementor/elementor/issues/5952\">#5952</a>)</li>\n<li>New: Full content skin for Posts and Archive-posts widgets (<a href=\"https://github.com/elementor/elementor/issues/4617\">#4617</a>)</li>\n<li>Tweak: Added dynamic number capability to Price List, Price Table, Counter, Star Rating, Progress Bar widgets</li>\n<li>Tweak: Added tags support to forms Mailchimp action (<a href=\"https://github.com/elementor/elementor/issues/5418\">#5418</a>)</li>\n<li>Tweak: User Profile Picture Dynamic Tag (<a href=\"https://github.com/elementor/elementor/issues/7947\">#7947</a>, <a href=\"https://github.com/elementor/elementor/issues/8740\">#8740</a>)</li>\n<li>Tweak: Added <code>font-display</code> support to custom fonts (<a href=\"https://github.com/elementor/elementor/issues/5993\">#5993</a>, <a href=\"https://developers.elementor.com/elementor-pro-2-7-custom-fonts-font-display-support/\">Developers Blog Post</a>)</li>\n<li>Tweak: Added Text Shadow control to Slides widget (<a href=\"https://github.com/elementor/elementor/issues/8800\">#8800</a>)</li>\n<li>Tweak: Added Re-subscribe support to MailerLite (<a href=\"https://github.com/elementor/elementor/issues/8799\">#8799</a>)</li>\n<li>Tweak: Added Dynamic capabilities to Facebook Embed widget (<a href=\"https://github.com/elementor/elementor/issues/9030\">#9030</a>)</li>\n<li>Tweak: Use <code>swiper.js</code> instead of <code>slick.js</code> in Slides widget (<a href=\"https://developers.elementor.com/elementor-2-7-moving-sliders-from-slick-to-swiper/\">Developers Blog Post</a>)</li>\n<li>Tweak: Added <code>elementor_pro/search_form/before_input</code> action hook to Search Form widget (<a href=\"https://github.com/elementor/elementor/issues/5598\">#5598</a>)</li>\n<li>Tweak: Added <code>elementor_pro/search_form/after_input</code> action hook to Search Form widget (<a href=\"https://github.com/elementor/elementor/issues/5598\">#5598</a>)</li>\n<li>Tweak: Added dynamic support for Custom field key (<a href=\"https://github.com/elementor/elementor/issues/7789\">#7789</a>)</li>\n<li>Tweak: Increased expired license notice bar frequency</li>\n<li>Tweak: Changed the icon name of Slides widget</li>\n<li>Tweak: Added designated Finder\'s Icons for Custom icons &amp; Custom fonts</li>\n<li>Tweak: Use Ken Burns Effect as an external module</li>\n<li>Tweak: Remove Fontello conflicting CSS on import to Custom Icons sets</li>\n<li>Tweak: Editor Panel UI tweaks</li>\n<li>Tweak: Added DOM events on Popup show/hide (<a href=\"https://developers.elementor.com/elementor-pro-2-7-popup-events/\">Developers Blog Post</a>)</li>\n<li>Tweak: Added option to change the variations field width in Add to Cart widget</li>\n<li>Tweak: Use select control instead of select2 in Menu Cart widget</li>\n<li>Tweak: Added conditions to the tabs instead of to each control in Share Buttons widget</li>\n<li>Tweak: Added Typography controls to HTML field in Forms widget</li>\n<li>Tweak: Allow edit selected Font file in Custom Font</li>\n<li>Tweak: Changed reCAPTCHA v3 error message</li>\n<li>Tweak: Remove the &quot;Save as Global&quot; option on Global widget context menu</li>\n<li>Fix: Corrected selector for <code>removeControlSpinner()</code> (<a href=\"https://github.com/elementor/elementor/issues/8790\">#8790</a>)</li>\n<li>Fix: Slides widget navigation icons misplacement (<a href=\"https://github.com/elementor/elementor/issues/8533\">#8533</a>)</li>\n<li>Fix: Horizontal Scrollbar when Slider widget is set to Full Width (<a href=\"https://github.com/elementor/elementor/issues/8527\">#8527</a>)</li>\n<li>Fix: Inconsistent behavior when &quot;Infinite Loop&quot; enabled with &quot;Autoplay&quot; in Slides widget (<a href=\"https://github.com/elementor/elementor/issues/6726\">#6726</a>)</li>\n<li>Fix: Ken Burns effect on Chrome transition glitches (<a href=\"https://github.com/elementor/elementor/issues/1671\">#1671</a>)</li>\n<li>Fix: Nothing found message shows up inside the columns set in Posts Archive widget (<a href=\"https://github.com/elementor/elementor/issues/7347\">#7347</a>)</li>\n<li>Fix: Responsive UI glitch in Popup Conditions modal tabs</li>\n<li>Fix: Removed unnecessary divider in Call to Action widget</li>\n<li>Fix: Custom Add To Cart * button style (size, position and background color) when <code>quantity</code> is enabled.</li>\n<li>Fix: Add support for Document/PageBase in Theme Builder (Core &gt;=2.7.0)</li>\n<li>Fix: Ampersand character breaks email link in Share Buttons widget</li>\n<li>Fix: Correct custom font attachment <code>mime-type</code> to show uploaded Custom Fonts</li>\n<li>Fix: Mini-Cart not refreshing in Menu Cart widget</li>\n<li>Fix: Cart drawer not working when WC Subscriptions plugin is activated</li>\n<li>Fix:  Querying CPT with custom taxonomies does not show the taxonomies before saving</li>\n<li>Fix: Double rendering on change caused console error in Theme Builder\'s conditions screen</li>\n<li>Fix: Translations and Strings in Share Buttons widget</li>\n<li>Fix: Avoid using offset if the source is Manual selection in Query Control</li>\n<li>Fix: Form being submitted although reCAPTCHA v3 validation failed in Forms widget</li>\n</ul>\n<h4>2.6.5 - 2019-08-26</h4>\n<ul>\n<li>Tweak: Added compatibility for the upcoming release of Elementor v2.7</li>\n<li>Fix: Button style not working when <code>quantity</code> is enabled in Custom Add To Cart widget</li>\n<li>Fix: Updated minified JS file fixed WhatsApp base URL in Share Buttons widget</li>\n</ul>\n<h4>2.6.4 - 2019-08-21</h4>\n<ul>\n<li>Tweak: Added compatibility for the upcoming release of Elementor v2.7</li>\n<li>Fix: Changed WhatsApp base URL in Share Buttons widget for cross-device compatibility</li>\n<li>Fix: Random slides order after several clicks on pagination in Testimonial Carousel widget</li>\n</ul>\n<h4>2.6.3 - 2019-08-18</h4>\n<ul>\n<li>Fix: Core version rollback to <code>&gt;2.6.0</code> causes a fatal error</li>\n<li>Fix: Duplicate images when slideshow skin is selected in Media Carousel lightbox</li>\n<li>Fix: Default bottom margin added to reCAPTCHA V3 badge</li>\n<li>Fix: Input glitch in reCAPTCHA V3 threshold settings</li>\n</ul>\n<h4>2.6.2 - 2019-07-30</h4>\n<ul>\n<li>Tweak: Better accessibility support in Search Form widget</li>\n<li>Fix: UI glitched in Popup publish screen (<a href=\"https://github.com/elementor/elementor/issues/8616\">#8616</a>)</li>\n<li>Fix: &quot;Child of Term&quot; and &quot;Any child of term&quot; conditions (<a href=\"https://github.com/elementor/elementor/issues/8695\">#8695</a>)</li>\n<li>Fix: Restored <code>library_widget_templates</code> action hook for 3rd party compatibility (<a href=\"https://github.com/elementor/elementor/issues/8687\">#8687</a>)</li>\n<li>Fix: Twitter Icon missing in Blockquote widget</li>\n<li>Fix: Form reCAPTCHA v3 badge position not working</li>\n<li>Fix: Renewal notice bar appears in wrong situations</li>\n<li>Fix: Draft Icon Set loads empty Icon Library</li>\n</ul>\n<h4>2.6.1 - 2019-07-24</h4>\n<ul>\n<li>Fix: Query Control autocomplete not retrieving results (<a href=\"https://github.com/elementor/elementor/issues/8672\">#8672</a>, <a href=\"https://github.com/elementor/elementor/issues/8661\">#8661</a>)</li>\n<li>Fix: Price Table features section not working (<a href=\"https://github.com/elementor/elementor/issues/8660\">#8660</a>)</li>\n</ul>\n<h4>2.6.0 - 2019-07-23</h4>\n<ul>\n<li>New: Introducing Custom Icon sets - including Fontello, IcoMoon and Fontastic support (<a href=\"https://github.com/elementor/elementor/issues/110\">#110</a>)</li>\n<li>New: Added Font Awesome 5 Pro integration including 5,300+ icons (<a href=\"https://github.com/elementor/elementor/issues/4430\">#4430</a>)</li>\n<li>New: Added reCAPTCHA v3 integration to Form widget (<a href=\"https://github.com/elementor/elementor/issues/8213\">#8213</a>, <a href=\"https://github.com/elementor/elementor/issues/6039\">#6039</a>, <a href=\"https://github.com/elementor/elementor/issues/7165\">#7165</a>)</li>\n<li>Tweak: Added Exit Animation for Popups (<a href=\"https://github.com/elementor/elementor/issues/7063\">#7063</a>)</li>\n<li>Tweak: Added ACF Dynamic tag support for archive pages (<a href=\"https://github.com/elementor/elementor/issues/5147\">#5147</a>)</li>\n<li>Tweak: Added Navigator Indicators for Custom CSS &amp; Motion Effects (<a href=\"https://github.com/elementor/elementor/issues/2180\">#2180</a>)</li>\n<li>Tweak: Added Dynamic capabilities for Form Redirect action (<a href=\"https://github.com/elementor/elementor/issues/7552\">#7552</a>)</li>\n<li>Tweak: Added Logged In Message styling options for Login widget (<a href=\"https://github.com/elementor/elementor/issues/7928\">#7928</a>)</li>\n<li>Tweak: Added <code>none</code> breakpoint option to Nav Menu widget (<a href=\"https://github.com/elementor/elementor/issues/7916\">#7916</a>)</li>\n<li>Tweak: Added option to place Post Terms dynamic tag without links (<a href=\"https://github.com/elementor/elementor/issues/8366\">#8366</a>)</li>\n<li>Tweak: Added <code>elementor/query/query_results</code> hook to Query Control to allow full control over results (<a href=\"https://github.com/elementor/elementor/issues/7912\">#7912</a>)</li>\n<li>Tweak: Allow choosing Heading HTML tag in Price Table widget (<a href=\"https://github.com/elementor/elementor/issues/8090\">#8090</a>)</li>\n<li>Tweak: Show popup on dynamic click even when <code>Avoid Multiple Popups</code> option is selected (<a href=\"https://github.com/elementor/elementor/issues/8189\">#8189</a>)</li>\n<li>Tweak: Added condition option to all of archive child pages (<a href=\"https://github.com/elementor/elementor/issues/8256\">#8256</a>)</li>\n<li>Tweak: Added <code>Effects Relative To</code> control to Scrolling Effects</li>\n<li>Tweak: Allow shortcodes in HTML Form field</li>\n<li>Tweak: Removed donReach integration from Share Buttons widget due to service inconsistent stability</li>\n<li>Tweak: Changed MailChimp <code>List</code> label to <code>Audience</code></li>\n<li>Tweak: Improved Entrance and Exit animation behavior in Popup</li>\n<li>Tweak: Added <code>Deprecated Notice</code> control to <code>Archive Products</code> and <code>Woo Products</code> widgets</li>\n<li>Tweak: Added default dynamic title for archives in Theme Builder</li>\n<li>Tweak: Added condition to show <code>Centered Slides</code> control in Media Carousel widget</li>\n<li>Tweak: Added notice bar in the Editor when the license is expired or not activated</li>\n<li>Tweak: Replaced <code>select</code> control with <code>choose</code> control in Price List widget</li>\n<li>Tweak: Removed Font Awesome 4 dependencies from the Editor</li>\n<li>Tweak: Minor styling tweaks in the Popup publish modal</li>\n<li>Tweak: Hide ordering form in Products widget on front page</li>\n<li>Tweak: Removed page title markup when \'Hide Title\' is active</li>\n<li>Tweak: Added style controls for HTML field in Form widget</li>\n<li>Fix: Form widget Date picker makes the Popup builder disappear (<a href=\"https://github.com/elementor/elementor/issues/7240\">#7240</a>)</li>\n<li>Fix: Sticky element stop point stops working on viewport resize (<a href=\"https://github.com/elementor/elementor/issues/7884\">#7884</a>)</li>\n<li>Fix: Copy-Paste style not pasting the Pointer option in Nav Menu widget (<a href=\"https://github.com/elementor/elementor/issues/8497\">#8497</a>)</li>\n<li>Fix: Missing Print icon in Share Buttons (<a href=\"https://github.com/elementor/elementor/issues/8506\">#8506</a>)</li>\n<li>Fix: UI style glitch in Blockquote widget when viewing from iPad</li>\n<li>Deprecated: <code>DB::save_editor()</code> - Remove usage of this method (<a href=\"https://developers.elementor.com/v2-6-0-planned-deprecations/\">Deprecation Post</a>)</li>\n<li>Deprecated: <code>DB::get_plain_editor()</code> - Remove usage of this method (<a href=\"https://developers.elementor.com/v2-6-0-planned-deprecations/\">Deprecation Post</a>)</li>\n</ul>\n<h4>2.5.14 - 2019-07-14</h4>\n<ul>\n<li>Fix: Better WC Related Product grid support to various themes (<a href=\"https://github.com/elementor/elementor/issues/8555\">#8555</a>)</li>\n</ul>\n<h4>2.5.13 - 2019-07-11</h4>\n<ul>\n<li>Fix: Better WC grid support to various themes</li>\n</ul>\n<h4>2.5.12 - 2019-07-10</h4>\n<ul>\n<li>Fix: Grid for WooCommerce Archive Product widget</li>\n<li>Fix: Remove redundant <code>whitespace</code> CSS property causes style glitch in iPad</li>\n<li>Tweak: Added more compatibility for Elementor v2.6</li>\n</ul>\n<h4>2.5.11 - 2019-07-02</h4>\n<ul>\n<li>Fix: Close icon missing from Nav Menu widget (<a href=\"https://github.com/elementor/elementor/issues/8460\">#8460</a>)</li>\n<li>Fix: Elementor Pro v2.5.10 shows PHP notice regarding notice bar (<a href=\"https://github.com/elementor/elementor/issues/8461\">#8461</a>)</li>\n<li>Fix: Fatal error when deleting used Pods fields (<a href=\"https://github.com/elementor/elementor/issues/8396\">#8396</a>)</li>\n<li>Fix: Missing dropdown icon in conditions screen</li>\n</ul>\n<h4>2.5.10 - 2019-05-28</h4>\n<ul>\n<li>Tweak: Added compatibility for the upcoming release of Elementor v2.6</li>\n<li>Tweak: Error caused by empty Rows &amp; Columns values in Products widget (<a href=\"https://github.com/elementor/elementor/issues/8261\">#8261</a>)</li>\n<li>Fix: Do not unset <code>product</code> CPT if it\'s not from WooCommerce (<a href=\"https://github.com/elementor/elementor/issues/8160\">#8160</a>)</li>\n<li>Fix: Column Spacing not working in WooCommerce Archive Products widget (<a href=\"https://github.com/elementor/elementor/issues/8285\">#8285</a>)</li>\n<li>Fix: Title styling not working in Products Categories widget</li>\n<li>Fix: Empty value in Dynamic Pods Gallery dropdown using Safari browser</li>\n<li>Fix: WooCommerce archives included in &quot;All Archives&quot; condition</li>\n</ul>\n<h4>2.5.9 - 2019-05-28</h4>\n<ul>\n<li>Tweak: Removed <code>auto-confirm</code> control from MailPoet to support new version of MailPoet</li>\n<li>Fix: Multiple Custom Fonts not rendered in the editor</li>\n<li>Fix: Products <code>sale</code> query - handle exclude by manual selection.</li>\n<li>Fix: Product Categories grid row &amp; column style</li>\n<li>Fix: Form integration AJAX cache override</li>\n<li>Fix: Removed redundant CSS on Canvas &amp; Header-Footer page templates</li>\n</ul>\n<h4>2.5.8 - 2019-05-06</h4>\n<ul>\n<li>Fix: Popup entrance animation not working in frontend</li>\n<li>Fix: Popup Exit Intent trigger activated multiple times</li>\n</ul>\n<h4>2.5.7 - 2019-05-05</h4>\n<ul>\n<li>Fix: Embedded video keeps playing after a Popup is closed (<a href=\"https://github.com/elementor/elementor/issues/7875\">#7875</a>)</li>\n<li>Fix: Maximum call stack size exceeded error in Safari (<a href=\"https://github.com/elementor/elementor/issues/7824\">#7824</a>)</li>\n<li>Fix: Entrance animations not appearing on Popup reopen (<a href=\"https://github.com/elementor/elementor/issues/7395\">#7395</a>)</li>\n<li>Fix: WC variations select style glitch in several themes (<a href=\"https://github.com/elementor/elementor/issues/8008\">#8008</a>)</li>\n<li>Fix: Theme Builder taxonomy conditions not retrieving proper results in edge cases</li>\n</ul>\n<h4>2.5.6 - 2019-04-29</h4>\n<ul>\n<li>Tweak: Removed <code>Shortcode</code> dynamic from Image, Gallery and Media control</li>\n<li>Fix: Popup not inheriting entrance animation in responsive mode (<a href=\"https://github.com/elementor/elementor/issues/7809\">#7809</a>)</li>\n<li>Fix: Terms autocomplete retrieves wrong results in Query Control</li>\n<li>Fix: Query Control Related by author glitches in edge cases</li>\n<li>Fix: Query Control using terms for Products widget</li>\n<li>Fix: Posts cards style glitch in small screens</li>\n<li>Fix: Display conditions delete icon missing in small screens</li>\n<li>Fix: Avoid rendering Menu Cart widget in WordPress native editor</li>\n</ul>\n<h4>2.5.5 - 2019-04-08</h4>\n<ul>\n<li>Tweak: Allow text selection inside a Popup</li>\n<li>Fix: Added backwards compatibility for <code>tax_query</code> in Query Control (<a href=\"https://github.com/elementor/elementor/issues/7751\">#7751</a>)</li>\n<li>Fix: Missing arguments for <code>widget_title</code> filter (<a href=\"https://github.com/elementor/elementor/issues/7745\">#7745</a>)</li>\n</ul>\n<h4>2.5.4 - 2019-04-03</h4>\n<ul>\n<li>Fix: Move Query from using <code>term_id</code> to <code>term_taxonomy_id</code> (<a href=\"https://github.com/elementor/elementor/issues/7653\">#7653</a>)</li>\n<li>Fix: Offset manipulation hook removal in Query control</li>\n<li>Fix: Missing form field <code>ID</code> in some edge cases (<a href=\"https://github.com/elementor/elementor/issues/7711\">#7711</a>, <a href=\"https://github.com/elementor/elementor/issues/7660\">#7660</a>)</li>\n</ul>\n<h4>2.5.3 - 2019-03-31</h4>\n<ul>\n<li>Tweak: Updated Google Calendar dynamic tag URL (<a href=\"https://github.com/elementor/elementor/issues/7673\">#7673</a>)</li>\n<li>Fix: Missing form field names (<a href=\"https://github.com/elementor/elementor/issues/7651\">#7651</a>)</li>\n<li>Fix: PHP 5.4 backward compatibility in Query Control (<a href=\"https://github.com/elementor/elementor/issues/7633\">#7633</a>)</li>\n<li>Fix: <code>products_deprecated</code> Query Control module compatibility (<a href=\"https://github.com/elementor/elementor/issues/7654\">#7654</a>)</li>\n<li>Fix: Changed query method from <code>term_id</code> to <code>term_taxonomy_id</code> (<a href=\"https://github.com/elementor/elementor/issues/7653\">#7653</a>)</li>\n</ul>\n<h4>2.5.2 - 2019-03-27</h4>\n<ul>\n<li>Fix: Overwrite parent widget type in Global Widget (<a href=\"https://github.com/elementor/elementor/issues/7632\">#7632</a>)</li>\n<li>Fix: Avoid Duplicates option not working in Query Control (<a href=\"https://github.com/elementor/elementor/issues/7635\">#7635</a>)</li>\n<li>Fix: Manual Selection option not working in Query Control (<a href=\"https://github.com/elementor/elementor/issues/7634\">#7634</a>)</li>\n<li>Fix: Incorrect condition caused handlers issues inside popup</li>\n</ul>\n<h4>2.5.1 - 2019-03-26</h4>\n<ul>\n<li>Fix: Query Control invalid call to deprecated action (<a href=\"https://github.com/elementor/elementor/issues/7619\">#7619</a>)</li>\n<li>Tweak: Renamed action hook from <code>elementor_pro/{$widget_name}/query/{$query_id}</code> to <code>elementor/query/{$query_id}</code></li>\n<li>Tweak: Renamed filter hook from <code>elementor_pro/query_control/get_query_args/current_query</code> to <code>elementor/query/get_query_args/current_query</code></li>\n</ul>\n<h4>2.5.0 - 2019-03-26</h4>\n<ul>\n<li>New: Introducing Motion Effects including Scrolling &amp; Mouse effects (<a href=\"https://github.com/elementor/elementor/issues/72\">#72</a>)</li>\n<li>New: Introducing Related Posts for Query Control (<a href=\"https://github.com/elementor/elementor/issues/7306\">#7306</a>, <a href=\"https://github.com/elementor/elementor/issues/7490\">#7490</a>)</li>\n<li>New: Introducing Date query for Query Control</li>\n<li>New: Introducing Sticky Posts support for Query Control (<a href=\"https://github.com/elementor/elementor/issues/2501\">#2501</a>)</li>\n<li>Tweak: Added option to open a Popup by a custom selector (<a href=\"https://github.com/elementor/elementor/issues/6871\">#6871</a>, <a href=\"https://github.com/elementor/elementor/issues/6876\">#6876</a>, <a href=\"https://github.com/elementor/elementor/issues/7258\">#7258</a>)</li>\n<li>Tweak: Option to count when Popup is closed in &quot;Show up to X times&quot; Advanced Rule</li>\n<li>Tweak: Added full border radius control options inside Popup</li>\n<li>Tweak: Changed exit intent icon in Popups</li>\n<li>Tweak: Show only one popup in its own preview</li>\n<li>Tweak: Added responsive support to Popup entrance animation control</li>\n<li>Tweak: Conditions - Singular <code>All Pages</code> string changed to <code>Pages</code></li>\n<li>Tweak: Added form field shortcode support for Drip tags (<a href=\"https://github.com/elementor/elementor/issues/7000\">#7000</a>)</li>\n<li>Tweak: Added dynamic capabilities to Price List widget (<a href=\"https://github.com/elementor/elementor/issues/7258\">#7258</a>)</li>\n<li>Tweak: Added Dynamic capabilities to Custom Attributes (<a href=\"https://github.com/elementor/elementor/issues/6779\">#6779</a>)</li>\n<li>Tweak: Added dynamic capabilities to Flip Box widget (<a href=\"https://github.com/elementor/elementor/issues/6986\">#6986</a>)</li>\n<li>Tweak: Decrease <code>z-index</code> for Nav Menu (<a href=\"https://github.com/elementor/elementor/issues/6869\">#6869</a>)</li>\n<li>Tweak: Changed &quot;Scrolling Effects&quot; section label to &quot;Motion Effects&quot;</li>\n<li>Tweak: Use filter <code>get_meta_viewport</code> for header templates (<a href=\"https://github.com/elementor/elementor/issues/7043\">#7043</a>)</li>\n<li>Tweak: use filterable <code>Util::get_public_post_types()</code> in Theme Builder (<a href=\"https://github.com/elementor/elementor/issues/7172\">#7172</a>)</li>\n<li>Tweak: Added Cloudflare rocket-loader support (<a href=\"https://github.com/elementor/elementor/issues/7443\">#7443</a>)</li>\n<li>Tweak: Added responsive support to WC Products Columns &amp; Rows Gap controls (<a href=\"https://github.com/elementor/elementor/issues/6913\">#6913</a>)</li>\n<li>Tweak: WC Menu cart &quot;View Cart&quot; &amp; &quot;Checkout&quot; buttons styling</li>\n<li>Fix: Custom ID reset to default when dragging repeater</li>\n<li>Fix: Conflict between archive-products widget and WC customizer</li>\n<li>Fix: Add to Cart widget <code>spacing</code> and <code>space-between</code></li>\n<li>Fix: Library view when creating a new Header or Footer</li>\n<li>Fix: Post types labels missing on Add New Template modal</li>\n</ul>\n<h4>2.4.8 - 2019-03-11</h4>\n<ul>\n<li>Fix: Missing query section in Products widget</li>\n<li>Fix: Missing Taxonomy controls in Products widget in edge cases</li>\n</ul>\n<h4>2.4.7 - 2019-03-06</h4>\n<ul>\n<li>Fix: Compatibility Global Widget with Elementor v2.5.0+</li>\n</ul>\n<h4>2.4.6 - 2019-03-04</h4>\n<ul>\n<li>Fix: Pods gallery dynamic when empty (<a href=\"https://github.com/elementor/elementor/issues/7127\">#7127</a>)</li>\n<li>Fix: Duplicate call for conditions screen issue</li>\n<li>Fix: Compatibility with Elementor v2.5.0</li>\n</ul>\n<h4>2.4.5 - 2019-02-18</h4>\n<ul>\n<li>Fix: Image size issue in Testimonial Carousel (<a href=\"https://github.com/elementor/elementor/issues/7058\">#7058</a>)</li>\n<li>Fix: MailChimp groups not saved in a form integration (<a href=\"https://github.com/elementor/elementor/issues/7083\">#7083</a>)</li>\n<li>Fix: Show popup preview only on it\'s own preview</li>\n<li>Fix: Elementor dashboard templates URL corrupted links in edge cases</li>\n</ul>\n<h4>2.4.4 - 2019-02-11</h4>\n<ul>\n<li>Tweak: Added ACF Date Time Picker field support (<a href=\"https://github.com/elementor/elementor/issues/6690\">#6690</a>)</li>\n<li>Tweak: Changed the term of <code>All Posts</code> condition to <code>Posts</code></li>\n<li>Fix: Added <code>&lt;IfModule&gt;</code> to avoid 500 error when <code>mod-headers</code> is missing (<a href=\"https://github.com/elementor/elementor/issues/7034\">#7034</a>)</li>\n<li>Fix: Include post CSS deletion in Global Widget update (<a href=\"https://github.com/elementor/elementor/issues/6856\">#6856</a>)</li>\n<li>Fix: <code>Textarea</code> default value in Forms Widget (<a href=\"https://github.com/elementor/elementor/issues/6934\">#6934</a>)</li>\n<li>Fix: MailPoet latest version caused fatal error (<a href=\"https://github.com/elementor/elementor/issues/6996\">#6996</a>)</li>\n<li>Fix: Fatal Error caused by calling MailPoet deleted method</li>\n<li>Notice: MailPoet <code>Auto Confirm</code> option will now default to &quot;On&quot;</li>\n</ul>\n<h4>2.4.3 - 2019-01-30</h4>\n<ul>\n<li>Fix: Custom Add to Cart widget responsive alignment settings</li>\n<li>Fix: Links in Post Info widget</li>\n<li>Fix: WooCommerce <code>View Cart</code> string translate</li>\n<li>Fix: Wrapper classes for header/footer templates (<a href=\"https://github.com/elementor/elementor/issues/6884\">#6884</a>)</li>\n</ul>\n<h4>2.4.2 - 2019-01-25</h4>\n<ul>\n<li>Tweak: Added pixel units to Close Button position control in Popups</li>\n<li>Fix: Exclude error in WC Products widget</li>\n</ul>\n<h4>2.4.1 - 2019-01-24</h4>\n<ul>\n<li>Tweak: Added CSS classes control to Popup (<a href=\"https://github.com/elementor/elementor/issues/6826\">#6826</a>)</li>\n<li>Tweak: Added responsive image size to Testimonial Carousel widget</li>\n<li>Fix: PHP warning when Toolset Date dynamic is empty (<a href=\"https://github.com/elementor/elementor/issues/6842\">#6842</a>)</li>\n<li>Fix: Support of exclude-ids in WC Products widget</li>\n<li>Fix: Popup close button not clickable</li>\n<li>Fix: Alignment justify issue of Add to Cart widget (<a href=\"https://github.com/elementor/elementor/issues/6749\">#6749</a>)</li>\n<li>Fix: Bad anchors breaks the page JS</li>\n<li>Fix: Popup overlay shown when turned off</li>\n</ul>\n<h4>2.4.0 - 2019-01-21</h4>\n<ul>\n<li>New: Introducing Popup Builder (<a href=\"https://github.com/elementor/elementor/issues/628\">#628</a>)</li>\n<li>New: Added <code>Popup</code> Dynamic Tag</li>\n<li>New: Added <code>Popup</code> forms action after submit</li>\n<li>New: Added User Info dynamic tag (<a href=\"https://github.com/elementor/elementor/issues/6322\">#6322</a>)</li>\n<li>Tweak: Added dynamic capabilities for &quot;Nothing Found&quot; message</li>\n<li>Tweak: Added <code>elementor_pro/theme_builder/archive/escape_nothing_found_message</code> Filter to avoid HTML escaping in &quot;Nothing Found&quot; message (<a href=\"https://github.com/elementor/elementor/issues/6053\">#6053</a>)</li>\n<li>Tweak: Added <code>add_doc_to_location</code> method to Allow insertion of a document to a location</li>\n<li>Fix: <code>z-index</code> issue with CTA widget (<a href=\"https://github.com/elementor/elementor/issues/6486\">#6486</a>)</li>\n<li>Fix: Hide the Post Content widget and show it only in a Single document</li>\n<li>Fix: <code>selector</code> replacement in Custom CSS</li>\n<li>Fix: Apply <code>the_content</code> on the real content only</li>\n<li>Fix: CSS for WC products selector (<a href=\"https://github.com/elementor/elementor/issues/6559\">#6559</a>)</li>\n<li>Fix: Odnoklassniki share URL (<a href=\"https://github.com/elementor/elementor/issues/6638\">#6638</a>)</li>\n<li>Fix: Custom link new tab in Post Info widget (<a href=\"https://github.com/elementor/elementor/issues/5766\">#5766</a>)</li>\n<li>Fix: <code>nofollow</code> link in Flip Box &amp; CTA widgets</li>\n<li>Fix: Post Terms in Post Info widget</li>\n<li>Fix: Added screen reader to some icons &amp; buttons for better accessibility (<a href=\"https://github.com/elementor/elementor/issues/5386\">#5386</a>)</li>\n<li>Fix: Accessibility labels in Reviews widget (<a href=\"https://github.com/elementor/elementor/issues/6630\">#6630</a>)</li>\n<li>Fix: Link to cart page not working when WooCommerce Subscriptions is active</li>\n<li>Fix: MailChimp Selected list not showing on reloading in Form widget</li>\n<li>Fix: Sub-menu arrow position in Nav Menu widget</li>\n<li>Fix: Conflict with WP Security Audit Log plugin (<a href=\"https://github.com/elementor/elementor/issues/6648\">#6648</a>)</li>\n</ul>\n<h4>2.3.1 - 2018-12-19</h4>\n<ul>\n<li>Fix: Template widget search functionality (<a href=\"https://github.com/elementor/elementor/issues/6473\">#6473</a>)</li>\n<li>Fix: Apply <code>the_content</code> filter to post content in theme builder</li>\n</ul>\n<h4>2.3.0 - 2018-12-17</h4>\n<ul>\n<li>New: Introducing Discord Integration for Forms (<a href=\"https://github.com/elementor/elementor/issues/4218\">#4218</a>)</li>\n<li>New: Introducing Slack Integration for Forms</li>\n<li>New: Introducing MailerLite Integration for Forms (<a href=\"https://github.com/elementor/elementor/issues/4462\">#4462</a>)</li>\n<li>New: Activate Elementor Pro plugin by connecting to Elementor account</li>\n<li>Tweak: Added <code>elementor_pro/utils/get_public_post_types</code> filter hook (<a href=\"https://github.com/elementor/elementor/issues/5900\">#5900</a>)</li>\n<li>Tweak: Added <code>loop_start</code> &amp; <code>the_content</code> hooks for Post Content (<a href=\"https://github.com/elementor/elementor/issues/6173\">#6173</a>)</li>\n<li>Tweak: Removed Custom Attributes from Page Settings</li>\n<li>Tweak: Always add the Custom CSS control to the Advanced tab</li>\n<li>Fix: In sub Term condition false positive in edge cases</li>\n<li>Fix: ToolSet Dynamic Image fallback</li>\n<li>Fix: Style glitch with the dropdown color in Nav Menu widget</li>\n<li>Fix: Style glitch in the Conditions screen in Safari browser</li>\n<li>Fix: Ribbon in the CTA widget obscures drop down menu (<a href=\"https://github.com/elementor/elementor/issues/6080\">#6080</a>)</li>\n<li>Fix: The color of label won\'t change color in Widget login</li>\n</ul>\n<h4>2.2.5 - 2018-12-11</h4>\n<ul>\n<li>New: Add Style Tab &amp; Custom CSS for Header &amp; Footer Templates.</li>\n<li>Tweak: Added a better identifier for subpages (<a href=\"https://github.com/elementor/elementor/issues/6362\">#6362</a>)</li>\n<li>Tweak: Removed Custom Attributes from page settings</li>\n<li>Fix: Yahoo event URL date issue (<a href=\"https://github.com/elementor/elementor/issues/6354\">#6354</a>)</li>\n<li>Fix: Allow timezone settings in Google event URL (<a href=\"https://github.com/elementor/elementor/issues/6354\">#6354</a>)</li>\n<li>Fix: Avoid <code>z-index</code> changes by <code>nanocss</code> in build process</li>\n<li>Fix: Added missing WC upsells products CSS</li>\n<li>Fix: Nav Menu dropdown losing color on hover</li>\n<li>Fix: WC Product Add-ons CSS compatibility</li>\n</ul>\n<h4>2.2.4 - 2018-12-04</h4>\n<ul>\n<li>Fix: Global widget not saving changes (<a href=\"https://github.com/elementor/elementor/issues/6340\">#6340</a>)</li>\n<li>Fix: Dynamic tags support in Blockquote widget (<a href=\"https://github.com/elementor/elementor/issues/6334\">#6334</a>)</li>\n<li>Fix: Forms Redirect URL action when using form field values with spaces</li>\n</ul>\n<h4>2.2.3 - 2018-11-29</h4>\n<ul>\n<li>Fix: Missing &quot;Edit Template&quot; in Template widget (<a href=\"https://github.com/elementor/elementor/issues/6271\">#6271</a>)</li>\n<li>Fix: Follow menu anchors with UTF8 characters in Nav Menu</li>\n<li>Fix: Show only supported templates in Template widget</li>\n<li>Fix: Revert conflicting fix for a default order for WC archive</li>\n</ul>\n<h4>2.2.2 - 2018-11-28</h4>\n<ul>\n<li>Fix: Lightbox dynamic tag crashes the editor</li>\n</ul>\n<h4>2.2.1 - 2018-11-28</h4>\n<ul>\n<li>New: Added <code>ACF File</code> Dynamic tag to support text controls.</li>\n<li>Tweak: Added option to hide item count bubble when cart is empty in Menu Cart widget (<a href=\"https://github.com/elementor/elementor/issues/6223\">#6223</a>)</li>\n<li>Tweak: Added Actions group for Lightbox and Contact URL tags</li>\n<li>Tweak: Added filter <code>elementor_pro/dynamic_tags/shortcode/should_escape</code> to avoid escaping in Shortcode dynamic tag</li>\n<li>Tweak: MailPoet3 integration allow Subscriber to to subscribe to multiple lists</li>\n<li>Tweak: Added front-end max file size validation for upload fields</li>\n<li>Tweak: Added <code>by-author</code> per Post-Type condition for theme builder</li>\n<li>Fix: Template widget panel not showing the selected template (<a href=\"https://github.com/elementor/elementor/issues/6271\">#6271</a>)</li>\n<li>Fix: Conflict between ACF with Safari browser on Select option in Dynamic tag</li>\n<li>Fix: Add post classes only for the Single template</li>\n<li>Fix: Set document type as not editable for unsupported document like Global widget</li>\n<li>Fix: Avoid duplicate query for current WC product query</li>\n<li>Fix: Product Archive showing oldest products instead of latest</li>\n<li>Fix: CSS reset in Posts widget using cards skin</li>\n</ul>\n<h4>2.2.0 - 2018-11-19</h4>\n<ul>\n<li>New: Introducing Custom Attributes (<a href=\"https://github.com/elementor/elementor/issues/290\">#290</a>, <a href=\"https://github.com/elementor/elementor/issues/3990\">#3990</a>)</li>\n<li>New: Added evergreen option for Countdown widget (<a href=\"https://github.com/elementor/elementor/issues/4459\">#4459</a>)</li>\n<li>New: Added expire actions option for Countdown widget (<a href=\"https://github.com/elementor/elementor/issues/5242\">#5242</a>)</li>\n<li>New: Introducing Reviews widget (<a href=\"https://github.com/elementor/elementor/issues/3854\">#3854</a>)</li>\n<li>New: Introducing Sitemap widget (<a href=\"https://github.com/elementor/elementor/issues/5594\">#5594</a>)</li>\n<li>New: Added Request Parameter dynamic tag (<a href=\"https://github.com/elementor/elementor/issues/4934\">#4934</a>)</li>\n<li>New: Added Shortcode dynamic tag</li>\n<li>New: Added Image and Video Lightbox dynamic tag</li>\n<li>New: Added Contact URL dynamic tag</li>\n<li>New: Added Featured Image Data dynamic tag</li>\n<li>New: Added default value to each field in the Form widget (<a href=\"https://github.com/elementor/elementor/issues/4268\">#4268</a>)</li>\n<li>New: Added &quot;Any Child Of&quot; condition to template conditions (<a href=\"https://github.com/elementor/elementor/issues/5321\">#5321</a>)</li>\n<li>New: Added &quot;In Child&quot; condition to template conditions (<a href=\"https://github.com/elementor/elementor/issues/5587\">#5587</a>)</li>\n<li>Tweak: Added Form Redirect URL with form values (<a href=\"https://github.com/elementor/elementor/issues/2564\">#2564</a>)</li>\n<li>Tweak: Added default post classes to template wrapper (<a href=\"https://github.com/elementor/elementor/issues/5959\">#5959</a>)</li>\n<li>Tweak: Better labels for terms in Query control (<a href=\"https://github.com/elementor/elementor/issues/6092\">#6092</a>)</li>\n<li>Tweak: Renamed &quot;Child Of&quot; templates condition to &quot;Direct Child Of&quot;</li>\n<li>Tweak: Added <code>elementor/theme/get_location_templates/condition_sub_id</code> filter hook to allow template condition translations</li>\n<li>Tweak: Load the Template Library widget via Ajax for better performance</li>\n<li>Tweak: Added 404 page title for Page Title dynamic tag</li>\n<li>Fix: Menu Cart Toggle has # URL link (<a href=\"https://github.com/elementor/elementor/issues/6141\">#6141</a>)</li>\n<li>Fix: Alignment issue in Nav Menu widget (<a href=\"https://github.com/elementor/elementor/issues/5790\">#5790</a>)</li>\n<li>Fix: Avoid potential security risk in forms</li>\n<li>Fix: Template By Author condition conflicts with 404 page</li>\n<li>Fix: Restored WC Product Content widget in Single Product template</li>\n<li>Fix: Theme Builder Preview URLs for date archives and 404 pages</li>\n<li>Fix: Highlight active menu anchor items only when scrolled into view</li>\n<li>Fix: Carousel Pagination Progress style to support new Swiper version</li>\n</ul>\n<h4>2.1.13 - 2018-11-12</h4>\n<ul>\n<li>Tweak: Added compatibility for new brand Finder in v2.3.0</li>\n<li>Fix: Settings conflict when there are multiple carousels in the page</li>\n</ul>\n<h4>2.1.12 - 2018-11-05</h4>\n<ul>\n<li>Tweak: Added compatibility for the upcoming release of Elementor v2.3</li>\n<li>Tweak: Better performance for Template Library widget</li>\n<li>Fix: Fatal error if a taxonomy used in a dynamic field is removed (<a href=\"https://github.com/elementor/elementor/issues/6029\">#6029</a>)</li>\n<li>Fix: Date Time dynamic tag now respect site language (<a href=\"https://github.com/elementor/elementor/issues/6001\">#6001</a>)</li>\n<li>Fix: Custom CSS printed twice in the front-end</li>\n<li>Fix: ACF Image field PHP warning (<a href=\"https://github.com/elementor/elementor/issues/6051\">#6051</a>)</li>\n</ul>\n<h4>2.1.11 - 2018-10-22</h4>\n<ul>\n<li>New: Added ACF local fields compatibility</li>\n<li>Tweak: Re-brand TypeKit by Adobe Fonts integration</li>\n<li>Fix: Exclude <code>is_embed</code> from Singular condition (<a href=\"https://github.com/elementor/elementor/issues/5915\">#5915</a>)</li>\n<li>Fix: Avoid conflict with Ad Blockers and Share Buttons</li>\n<li>Fix: Current date time dynamic tag now shows local time</li>\n<li>Fix: Avoid conflict with 3rd party plugins that filter the permalink</li>\n<li>Fix: Avoid PHP warning when no groups are selected for MailChimp integration</li>\n<li>Fix: Avoid PHP warning if checkbox field is empty for ACF</li>\n<li>Fix: Respect password protected for a WC single product template</li>\n<li>Fix: Respect <code>order</code> settings for WC archive also without pagination</li>\n</ul>\n<h4>2.1.10 - 2018-10-09</h4>\n<ul>\n<li>Tweak: Added responsive alignment control for Share Buttons widget (<a href=\"https://github.com/elementor/elementor/issues/5821\">#5821</a>)</li>\n<li>Tweak: Added link control to Animated Headline widget</li>\n<li>Fix: Mobile nav menu jump on RTL (<a href=\"https://github.com/elementor/elementor/issues/5711\">#5711</a>)</li>\n<li>Fix: Responsive alignment control in Add to Cart widget (<a href=\"https://github.com/elementor/elementor/issues/5830\">#5830</a>)</li>\n<li>Fix: Added IE compatibility for Animated Headline widget</li>\n<li>Fix: Post Content widget is now shown only on <code>Single</code> templates</li>\n<li>Fix: Query Control Pagination with offset</li>\n</ul>\n<h4>2.1.9 - 2018-09-17</h4>\n<ul>\n<li>Tweak: Added Centered Slides option for Slideshow carousel</li>\n<li>Fix: Allow only public CPT for Manual Selection in Query Control (<a href=\"https://github.com/elementor/elementor/issues/5091\">#5091</a>)</li>\n<li>Fix: ACF Gallery option support (<a href=\"https://github.com/elementor/elementor/issues/5344\">#5344</a>)</li>\n<li>Fix: Page scrolling on resize when sticky is active (<a href=\"https://github.com/elementor/elementor/issues/5740\">#5740</a>)</li>\n<li>Fix: Edit custom name for Global Widget in the Navigator (<a href=\"https://github.com/elementor/elementor/issues/5689\">#5689</a>)</li>\n<li>Fix: Coverflow transition effect in Carousel</li>\n<li>Fix: Weird mobile behavior with Cube effect in Carousel</li>\n<li>Fix: Show the first thumbnail in the Slideshow carousel correctly</li>\n</ul>\n<h4>2.1.8 - 2018-09-12</h4>\n<ul>\n<li>Tweak: Added styling options for WC Additional Information widget</li>\n<li>Tweak: Added styling options for \'View Cart\' link in Products widget</li>\n<li>Fix: 3rd party plugin support for WC single product template (<a href=\"https://github.com/elementor/elementor/issues/5338\">#5338</a>)</li>\n<li>Fix: Layout of Related Product widget with WC native style</li>\n</ul>\n<h4>2.1.7 - 2018-09-03</h4>\n<ul>\n<li>New: WC Archive Description widget</li>\n<li>Tweak: Added blend mode to Slides widget background overlay (<a href=\"https://github.com/elementor/elementor/issues/5555\">#5555</a>)</li>\n<li>Tweak: Added \'Current Subcategories\' option to Product Categories widget</li>\n<li>Fix: Added default vertical alignment in Author Box widget (<a href=\"https://github.com/elementor/elementor/issues/5589\">#5589</a>)</li>\n<li>Tweak: Added more blend mode options for CTA widget</li>\n<li>Tweak: Improved plugin updater method based on WordPress version</li>\n<li>Fix: Improved IE compatibility for Posts and Portfolio widgets</li>\n<li>Fix: Added default gap for products pagination</li>\n<li>Fix: Post thumbnail flickering in Safari browser</li>\n<li>Fix: Close mobile nav menu on click only in full-width mode</li>\n<li>Fix: Added trailing slash to pagination links in Posts widget</li>\n</ul>\n<h4>2.1.6 - 2018-08-28</h4>\n<ul>\n<li>New: WC Product Category Image widget and Dynamic tag (<a href=\"https://github.com/elementor/elementor/issues/5117\">#5117</a>)</li>\n<li>Tweak: Allow HTML in Excerpt widget (<a href=\"https://github.com/elementor/elementor/issues/5491\">#5491</a>)</li>\n<li>Tweak: Added compatibility for the upcoming release of Elementor v2.2</li>\n<li>Tweak: Deprecated Follow option in the Facebook Button widget</li>\n<li>Fix: Posts widget grid in Safari &amp; IE11 (Depended on Elementor v2.2)</li>\n<li>Fix: Posts widget CSS when using cards skin in masonry mode</li>\n<li>Fix: ACF Image &amp; ACF URL option support (<a href=\"https://github.com/elementor/elementor/issues/5344\">#5344</a>)</li>\n<li>Fix: WC product gallery links in RTL</li>\n<li>Fix: Dynamic tags in Call To Action widget</li>\n</ul>\n<h4>2.1.5 - 2018-08-21</h4>\n<ul>\n<li>Tweak: Added compatibility for the upcoming release of Elementor v2.2</li>\n<li>Fix: Posts Widget layout theme compatibility</li>\n<li>Fix: Added compatibility for WooCommerce native style</li>\n</ul>\n<h4>2.1.4 - 2018-08-19</h4>\n<ul>\n<li>Fix: Layout issue compatibility with themes caused by v2.1 (<a href=\"https://github.com/elementor/elementor/issues/5442\">#5442</a>)</li>\n<li>Fix: Dynamic setting in Pricing Table widget (<a href=\"https://github.com/elementor/elementor/issues/5460\">#5460</a>)</li>\n<li>Fix: Hide Target URL control if is not necessary in Blockquote widget</li>\n<li>Fix: Selector specificity for WooCommerce Products widget</li>\n<li>Fix: WooCommerce conflicts in the editor in edge cases</li>\n</ul>\n<h4>2.1.3 - 2018-08-15</h4>\n<ul>\n<li>Fix: Thumbnails in the Posts widget jumping (<a href=\"https://github.com/elementor/elementor/issues/5350\">#5350</a>)</li>\n<li>Fix: Responsive grid in the Share Buttons widget (<a href=\"https://github.com/elementor/elementor/issues/5375\">#5375</a>)</li>\n<li>Fix: Added missing <code>setup_postdata</code> for Product Data Tabs widget</li>\n<li>Fix: Rollback to older version of Flip Box widget to resolve 3D depth issue (<a href=\"https://github.com/elementor/elementor/issues/5399\">#5399</a>)</li>\n<li>Fix: Allowed types in the Upload File field are now case-insensitive (<a href=\"https://github.com/elementor/elementor/issues/5254\">#5254</a>)</li>\n<li>Fix: Carousel behavior when using a single slide</li>\n</ul>\n<h4>2.1.2 - 2018-08-12</h4>\n<ul>\n<li>Fix: Error when ACF Pro is not installed (<a href=\"https://github.com/elementor/elementor/issues/5367\">#5367</a>)</li>\n<li>Fix: Edge cases in Inspector where document is a boolean</li>\n<li>Fix: Edge cases for incorrect file fields in PODS</li>\n</ul>\n<h4>2.1.1 - 2018-08-09</h4>\n<ul>\n<li>Fix: Highlighted text in Animated Headline widget (<a href=\"https://github.com/elementor/elementor/issues/5345\">#5345</a>)</li>\n<li>Fix: Flip Box effect issues</li>\n<li>Fix: ACF Options page fields support (<a href=\"https://github.com/elementor/elementor/issues/5329\">#5329</a>)</li>\n<li>Fix: Import Pro templates in edge cases</li>\n</ul>\n<h4>2.1.0 - 2018-08-07</h4>\n<ul>\n<li>New: Introducing WooCommerce Builder (<a href=\"https://github.com/elementor/elementor/issues/1690\">#1690</a>)</li>\n<li>New: Introducing 12 new dynamic tags &amp; widgets for WooCommerce: Gallery, Image, Price, Rating, Description, Breadcrumbs, Data Tabs, Stock, Related, Upsell, Title &amp; Archive</li>\n<li>New: Introducing Cart Menu widget (<a href=\"https://github.com/elementor/elementor/issues/4220\">#4220</a>, <a href=\"https://github.com/elementor/elementor/issues/4600\">#4600</a>)</li>\n<li>New: Added integration with Toolset (<a href=\"https://github.com/elementor/elementor/issues/2949\">#2949</a>)</li>\n<li>New: Added integration with Pods (<a href=\"https://github.com/elementor/elementor/issues/4129\">#4129</a>)</li>\n<li>New: Added stick to bottom in scrolling effects (<a href=\"https://github.com/elementor/elementor/issues/4799\">#4799</a>)</li>\n<li>New: Added Scrolling Effect to Widgets under advanced tab</li>\n<li>New: Introducing Internal URL Dynamic Tag</li>\n<li>Tweak: Added a Last Updated Date in the Post Info widget (<a href=\"https://github.com/elementor/elementor/issues/4597\">#4597</a>)</li>\n<li>Tweak: Added Redirect after Logout option for Login widget (<a href=\"https://github.com/elementor/elementor/issues/4447\">#4447</a>)</li>\n<li>Tweak: Avoid repeating posts when using more than one in the Posts widget (<a href=\"https://github.com/elementor/elementor/issues/1878\">#1878</a>)</li>\n<li>Tweak: Add Custom Query hook for Query control (<a href=\"https://developers.elementor.com/custom-query-filter/\">More Info</a>) (<a href=\"https://github.com/elementor/elementor/issues/1748\">#1748</a>)</li>\n<li>Tweak: Added form-message style (<a href=\"https://github.com/elementor/elementor/issues/1180\">#1180</a>)</li>\n<li>Tweak: Added dynamic tag for button on the Price Table widget (<a href=\"https://github.com/elementor/elementor/issues/4242\">#4242</a>)</li>\n<li>Tweak: Added dynamic tag for Call to action widget (<a href=\"https://github.com/elementor/elementor/issues/4767\">#4767</a>)</li>\n<li>Tweak: Added Dynamic Tags support for Google Map field (<a href=\"https://github.com/elementor/elementor/issues/4602\">#4602</a>)</li>\n<li>Tweak: Added an support for <code>label|value</code> in options field (<a href=\"https://github.com/elementor/elementor/issues/4594\">#4594</a>)</li>\n<li>Tweak: Added <code>by-author</code> condition for theme builder (<a href=\"https://github.com/elementor/elementor/issues/4681\">#4681</a>)</li>\n<li>Tweak: Added Activate/Deactivate license key via WP-CLI command (<a href=\"https://github.com/elementor/elementor/issues/4149\">#4149</a>)</li>\n<li>Tweak: Added <code>is_scroll</code> trigger to scrolling effect (<a href=\"https://github.com/elementor/elementor/issues/4340\">#4340</a>)</li>\n<li>Tweak: Added In Same Term support for Post Navigation widget (<a href=\"https://github.com/elementor/elementor/issues/4177\">#4177</a>)</li>\n<li>Tweak: Added responsive control for Slides To Scroll control in all carousel widgets (<a href=\"https://github.com/elementor/elementor/issues/3697\">#3697</a>)</li>\n<li>Tweak: Added style options for Posts widget (<a href=\"https://github.com/elementor/elementor/issues/1335\">#1335</a>)</li>\n<li>Tweak: Added button CSS ID for Forms widget</li>\n<li>Tweak: Added pixel units to Post-Info divider height control</li>\n<li>Tweak: Rewrite sticky library to handle with stretch section, auto scroller &amp; more bugs</li>\n<li>Tweak: Re-organize the panel categories per document type</li>\n<li>Tweak: Added ACF support for <code>options-page</code> fields</li>\n<li>Tweak: Added dynamic tag for Animated headlines</li>\n<li>Tweak: Added dynamic tag for BlockQuote widget</li>\n<li>Fix: Elementor Full Width template in GeneratePress theme (<a href=\"https://github.com/elementor/elementor/issues/4817\">#4817</a>)</li>\n<li>Fix: Checkbox fields can accidentally be set to required (<a href=\"https://github.com/elementor/elementor/issues/4324\">#4324</a>)</li>\n<li>Fix: Initial slide in Carousel widget</li>\n<li>Fix: Stay on current slide while editing in Carousel widget</li>\n<li>Fix: Default slides per device in Carousel widget</li>\n<li>Deprecated: Woo Products, Woo Elements &amp; Single elements widgets</li>\n</ul>\n<h4>2.0.18 - 2018-07-27</h4>\n<ul>\n<li>Fix: Global widget error on saving page</li>\n</ul>\n<h4>2.0.17 - 2018-07-26</h4>\n<ul>\n<li>Fix: Sub menu indicator direction in Nav Menu widget</li>\n<li>Fix: Change the title and icon for Global Widget when is moving</li>\n<li>Fix: CSS wrapper selector for Page Document</li>\n</ul>\n<h4>2.0.16 - 2018-07-16</h4>\n<ul>\n<li>Tweak: CSS Filter Control module is now included in Elementor</li>\n<li>Fix: Border gap in Portfolio widget when item gap set as <code>0</code> (<a href=\"https://github.com/elementor/elementor/issues/5077\">#5077</a>)</li>\n<li>Fix: Restore current query after get Global Widget data</li>\n<li>Fix: Add action item in History on unlink Global widget</li>\n</ul>\n<h4>2.0.15 - 2018-07-10</h4>\n<ul>\n<li>Fix: Dropdown menu items collapsing when activated (<a href=\"https://github.com/elementor/elementor/issues/4996\">#4996</a>)</li>\n<li>Fix: GMT offset in Countdown widget (<a href=\"https://github.com/elementor/elementor/issues/4997\">#4997</a>)</li>\n</ul>\n<h4>2.0.14 - 2018-07-08</h4>\n<ul>\n<li>Tweak: Added set method to form record for developers (<a href=\"https://github.com/elementor/elementor/issues/4983\">#4983</a>)</li>\n<li>Fix: Autoplay option for Carousels</li>\n<li>Fix: Close mobile menu on item click in the Nav Menu widget</li>\n</ul>\n<h4>2.0.13 - 2018-07-03</h4>\n<ul>\n<li>Tweak: Added compatibility for Elementor v2.1</li>\n</ul>\n<h4>2.0.12 - 2018-07-02</h4>\n<ul>\n<li>Fix: Global widget PHP notices</li>\n<li>Fix: Slides widget active slide lost focus when clicking Editor tabs</li>\n<li>Fix: Form select field send all selected values on multiple selection</li>\n<li>Fix: Validate time field only if it\'s not empty</li>\n<li>Fix: ConvertKit API not saving name field</li>\n</ul>\n<h4>2.0.11 - 2018-06-12</h4>\n<ul>\n<li>Fix: Theme Builder <code>author</code> archive condition (<a href=\"https://github.com/elementor/elementor/issues/4593\">#4593</a>)</li>\n<li>Fix: Respect password protected posts in Post Content widget</li>\n<li>Fix: Custom Fonts redirect to post edit screen in edge cases.</li>\n</ul>\n<h4>2.0.10 - 2018-06-05</h4>\n<ul>\n<li>Tweak: Added <code>elementor/theme/get_location_templates/template_id</code> filter hook for multi-language plugins</li>\n<li>Fix: Dynamic Post Terms missing taxonomies if the taxonomy is registered to more then one post types (#4386)</li>\n<li>Fix: Fields shortcode missing after removing a field in Form widget</li>\n<li>Deprecated: <code>get_theme_templates_by_location</code> is replaced by <code>get_location_templates</code></li>\n</ul>\n<h4>2.0.9 - 2018-05-28</h4>\n<ul>\n<li>Fix: Compatibility for PHP version 5.4</li>\n</ul>\n<h4>2.0.8 - 2018-05-28</h4>\n<ul>\n<li>Tweak: Added Active state for Nav Menu dropdown</li>\n<li>Tweak: Added style for &quot;Nothing Found&quot; Message for Archive Posts widget</li>\n<li>Tweak: Removed caption control in Site Logo widget</li>\n<li>Tweak: Added option to position currency symbol before/after In Price Table widget</li>\n<li>Fix: Query control manual selection does not show more than 10 items (<a href=\"https://github.com/elementor/elementor/issues/4479\">#4479</a>)</li>\n<li>Fix: Styling glitch with terms list in Post Info widget (<a href=\"https://github.com/elementor/elementor/issues/4342\">#4342</a>)</li>\n<li>Fix: Sub terms missing in Query control in edge cases (<a href=\"https://github.com/elementor/elementor/issues/4527\">#4527</a>)</li>\n<li>Fix: Avoid rendering a template if it\'s not published</li>\n<li>Fix: 404 Page style not working</li>\n<li>Fix: Price Table button with hover animation not working in editor</li>\n<li>Fix: Styling conflict in Call to Action widget</li>\n<li>Fix: Global Widget tab translation</li>\n<li>Fix: Adding parent wrapper class to Site Title widget</li>\n</ul>\n<h4>2.0.7 - 2018-05-16</h4>\n<ul>\n<li>Fix: Content not found on section when single is set to &quot;All Singular&quot;</li>\n<li>Fix: Open 404 template library for 404 page</li>\n<li>Tweak: Added CSS prefix for dev files</li>\n<li>Tweak: Removed product post type from display conditions</li>\n</ul>\n<h4>2.0.6 - 2018-05-15</h4>\n<ul>\n<li>Tweak: Set type on create new single template</li>\n<li>Tweak: Always show the conditions dialog in the Draft status</li>\n<li>Tweak: Added document type <code>widget</code></li>\n<li>Tweak: Added Post Custom Field tag to URL category</li>\n<li>Fix: When ACF Field Groups are Empty (<a href=\"https://github.com/elementor/elementor/issues/4428\">#4428</a>)</li>\n<li>Fix: Links inside carousel in edge cases</li>\n<li>Fix: Responsive issue in My Templates area</li>\n<li>Fix: Image alignment for post content with text alignment</li>\n<li>Fix: Post Content widget when preview post is missing</li>\n<li>Fix: Global Widget tab translation</li>\n<li>Fix: Style settings for Post / Archive Title widgets</li>\n</ul>\n<h4>2.0.5 - 2018-05-08</h4>\n<ul>\n<li>Fix: Creating a CPT with name like document-type breaks the editor (<a href=\"https://github.com/elementor/elementor/issues/4203\">#4203</a>)</li>\n<li>Fix: Added support for new version of reCAPTCHA</li>\n<li>Fix: Added fallback for controls after <code>post_status</code></li>\n<li>Fix: Required field in forms widget</li>\n<li>Fix: Media Carousel in the Coverflow skin</li>\n<li>Fix: 404 Page show wrong template in edge cases</li>\n<li>Fix: Save the default menu in the Nav Menu widget</li>\n</ul>\n<h4>2.0.4 - 2018-05-02</h4>\n<ul>\n<li>Tweak: Added parent\'s class for extended widgets</li>\n<li>Tweak: Set entire-site as default to avoid conflict with save without conditions</li>\n<li>Tweak: Initialize global model when it\'s needed</li>\n<li>Tweak: Removed some duplicate strings</li>\n<li>Tweak: Query control now includes empty terms</li>\n<li>Tweak: Design polish for conditions dialog</li>\n<li>Tweak: Decreasing <code>minimumInputLength</code> to 1 of select2</li>\n<li>Fix: Editor not loading for single templates in edge cases</li>\n<li>Fix: Select2 in Safari takes it\'s time to get the original select width (<a href=\"https://github.com/elementor/elementor/issues/4310\">#4310</a>)</li>\n<li>Fix: Slides per view not working for some effects</li>\n<li>Fix: New slides not showing in the editor</li>\n<li>Fix: Editor for section without a defined location, defaults to content area</li>\n</ul>\n<h4>2.0.3 - 2018-04-24</h4>\n<ul>\n<li>Tweak: Optimize CSS for Post Info widget (<a href=\"https://github.com/elementor/elementor/issues/4214\">#4214</a>, <a href=\"https://github.com/elementor/elementor/issues/4216\">#4216</a>, <a href=\"https://github.com/elementor/elementor/issues/4225\">#4225</a>)</li>\n<li>Fix: Double render on frontend view in core locations</li>\n<li>Fix: Masonry not working in edge cases</li>\n<li>Fix: Added default setting for Author Info tag</li>\n</ul>\n<h4>2.0.2 - 2018-04-18</h4>\n<ul>\n<li>Fix: Regenerate conditions to include all templates</li>\n</ul>\n<h4>2.0.1 - 2018-04-17</h4>\n<ul>\n<li>Tweak: Added div wrapper for Nothing Found massage (<a href=\"https://github.com/elementor/elementor/issues/4136\">#4136</a>)</li>\n<li>Tweak: Show empty categories in Query Control &amp; Display Conditions (<a href=\"https://github.com/elementor/elementor/issues/4127\">#4127</a>)</li>\n<li>Tweak: Added Divider control for Post Info widget</li>\n<li>Fix: Update admin links in Yoast Breadcrumbs widget</li>\n<li>Fix: Sticky element conflict with clearfix CSS</li>\n<li>Fix: Compatibility for PHP version 5.4.32 &amp; 5.5.16 and below</li>\n<li>Fix: Avoid running <code>wp_head</code> hooks twice</li>\n</ul>\n<h4>2.0.0 - 2018-04-16</h4>\n<ul>\n<li>New: Introducing Theme Builder - <a href=\"https://elementor.com/introducing-theme-builder/\">Release Post</a> (<a href=\"https://github.com/elementor/elementor/issues/417\">#417</a>)</li>\n<li>New: Introducing Locations API to inject custom location templates</li>\n<li>New: Introducing Display Conditions for all dynamic templates</li>\n<li>New: Introducing Dynamic Tag feature - a new way to add dynamic content to your design</li>\n<li>New: Introducing Role manager to allow &quot;Content Only mode&quot; (<a href=\"https://github.com/elementor/elementor/issues/483\">#483</a>, <a href=\"https://github.com/elementor/elementor/issues/653\">#653</a>, <a href=\"https://github.com/elementor/elementor/issues/885\">#885</a>)</li>\n<li>New: Introducing 9 new dynamic widgets: Archive Posts, Archive Title, Post Content, Post Info, Post Title, Post Excerpt, Featured Image, Site Logo &amp; Site Name (<a href=\"https://github.com/elementor/elementor/issues/543\">#543</a>)</li>\n<li>New: Introducing Developers area with guides and API documentation - <a href=\"https://elementor.com/introducing-elementor-developer-api/\">Release Post</a> (<a href=\"https://github.com/elementor/elementor/issues/451\">#451</a>)</li>\n<li>New: Introducing <a href=\"https://github.com/elementor/elementor-hello-theme\">Elementor Hello Theme</a> - A demonstration theme for developers</li>\n<li>New: Added new type of templates: Header, Footer, Single and Archive (<a href=\"https://github.com/elementor/elementor/issues/2761\">#2761</a>, <a href=\"https://github.com/elementor/elementor/issues/2623\">#2623</a>, <a href=\"https://github.com/elementor/elementor/issues/2109\">#2109</a>, <a href=\"https://github.com/elementor/elementor/issues/2061\">#2061</a>, <a href=\"https://github.com/elementor/elementor/issues/2439\">#2439</a>)</li>\n<li>New: Design 404 page with Single template (<a href=\"https://github.com/elementor/elementor/issues/1558\">#1558</a>)</li>\n<li>New: Design Search Results with Archive template (<a href=\"https://github.com/elementor/elementor/issues/3196\">#3196</a>, <a href=\"https://github.com/elementor/elementor/issues/2590\">#2590</a>)</li>\n<li>New: Added Scrolling Effect for sections including <em>Sticky Element</em> per device (<a href=\"https://github.com/elementor/elementor/issues/2412\">#2412</a>)</li>\n<li>New: Integration with Custom Fields (<a href=\"https://github.com/elementor/elementor/issues/2054\">#2054</a>)</li>\n<li>New: Partial support for Toolset integration (<a href=\"https://github.com/elementor/elementor/issues/2949\">#2949</a>)</li>\n<li>New: Partial support for Pods integration (<a href=\"https://github.com/elementor/elementor/issues/2169\">#2169</a>)</li>\n<li>New: Partial support for ACF integration (<a href=\"https://github.com/elementor/elementor/issues/2041\">#2041</a>, <a href=\"https://github.com/elementor/elementor/issues/2059\">#2059</a>)</li>\n<li>Tweak: Add custom fields support for ActiveCampaign (<a href=\"https://github.com/elementor/elementor/issues/3531\">#3531</a>)</li>\n<li>Tweak: Allow brackets in Forms Tel field</li>\n<li>Tweak: Added currency format control for Price Table widget</li>\n<li>Tweak: Reduced API request for some servers</li>\n<li>Fix: Dropdown <code>border-radius</code> in Nav Menu widget</li>\n<li>Fix: Price List widget layout breaks in edge cases</li>\n<li>Note: This version requires Elementor v2.0.6</li>\n</ul>\n<h4>1.15.6 - 2018-03-28</h4>\n<ul>\n<li>Fix: Removed duplicate Custom CSS section (<a href=\"https://github.com/elementor/elementor/issues/3938\">#3938</a>)</li>\n<li>Fix: <code>box-shadow</code> issue with cards skin (<a href=\"https://github.com/elementor/elementor/issues/3940\">#3940</a>)</li>\n</ul>\n<h4>1.15.5 - 2018-03-27</h4>\n<ul>\n<li>Fix: Added global widget compatibility for Elementor v2.0</li>\n<li>Fix: Reduced API request for some servers</li>\n</ul>\n<h4>1.15.4 - 2018-03-26</h4>\n<ul>\n<li>Tweak: Allow brackets in phone field</li>\n<li>Tweak: Added compatibility with Yoast 7.0.+</li>\n<li>Tweak: Added compatibility for the future release of Elementor v2.0</li>\n<li>Fix: Support for multiple carousel setting in editor</li>\n<li>Fix: <code>on_export</code> issue in forms widget (<a href=\"https://github.com/elementor/elementor/issues/3890\">#3890</a>)</li>\n</ul>\n<h4>1.15.3 - 2018-03-07</h4>\n<ul>\n<li>Tweak: Added unique class to field group div (<a href=\"https://github.com/elementor/elementor/issues/3595\">#3595</a>)</li>\n<li>Fix: Screen Options missing when Pro is active (<a href=\"https://github.com/elementor/elementor/issues/3622\">#3622</a>)</li>\n<li>Fix: Allow label styling even when <code>show labels</code> is set hide (<a href=\"https://github.com/elementor/elementor/issues/3544\">#3544</a>)</li>\n<li>Fix: Typography control not working in edge cases</li>\n<li>Fix: Safari compatibility for Search widget</li>\n</ul>\n<h4>1.15.2 - 2018-02-27</h4>\n<ul>\n<li>Fix: Only add support mine-type if needed (<a href=\"https://github.com/elementor/elementor/issues/3543\">#3543</a>)</li>\n<li>Fix: Better support for Old Typekit kits</li>\n</ul>\n<h4>1.15.1 - 2018-02-21</h4>\n<ul>\n<li>Tweak: Custom font title placeholder is not <code>enter font family</code></li>\n<li>Tweak: Custom font title set as required</li>\n<li>Fix: Custom font, <code>font-face</code> enqueued only once if used in global (<a href=\"https://github.com/elementor/elementor/issues/3513\">#3513</a>)</li>\n<li>Fix: Added workaround for upload validation which relies on a PHP extension (fileinfo) with inconsistent reporting behavior.</li>\n</ul>\n<h4>1.15.0 - 2018-02-19</h4>\n<ul>\n<li>New: Added custom fonts manager for self hosted fonts (<a href=\"https://github.com/elementor/elementor/issues/852\">#852</a>)</li>\n<li>New: Integration with Adobe TypeKit fonts (<a href=\"https://github.com/elementor/elementor/issues/631\">#631</a>)</li>\n<li>Tweak: Clear menu from Nav Menu widget on template export</li>\n<li>Tweak: Allow zero for GetResponse integration as <code>day of cycle</code></li>\n</ul>\n<h4>1.14.2 - 2018-02-13</h4>\n<ul>\n<li>Fix: Global widget content that got affected by previous update</li>\n</ul>\n<h4>1.14.1 - 2018-02-13</h4>\n<ul>\n<li>Tweak: Added <code>none</code> option to content animation in CTA widget</li>\n<li>Tweak: Added <code>form_id</code> to ActiveCampaign integration (<a href=\"https://github.com/elementor/elementor/issues/3422\">#3422</a>)</li>\n<li>Fix: Page crashed when Global widget not found.</li>\n</ul>\n<h4>1.14.0 - 2018-02-12</h4>\n<ul>\n<li>New: Added Call to Action widget</li>\n<li>Tweak: MailPoet pull field mapping from MailPoet instead of hardcoded</li>\n<li>Tweak: Added compatibility for the future release of Elementor v2.0</li>\n<li>Fix: Allow zero (0) to be accepted as a field value</li>\n<li>Fix: Login form when custom login URL is set</li>\n<li>Fix: Added Day of cycle control to GetResponse integration</li>\n</ul>\n<h4>1.13.2 - 2018-01-23</h4>\n<ul>\n<li>Tweak: Added placeholder to Password field</li>\n<li>Tweak: Removed <code>subscriber_already_exists_message</code> control to prevent potential data leakage</li>\n<li>Fix: MailPoet Subscriber Already Exists error validation against translated string directly from MailPoet</li>\n<li>Fix: Changed <code>imagesLoaded()</code> to Vanilla JS to avoid compatibility issues with some themes</li>\n<li>Fix: Only validate Tel field if not empty</li>\n<li>Fix: Stop slider while editing</li>\n</ul>\n<h4>1.13.1 - 2018-01-16</h4>\n<ul>\n<li>Fix: Added compatibility with old PHP versions</li>\n</ul>\n<h4>1.13.0 - 2018-01-16</h4>\n<ul>\n<li>New: Added File Upload field for Forms widget (<a href=\"https://github.com/elementor/elementor/issues/1482\">#1482</a>, <a href=\"https://github.com/elementor/elementor/issues/2974\">#2974</a>)</li>\n<li>New: Added Acceptance field for Forms widget (<a href=\"https://github.com/elementor/elementor/issues/1693\">#1693</a>, <a href=\"https://github.com/elementor/elementor/issues/2974\">#2974</a>)</li>\n<li>New: Added Date field for Forms widget (<a href=\"https://github.com/elementor/elementor/issues/1868\">#1868</a>)</li>\n<li>New: Added Time field for Forms widget</li>\n<li>New: Added Password field for Forms widget (<a href=\"https://github.com/elementor/elementor/issues/2164\">#2164</a>)</li>\n<li>New: Added HTML field for Forms widget (<a href=\"https://github.com/elementor/elementor/issues/1500\">#1500</a>)</li>\n<li>Tweak: Added characters validation for Tel field</li>\n<li>Tweak: Added min &amp; max validation for Number field</li>\n<li>Tweak: Added multiple selection for Select field</li>\n<li>Tweak: Added donReach integration for Share Buttons widget</li>\n</ul>\n<h4>1.12.3 - 2018-01-09</h4>\n<ul>\n<li>Fix: Render element plain content instead of parsed content when not needed in global widget</li>\n<li>Fix: Apply <code>url-encoding</code> to &quot;Tweet&quot; button text in Blockquote widget to prevent unexpected corruption of the tweet text</li>\n<li>Fix: Removed My Account link from dashboard widget</li>\n</ul>\n<h4>1.12.2 - 2018-01-03</h4>\n<ul>\n<li>Tweak: Added animation none for Nav Menu widget (<a href=\"https://github.com/elementor/elementor/issues/2964\">#2964</a>)</li>\n<li>Fix: Active license button style</li>\n</ul>\n<h4>1.12.1 - 2018-01-02</h4>\n<ul>\n<li>Tweak: Removed theme-element widgets from plain content</li>\n<li>Tweak: Set all theme-element widgets to extend same widget Base</li>\n<li>Tweak: Removed credit URL in forms meta data</li>\n<li>Tweak: Added compatibility for the future release of Elementor v1.9</li>\n<li>Fix: Validate Get response Error as real error</li>\n<li>Fix: Removed responsive height control from Facebook Page widget</li>\n</ul>\n<h4>1.12.0 - 2017-12-20</h4>\n<ul>\n<li>New: Added Drip integration to Forms</li>\n<li>New: Added ActiveCampaign integration to Forms</li>\n<li>New: Added ConverKit integration to Forms</li>\n<li>New: Added GetResponse integration to Forms</li>\n<li>New: Added form <code>id</code>, <code>name</code> attributes to handle integration with auto collectors like HubSpot</li>\n<li>New: Added Global API key for MailChimp to improve the workflow</li>\n<li>Tweak: Better error handling and message display for Forms</li>\n<li>Fix: PHP notice Undefined variable <code>$cc_header</code> (<a href=\"https://github.com/elementor/elementor/issues/2934\">#2934</a>)</li>\n</ul>\n<h4>1.11.0 - 2017-12-11</h4>\n<ul>\n<li>New: Added a native Comments widget (<a href=\"https://github.com/elementor/elementor/issues/543\">#543</a>)</li>\n<li>New: Added an Author Box widget</li>\n<li>New: Added a Post Navigation widget</li>\n<li>New: Added a Yoast Breadcrumbs widget (<a href=\"https://github.com/elementor/elementor/issues/2749\">#2749</a>)</li>\n<li>Tweak: Added a close button to search widget under Full Screen skin (<a href=\"https://github.com/elementor/elementor/issues/2762\">#2762</a>)</li>\n<li>Fix: Allow currency symbol to appear even if price isn\'t numeric</li>\n<li>Fix: Edge cases when the nav menu is empty in a stretched section</li>\n<li>Fix: Added fallback when you remove the <code>space-between</code> on Swiper carousel</li>\n</ul>\n<h4>1.10.2 - 2017-12-03</h4>\n<ul>\n<li>Fix: Missing save widget icon (<a href=\"https://github.com/elementor/elementor/issues/2878\">#2878</a>)</li>\n<li>Fix: Global widgets not saving edits (<a href=\"https://github.com/elementor/elementor/issues/2874\">#2874</a>)</li>\n<li>Fix: Removed <code>white-space: nowrap;</code> property from vertical menu in Nav Menu widget (<a href=\"https://github.com/elementor/elementor/issues/2815\">#2815</a>)</li>\n</ul>\n<h4>1.10.1 - 2017-11-30</h4>\n<ul>\n<li>Tweak: Added default value for search form</li>\n<li>Tweak: Order template list A-Z in the library widget</li>\n<li>Tweak: get_users/authors query is now done using AJAX only, for better performance in Query Control (<a href=\"https://github.com/elementor/elementor/issues/2865\">#2865</a>)</li>\n<li>Fix: When adding <code>.00</code> it is not displayed on the front</li>\n<li>Fix: Make sure space between is numeric for carousel control</li>\n<li>Fix: Added space for radio &amp; checkbox fields in form widget</li>\n</ul>\n<h4>1.10.0 - 2017-11-15</h4>\n<ul>\n<li>New: Added native Search form widget (<a href=\"https://github.com/elementor/elementor/issues/2576\">#2576</a>)</li>\n<li>Tweak: Added Slides To Scroll &amp; Loop controls to Media Carousel and Testimonials widgets</li>\n<li>Tweak: Added Inline editing to Blockquote widget</li>\n<li>Fix: Animated Headline color bug (<a href=\"https://github.com/elementor/elementor/issues/2516\">#2516</a>)</li>\n<li>Fix: Animated Headline with Rotating skin</li>\n<li>Fix: RTL fix for Animated Headline widget in \'typing\' and \'clip\' animations</li>\n<li>Fix: Empty menu cause jQuery to crash in Menu widget (<a href=\"https://github.com/elementor/elementor/issues/2662\">#2662</a>)</li>\n<li>Fix: Custom CSS gone after reloading the editor</li>\n</ul>\n<h4>1.9.5 - 2017-10-27</h4>\n<ul>\n<li>Fix: Broken Global widget with JS (<a href=\"https://github.com/elementor/elementor/issues/2639\">#2639</a>)</li>\n</ul>\n<h4>1.9.4 - 2017-10-24</h4>\n<ul>\n<li>Tweak: Improved UI for notices and license page</li>\n<li>Fix: Update system conflict with other EDD plugins</li>\n<li>Fix: WooCommerce frontend hooks on Elementor editor (<a href=\"https://github.com/elementor/elementor/issues/2577\">#2577</a>)</li>\n<li>Fix: Removed default border left in Nav Menu dropdown CSS (<a href=\"https://github.com/elementor/elementor/issues/2496\">#2496</a>)</li>\n<li>Fix: Increased submenu max-width (<a href=\"https://github.com/elementor/elementor/issues/2558\">#2558</a>)</li>\n<li>Fix: Save global templates without their defaults</li>\n<li>Fix: Horizontal scrolling issue with posts grid</li>\n</ul>\n<h4>1.9.3 - 2017-10-03</h4>\n<ul>\n<li>Fix: Condition slide style that got affected by previous update</li>\n</ul>\n<h4>1.9.2 - 2017-10-02</h4>\n<ul>\n<li>New: Added integration with MailPoet 3 for Forms actions</li>\n<li>Fix: Removed height control from Testimonial carousel in mobile editing mode</li>\n<li>Fix: Removed bottom padding when there\'s no pagination in Testimonial carousel</li>\n<li>Fix: Added condition for slides style section in skin bubble mode</li>\n<li>Fix: Slides per view control for mobile editing in Testimonial carousel</li>\n<li>Fix: Navigation Arrows icons matched with common Elementor Navigation Arrows</li>\n</ul>\n<h4>1.9.1 - 2017-09-28</h4>\n<ul>\n<li>Fix: Slides per view for slideshow carousel</li>\n<li>Fix: Final polish for the new Testimonial Carousel widget</li>\n<li>Fix: Don\'t play video if slide type is not video</li>\n<li>Fix: Removed slides style section condition (<a href=\"https://github.com/elementor/elementor/issues/2497\">#2497</a>)</li>\n<li>Fix: Set cursor as pointer for slideshow thumbnails</li>\n</ul>\n<h4>1.9.0 - 2017-09-26</h4>\n<ul>\n<li>New: Added Media Carousel widget (<a href=\"https://github.com/elementor/elementor/issues/216\">#216</a>, <a href=\"https://github.com/elementor/elementor/issues/347\">#347</a>, <a href=\"https://github.com/elementor/elementor/issues/2209\">#2209</a>)</li>\n<li>New: Added Testimonial Carousel widget (<a href=\"https://github.com/elementor/elementor/issues/715\">#715</a>)</li>\n</ul>\n<h4>1.8.3 - 2017-09-24</h4>\n<ul>\n<li>Fix: Added compatibility for WordPress 4.8.2 &amp; 4.7.6</li>\n<li>Fix: Remove slashes from Form sent data</li>\n</ul>\n<h4>1.8.2 - 2017-09-19</h4>\n<ul>\n<li>Tweak: Added target URL for the tweet message in Blockquote widget</li>\n<li>Tweak: Render the slide height before the slider is finished loading</li>\n<li>Fix: Space between words for Animated Headline widget</li>\n<li>Fix: RTL compatibility for Animated Headline widget</li>\n<li>Fix: Italic font style for Animated Headline widget</li>\n<li>Fix: Excluded Menu widget from the WP Editor text rendering</li>\n</ul>\n<h4>1.8.1 - 2017-09-18</h4>\n<ul>\n<li>Fix: WCAG Compatible &quot;required&quot; field attribute for W3C validation (<a href=\"https://github.com/elementor/elementor/issues/2391\">#2391</a>)</li>\n<li>Fix: Print the main menu only when is necessary in Menu widget</li>\n<li>Fix: Use CSS media query instead of JS to hide items in Menu widget to avoid flickering on page load (<a href=\"https://github.com/elementor/elementor/issues/2381\">#2381</a>)</li>\n</ul>\n<h4>1.8.0 - 2017-09-12</h4>\n<ul>\n<li>New: Added Nav Menu widget (<a href=\"https://github.com/elementor/elementor/issues/1406\">#1406</a>)</li>\n<li>Fix: Field ID for checkbox control in Form widget (<a href=\"https://github.com/elementor/elementor/issues/2279\">#2279</a>)</li>\n<li>Fix: Style for Blockquote widget included</li>\n</ul>\n<h4>1.7.2 - 2017-09-07</h4>\n<ul>\n<li>Tweak: Loading Facebook SDK via JS for better compatibility with caching plugins</li>\n<li>Fix: Responsive Embed Facebook post widget for Safari iOS (<a href=\"https://github.com/elementor/elementor/issues/2340\">#2340</a>)</li>\n</ul>\n<h4>1.7.1 - 2017-09-05</h4>\n<ul>\n<li>Fix: Facebook SDK version</li>\n</ul>\n<h4>1.7.0 - 2017-09-05</h4>\n<ul>\n<li>New: Added Facebook Button widget for Like, Recommend, Share and Follow</li>\n<li>New: Added Facebook Embed widget for Post, Video and Comment</li>\n<li>New: Added Facebook Comments widget</li>\n<li>New: Added Facebook Page widget (Previously known as Like Box)</li>\n<li>New: Added Blockquote widget with Tweet button</li>\n<li>Tweak: Added Facebook SDK integration for all Facebook widgets</li>\n<li>Fix: Animated headline rotating with long words</li>\n</ul>\n<h4>1.6.1 - 2017-08-28</h4>\n<ul>\n<li>Fix: Animated Headline marker gets in front of neighboring spans even when &quot;Bring to Front&quot; is not set</li>\n<li>Fix: Stroke animation in Animated Headline for MS Edge browser</li>\n<li>Fix: Animated headline with more than 1-word per rotation</li>\n<li>Fix: Animated Headline in two lines</li>\n<li>Fix: Some errors in Global widget</li>\n</ul>\n<h4>1.6.0 - 2017-08-22</h4>\n<ul>\n<li>New: Added Animated Headline widget</li>\n<li>New: Added Hidden field for Forms widget (<a href=\"https://github.com/elementor/elementor/issues/2038\">#2038</a>)</li>\n<li>Tweak: Added notice to update Elementor to v1.6.5 or higher</li>\n<li>Fix: CSS Animations names no longer minified, in order to prevent unexpected conflicts</li>\n</ul>\n<h4>1.5.9 - 2017-08-16</h4>\n<ul>\n<li>Tweak: Added compatibility for the future release of Elementor v1.7</li>\n<li>Fix: Portfolio compatibility for GeneratePress theme</li>\n<li>Fix: Portfolio filter compatibility for RTL</li>\n<li>Fix: Pagination apply for all posts widget in the page</li>\n<li>Fix: Global form widget with MailChimp integration not saving</li>\n</ul>\n<h4>1.5.8 - 2017-07-25</h4>\n<ul>\n<li>Tweak: Added compatibility for the future release of Elementor v1.6</li>\n<li>Fix: Improved backward compatibility for query control rename</li>\n</ul>\n<h4>1.5.7 - 2017-07-24</h4>\n<ul>\n<li>Tweak: Moved JS render of reCAPTCHA to a separate file</li>\n<li>Tweak: Display the label in the reCAPTCHA field for better experience</li>\n<li>Tweak: Rename <code>panel-posts-control</code> to <code>query-control</code> and added fallback support</li>\n<li>Tweak: Added compatibility for the future release of Elementor with history feature</li>\n<li>Fix: reCAPTCHA preview on the editor</li>\n<li>Fix: Manual selection (query control) has stopped working after saving (<a href=\"https://github.com/elementor/elementor/issues/2000\">#2000</a>)</li>\n<li>Fix: Added condition for icon size control in Share Buttons widget</li>\n</ul>\n<h4>1.5.6 - 2017-07-12</h4>\n<ul>\n<li>Fix: Query Control correction for taxonomies (<a href=\"https://github.com/elementor/elementor/issues/1963\">#1963</a>)</li>\n<li>Fix: Custom CSS override scheme color in the editor</li>\n<li>Fix: Added order by Menu Order for Query Control in WC widget</li>\n<li>Fix: Glitch with Flip Box background overlay</li>\n</ul>\n<h4>1.5.5 - 2017-07-03</h4>\n<ul>\n<li>Tweak: Moved reCAPTCHA render to handler &amp; load only if a form is exist</li>\n<li>Fix: MailChimp integration: Default number of items returned by API increased to 999</li>\n<li>Fix: MailChimp integration: Refresh the groups list if API is changed</li>\n<li>Fix: Sorted items in filter bar by A-Z</li>\n<li>Fix: Editor glitch with Elementor v1.5 (<a href=\"https://github.com/elementor/elementor/issues/1927\">#1927</a>)</li>\n</ul>\n<h4>1.5.4 - 2017-06-22</h4>\n<ul>\n<li>Tweak: Improved compatibility for Elementor v1.5</li>\n<li>Fix: URL default for Add To Cart widget</li>\n<li>Fix: Allowed <code>date</code> and <code>birthday</code> fields as text for MailChimp integration</li>\n</ul>\n<h4>1.5.3 - 2017-06-19</h4>\n<ul>\n<li>Tweak: Make flip-box height responsive control</li>\n<li>Fix: Facebook share count now gets retrieved by Elementor (<a href=\"https://github.com/elementor/elementor/issues/1829\">#1829</a>)</li>\n<li>Fix: Global form widget with MailChimp integration not saving</li>\n</ul>\n<h4>1.5.2 - 2017-06-13</h4>\n<ul>\n<li>Fix: Custom CSS panel location compatibility for the old versions</li>\n</ul>\n<h4>1.5.1 - 2017-06-12</h4>\n<ul>\n<li>Fix: MailChimp update existing user registration</li>\n<li>Fix: Global widget with JS in the editor mode</li>\n<li>Fix: Label section condition in Login widget</li>\n<li>Fix: Changes to unlinked global widget do not appear in the editor</li>\n</ul>\n<h4>1.5.0 - 2017-05-23</h4>\n<ul>\n<li>New: Added Cards, a new skin for Posts widget</li>\n<li>New: Added Exclude option to post query control group</li>\n<li>Tweak: Added <code>post_class()</code> for each post in the loop</li>\n<li>Tweak: Added <code>.elementor-posts-masonry</code> class when Masonry layout is enabled</li>\n<li>Tweak: Added compatibility for the next release of Elementor v1.5.0</li>\n<li>Tweak: CSS <code>autoprefixer</code> now supports last 5 versions of browsers</li>\n<li>Tweak: Added <code>imageLoaded</code> library for Posts &amp; Portfolio widgets</li>\n</ul>\n<h4>1.4.4 - 2017-05-18</h4>\n<ul>\n<li>Fix: Force Mailchimp API to return all lists and not just 10 (<a href=\"https://github.com/elementor/elementor/issues/1683\">#1683</a>)</li>\n<li>Fix: Added <code>.elementor-form</code> class to Login form to fix style glitch</li>\n</ul>\n<h4>1.4.3 - 2017-05-14</h4>\n<ul>\n<li>Tweak: Added Redirect After Login option to Login widget</li>\n<li>Tweak: Stay in the current page after logout in Login widget</li>\n<li>Tweak: Preparation for Elementor settings tabs in future version</li>\n<li>Fix: Pinterest in Share Buttons widget now sharing the URL alone</li>\n<li>Fix: Bug with <code>active</code> class in portfolio filter item</li>\n<li>Fix: Higher specific list-style-type <code>none</code> for filter items to override some theme style</li>\n</ul>\n<h4>1.4.2 - 2017-05-06</h4>\n<ul>\n<li>Fix: Temporary patch for form field shortcode in some servers</li>\n</ul>\n<h4>1.4.1 - 2017-05-03</h4>\n<ul>\n<li>Fix: Bug with custom success message in form widget</li>\n<li>Fix: Bug with meta data in email action</li>\n</ul>\n<h4>1.4.0 - 2017-05-03</h4>\n<ul>\n<li>New: Forms: integration with MailChimp</li>\n<li>New: Forms: integration with MailPoet</li>\n<li>New: Forms: Added Email 2 action for email confirmation</li>\n<li>New: Forms: Added shortcodes for fields</li>\n<li>New: Forms: Added custom ID for fields</li>\n<li>New: Forms: Added option to edit email HTML template (<a href=\"https://github.com/elementor/elementor/issues/1180\">#1180</a>)</li>\n<li>New: Added Login widget</li>\n<li>Tweak: Move <code>send_html</code> control to <code>email_content_type</code></li>\n<li>Fix: Email still sent even if validation failed in form widget</li>\n</ul>\n<h4>1.3.2 - 2017-05-01</h4>\n<ul>\n<li>New: Added action <code>elementor_pro/init</code> for better integration with Elementor Pro</li>\n<li>Fix: Posts without featured image in Posts widget (<a href=\"https://github.com/elementor/elementor/issues/1234\">#1234</a>, <a href=\"https://github.com/elementor/elementor/issues/1382\">#1382</a>)</li>\n<li>Fix: reCAPTCHA &amp; Honeypot fields with new method</li>\n<li>Fix: Added border width control in Share Buttons to avoid a glitch on Chrome browser</li>\n<li>Fix: Border radius glitch on hover in Share Buttons</li>\n</ul>\n<h4>1.3.1 - 2017-04-25</h4>\n<ul>\n<li>Fix: Conflict update with revision history module</li>\n</ul>\n<h4>1.3.0 - 2017-04-25</h4>\n<ul>\n<li>New: Added Share Buttons widget (<a href=\"https://wordpress.org/support/topic/social-sharing-buttons-is-it-possible/\">Topic</a>)</li>\n<li>New: Added Custom CSS for Page Settings</li>\n<li>New: Added Masonry layout for Portfolio widget</li>\n<li>New: Added Cc &amp; Bcc options to email action (<a href=\"https://github.com/elementor/elementor/issues/1181\">#1181</a>)</li>\n<li>New: Introduced <code>ElementorPro\\Modules\\Forms\\Classes\\Action_Base</code> class for better 3rd party integration for forms</li>\n<li>Tweak: Debugger module now also shows errors from Pro</li>\n<li>Tweak: Added options for Elementor Library</li>\n<li>Tweak: New base posts module for optimized performance</li>\n<li>Tweak: Adjusting Posts / Portfolio to the new structure</li>\n<li>Fix: Export for posts / portfolio</li>\n<li>Fix: Duplicate repeater field with switcher control (<a href=\"https://github.com/elementor/elementor/issues/1442\">#1442</a>)</li>\n<li>Fix: Post per Page in the query control</li>\n<li>Fix: Metadata does not come through on form emails (<a href=\"https://github.com/elementor/elementor/issues/1566\">#1566</a>)</li>\n</ul>\n<h4>1.2.6 - 2017-04-19</h4>\n<ul>\n<li>Fix: Added compatibility with WooCommerce 3.0 - Products &amp; Add to Cart widgets</li>\n</ul>\n<h4>1.2.5 - 2017-04-18</h4>\n<ul>\n<li>Fix: Offset query for posts widgets (Posts, Portfolio and Products)</li>\n</ul>\n<h4>1.2.4 - 2017-03-21</h4>\n<ul>\n<li>Tweak: Added Indian Rupee sign to Price Table widget</li>\n<li>Fix: Portfolio grid for IE11</li>\n<li>Fix: Link target blank in Price List widget</li>\n<li>Fix: Active item for filter bar in Portfolio widget</li>\n</ul>\n<h4>1.2.3 - 2017-03-06</h4>\n<ul>\n<li>Tweak: Fully compatible with Elementor v1.3.0</li>\n<li>Tweak: Added trigger for after form submission in Forms widget</li>\n<li>Tweak: Changed handle name in reCAPTCHA field to avoid conflict with other contact forms</li>\n<li>Fix: Portfolio filter syntax in Non-Latin languages</li>\n<li>Fix: Added <code>no-repeat</code> property for slide with <code>background-size:contain</code></li>\n<li>Fix: Condition control &amp; Import value in Posts widgets</li>\n<li>Fix: Offset and Pagination in WordPress (<a href=\"https://codex.wordpress.org/Making_Custom_Queries_using_Offset_and_Pagination\">More Info</a>)</li>\n<li>Fix: Submit handler bubbling for custom events in Forms widget</li>\n</ul>\n<h4>1.2.2 - 2017-02-23</h4>\n<ul>\n<li>Tweak: Change name from Side A/B to Front and Back in Flip Box widget</li>\n<li>Fix: Error when saving third party widgets in the global widget</li>\n<li>Fix: Image position &quot;none&quot; remains visible in editor preview (Posts)</li>\n<li>Fix: Hide the pagination when there are no links</li>\n</ul>\n<h4>1.2.1 - 2017-02-21</h4>\n<ul>\n<li>Fix: Firefox Flip Box 3D compatibility</li>\n</ul>\n<h4>1.2.0 - 2017-02-21</h4>\n<ul>\n<li>New: Added Flip Box widget</li>\n<li>New: Added Ken Burns effect for slides</li>\n<li>New: Added Masonry layout for Posts widget</li>\n<li>New: Added Pagination option for Posts widget</li>\n<li>Tweak: Added background size contain to slides</li>\n<li>Tweak: Improve Query control by preload items</li>\n<li>Fix: Text color for Checkbox and Radio fields</li>\n</ul>\n<h4>1.1.2 - 2017-02-05</h4>\n<ul>\n<li>Tweak: Added <code>aria-required</code> for better accessibility in forms widget</li>\n<li>Fix: Conflict Call to <code>undefined</code> method in Posts &amp; Portfolio widgets (<a href=\"https://github.com/elementor/elementor/issues/1271\">#1271</a>, <a href=\"https://github.com/elementor/elementor/issues/1266\">#1266</a>)</li>\n<li>Fix: Submit button HTML after error sending</li>\n<li>Fix: Success message for <code>skip_email</code> function</li>\n<li>Notice: Elementor 1.2.0 or later now required</li>\n</ul>\n<h4>1.1.1 - 2017-01-24</h4>\n<ul>\n<li>Fix: Can\'t save global widgets when <code>WP_DEBUG</code> is <code>true</code></li>\n<li>Fix: Undefined variable in WC widgets</li>\n<li>Fix: Removed duplicate strings</li>\n</ul>\n<h4>1.1.0 - 2017-01-24</h4>\n<ul>\n<li>New: Price Table widget (<a href=\"https://github.com/elementor/elementor/issues/102\">#102</a>)</li>\n<li>New: WooCommerce Add to Cart widget</li>\n<li>New: WooCommerce Categories widget</li>\n<li>New: WooCommerce Elements widget</li>\n<li>New: Honeypot field for Forms widgets</li>\n<li>Tweak: Added inline options for taxonomies &amp; authors if is less than 15 items</li>\n<li>Tweak: Added Required Mark for fields in Forms widget</li>\n<li>Fix: CSS selectors priority in Slides widget</li>\n<li>Fix: CSS bug in Price List widget</li>\n<li>Fix: Update all Post CSS files that includes specific Global Widget</li>\n</ul>\n<h4>1.0.9 - 2017-01-18</h4>\n<ul>\n<li>Fix: Auto complete bug in query controls</li>\n<li>Fix: Render template with escaping slashes</li>\n<li>Fix: Reply-to field in Forms widget</li>\n</ul>\n<h4>1.0.8 - 2017-01-11</h4>\n<ul>\n<li>Tweak: Code adjustments for Elementor API</li>\n<li>Fix: Removed go pro link from plugins page in admin</li>\n</ul>\n<h4>1.0.7 - 2017-01-05</h4>\n<ul>\n<li>Tweak: Added filter by featured / sale for WC Products widget</li>\n<li>Tweak: Added author control in Portfolio widget</li>\n<li>Tweak: Code adjustments for Elementor API</li>\n<li>Fix: Added support for empty image ratio</li>\n<li>Fix: Avoid nesting a sidebar within a template that will appear in the sidebar itself</li>\n</ul>\n<h4>1.0.6 - 2017-01-01</h4>\n<ul>\n<li>Tweak: Added Auto-updates for local translation files</li>\n<li>Fix: Custom CSS for Global widgets</li>\n<li>Fix: Remove <code>nonce</code> field (Fix some cache plugins)</li>\n</ul>\n<h4>1.0.5 - 2016-12-27</h4>\n<ul>\n<li>Fix: Slide element bug fix - \'Link apply on\' logic</li>\n<li>Fix: Removed unique wrapper for Custom CSS in order to allow media queries (<a href=\"https://github.com/elementor/elementor/issues/1086\">#1086</a>)</li>\n</ul>\n<h4>1.0.4 - 2016-12-21</h4>\n<ul>\n<li>Tweak: Mobile Editing for fields in the form widget</li>\n<li>Tweak: Mobile Editing for posts</li>\n<li>Tweak: Allow send form as HTML</li>\n<li>Tweak: Improved auto upgrades for Multisite installation</li>\n<li>Tweak: Improve editor rendering experience for Portfolio widget</li>\n<li>Fix: Posts widget check if image exist</li>\n<li>Fix: Changed the clone method for global widget (<a href=\"https://github.com/elementor/elementor/issues/1042\">#1042</a>)</li>\n<li>Fix: Bug slides in RTL (removed direction control)</li>\n<li>Fix: Slides with no height jumps when changing slides</li>\n</ul>\n<h4>1.0.3 - 2016-12-13</h4>\n<ul>\n<li>Fix: Added escape placeholder for HTML Entities in form widget</li>\n<li>Fix: Countdown widget RTL bug</li>\n<li>Fix: Remove redundant #elementor selector for control style</li>\n<li>Fix: Added prefixing with \'0\' for one digit number in Countdown widget</li>\n</ul>\n<h4>1.0.2 - 2016-12-12</h4>\n<ul>\n<li>Fix: Page layout collapses when inserting reCAPTCHA field in Form</li>\n</ul>\n<h4>1.0.1 - 2016-12-12</h4>\n<ul>\n<li>Fix: WordPress widgets disappear from Editor when Elementor Pro active</li>\n</ul>\n<h4>1.0.0 - 2016-12-12</h4>\n<ul>\n<li>Initial release</li>\n</ul>\";}\";s:11:\"new_version\";s:5:\"2.7.0\";s:4:\"name\";s:13:\"Elementor Pro\";s:4:\"slug\";s:13:\"elementor-pro\";s:3:\"url\";s:36:\"https://elementor.com/pro/changelog/\";s:8:\"homepage\";s:26:\"https://elementor.com/pro/\";s:8:\"requires\";s:3:\"4.7\";s:6:\"tested\";s:5:\"5.2.3\";s:7:\"package\";s:200:\"http://my.elementor.com/edd-sl/package_download/MTU2OTUwMTY2Mjo3ZmQ2MjNkZTEzMWQyOTcxZmNmZjczN2YyMDgzYzE4YzoxOmY3NDI5Y2U5ZTdmOWNiMTIyYWYyZjIwYWU1N2MwODFkOmh0dHBALy8yMy4yMzUuMjA4LjExL35vbmRpc3A1L3dwOjA=\";s:13:\"download_link\";s:200:\"http://my.elementor.com/edd-sl/package_download/MTU2OTUwMTY2Mjo3ZmQ2MjNkZTEzMWQyOTcxZmNmZjczN2YyMDgzYzE4YzoxOmY3NDI5Y2U5ZTdmOWNiMTIyYWYyZjIwYWU1N2MwODFkOmh0dHBALy8yMy4yMzUuMjA4LjExL35vbmRpc3A1L3dwOjA=\";s:7:\"banners\";a:2:{s:2:\"2x\";s:65:\"https://ps.w.org/elementor/assets/banner-1544x500.png?rev=1475479\";s:2:\"1x\";s:64:\"https://ps.w.org/elementor/assets/banner-772x250.png?rev=1475479\";}s:5:\"icons\";a:1:{s:3:\"svg\";s:42:\"https://ps.w.org/elementor/assets/icon.svg\";}s:17:\"canary_deployment\";a:2:{s:11:\"plugin_info\";a:11:{s:11:\"new_version\";s:5:\"2.7.0\";s:4:\"name\";s:13:\"Elementor Pro\";s:4:\"slug\";s:13:\"elementor-pro\";s:3:\"url\";s:36:\"https://elementor.com/pro/changelog/\";s:8:\"homepage\";s:26:\"https://elementor.com/pro/\";s:8:\"requires\";s:3:\"4.7\";s:6:\"tested\";s:5:\"5.2.3\";s:7:\"package\";s:200:\"http://my.elementor.com/edd-sl/package_download/MTU2OTUwMTY2Mjo3ZmQ2MjNkZTEzMWQyOTcxZmNmZjczN2YyMDgzYzE4YzoxOmY3NDI5Y2U5ZTdmOWNiMTIyYWYyZjIwYWU1N2MwODFkOmh0dHBALy8yMy4yMzUuMjA4LjExL35vbmRpc3A1L3dwOjA=\";s:13:\"download_link\";s:200:\"http://my.elementor.com/edd-sl/package_download/MTU2OTUwMTY2Mjo3ZmQ2MjNkZTEzMWQyOTcxZmNmZjczN2YyMDgzYzE4YzoxOmY3NDI5Y2U5ZTdmOWNiMTIyYWYyZjIwYWU1N2MwODFkOmh0dHBALy8yMy4yMzUuMjA4LjExL35vbmRpc3A1L3dwOjA=\";s:7:\"banners\";a:2:{s:2:\"2x\";s:65:\"https://ps.w.org/elementor/assets/banner-1544x500.png?rev=1475479\";s:2:\"1x\";s:64:\"https://ps.w.org/elementor/assets/banner-772x250.png?rev=1475479\";}s:5:\"icons\";a:1:{s:3:\"svg\";s:42:\"https://ps.w.org/elementor/assets/icon.svg\";}}s:10:\"conditions\";a:1:{i:0;a:1:{i:0;a:3:{s:4:\"type\";s:8:\"language\";s:9:\"languages\";a:6:{i:0;s:5:\"he_IL\";i:1;s:5:\"en_GB\";i:2;s:5:\"en_NZ\";i:3;s:5:\"en_ZA\";i:4;s:5:\"en_AU\";i:5;s:5:\"en_CA\";}s:8:\"operator\";s:2:\"in\";}}}}}}','no');
INSERT INTO `wp_options` VALUES (274,'jetpack_callables_sync_checksum','a:33:{s:18:\"wp_max_upload_size\";i:3564436882;s:15:\"is_main_network\";i:734881840;s:13:\"is_multi_site\";i:734881840;s:17:\"main_network_site\";i:3264658152;s:8:\"site_url\";i:3264658152;s:8:\"home_url\";i:3264658152;s:16:\"single_user_site\";i:4261170317;s:7:\"updates\";i:3425443202;s:28:\"has_file_system_write_access\";i:4261170317;s:21:\"is_version_controlled\";i:734881840;s:10:\"taxonomies\";i:382731269;s:10:\"post_types\";i:2868210918;s:18:\"post_type_features\";i:70187400;s:10:\"shortcodes\";i:1885404437;s:27:\"rest_api_allowed_post_types\";i:503776097;s:32:\"rest_api_allowed_public_metadata\";i:223132457;s:24:\"sso_is_two_step_required\";i:734881840;s:26:\"sso_should_hide_login_form\";i:734881840;s:18:\"sso_match_by_email\";i:4261170317;s:21:\"sso_new_user_override\";i:734881840;s:29:\"sso_bypass_default_login_form\";i:734881840;s:10:\"wp_version\";i:2800914340;s:11:\"get_plugins\";i:624580976;s:24:\"get_plugins_action_links\";i:223132457;s:14:\"active_modules\";i:223132457;s:16:\"hosting_provider\";i:769900095;s:6:\"locale\";i:110763218;s:13:\"site_icon_url\";i:734881840;s:5:\"roles\";i:2074191413;s:8:\"timezone\";i:3808505409;s:24:\"available_jetpack_blocks\";i:223132457;s:13:\"paused_themes\";i:223132457;s:14:\"paused_plugins\";i:223132457;}','no'),(275,'jpsq_sync_checkout','0:0','no'),(278,'jetpack_plugin_api_action_links','a:2:{s:19:\"jetpack/jetpack.php\";a:1:{s:7:\"Jetpack\";s:64:\"http://23.235.208.11/~ondisp5/wp/wp-admin/admin.php?page=jetpack\";}s:24:\"wpforms-lite/wpforms.php\";a:1:{s:8:\"Settings\";s:73:\"http://23.235.208.11/~ondisp5/wp/wp-admin/admin.php?page=wpforms-settings\";}}','yes'),(579,'elementor_editor_break_lines','','yes'),(580,'elementor_edit_buttons','','yes'),(581,'elementor_allow_svg','','yes'),(561,'elementor_viewport_md','','yes'),(562,'elementor_global_image_lightbox','yes','yes'),(563,'elementor_pro_recaptcha_site_key','','yes'),(564,'elementor_pro_recaptcha_secret_key','','yes'),(565,'elementor_pro_recaptcha_v3_site_key','','yes'),(566,'elementor_pro_recaptcha_v3_secret_key','','yes'),(567,'elementor_pro_recaptcha_v3_threshold','0.5','yes'),(568,'elementor_pro_facebook_app_id','','yes'),(569,'elementor_pro_mailchimp_api_key','','yes'),(570,'elementor_validate_api_data','','yes'),(571,'elementor_pro_drip_api_token','','yes'),(572,'elementor_pro_activecampaign_api_key','','yes'),(573,'elementor_pro_activecampaign_api_url','','yes'),(574,'elementor_pro_getresponse_api_key','','yes'),(575,'elementor_pro_convertkit_api_key','','yes'),(576,'elementor_pro_mailerlite_api_key','','yes'),(797,'elementor_font_awesome_pro_kit_id','','yes'),(578,'elementor_css_print_method','external','yes'),(330,'elementor_remote_info_feed_data','a:3:{i:0;a:5:{s:5:\"title\";s:64:\"Introducing Pro Gallery: The Best Gallery Solution for WordPress\";s:7:\"excerpt\";s:146:\"Forget WordPress gallery plugins! Gain full control over your gallery design and enjoy the best responsive gallery for your website, and lets you \";s:7:\"created\";s:10:\"1569316235\";s:5:\"badge\";s:3:\"New\";s:3:\"url\";s:123:\"https://elementor.com/blog/introducing-pro-gallery/?utm_source=wp-overview-widget&utm_medium=wp-dash&utm_campaign=news-feed\";}i:1;a:5:{s:5:\"title\";s:53:\"How to Fix the White Screen When Editing in Elementor\";s:7:\"excerpt\";s:162:\"Learn how to diagnose the underlying problem that\'s causing the blank screen, as well as what steps you can take to fix the issue and get your site working again.\";s:7:\"created\";s:10:\"1568714976\";s:5:\"badge\";s:0:\"\";s:3:\"url\";s:107:\"https://elementor.com/blog/?p=30516&utm_source=wp-overview-widget&utm_medium=wp-dash&utm_campaign=news-feed\";}i:2;a:5:{s:5:\"title\";s:67:\"Worth Your Click: Most Innovative Leaders, Email Inspiration & More\";s:7:\"excerpt\";s:136:\"This week we’ve collected a series of inspiring videos, email templates, new plugins and insights into what makes a leader innovative.\";s:7:\"created\";s:10:\"1568185680\";s:5:\"badge\";s:0:\"\";s:3:\"url\";s:114:\"https://elementor.com/blog/weekly-news-14/?utm_source=wp-overview-widget&utm_medium=wp-dash&utm_campaign=news-feed\";}}','no'),(1172,'_transient_timeout_elementor_remote_info_api_data_2.6.8','1569426161','no'),(1173,'_transient_elementor_remote_info_api_data_2.6.8','a:3:{s:9:\"timestamp\";i:1569380644;s:14:\"upgrade_notice\";a:3:{s:7:\"version\";s:5:\"2.0.0\";s:7:\"message\";s:0:\"\";s:11:\"update_link\";s:0:\"\";}s:17:\"canary_deployment\";a:2:{s:11:\"plugin_info\";a:11:{s:2:\"id\";s:23:\"w.org/plugins/elementor\";s:4:\"slug\";s:9:\"elementor\";s:6:\"plugin\";s:23:\"elementor/elementor.php\";s:11:\"new_version\";s:5:\"2.7.0\";s:7:\"package\";s:58:\"https://downloads.wordpress.org/plugin/elementor.2.7.0.zip\";s:3:\"url\";s:40:\"https://wordpress.org/plugins/elementor/\";s:5:\"icons\";a:3:{s:2:\"2x\";s:62:\"https://ps.w.org/elementor/assets/icon-256x256.png?rev=1427768\";s:2:\"1x\";s:54:\"https://ps.w.org/elementor/assets/icon.svg?rev=1426809\";s:3:\"svg\";s:54:\"https://ps.w.org/elementor/assets/icon.svg?rev=1426809\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:65:\"https://ps.w.org/elementor/assets/banner-1544x500.png?rev=1475479\";s:2:\"1x\";s:64:\"https://ps.w.org/elementor/assets/banner-772x250.png?rev=1475479\";}s:11:\"banners_rtl\";a:0:{}s:6:\"tested\";s:5:\"5.2.3\";s:12:\"requires_php\";s:3:\"5.4\";}s:10:\"conditions\";a:1:{i:0;a:1:{i:0;a:3:{s:4:\"type\";s:8:\"language\";s:9:\"languages\";a:6:{i:0;s:5:\"he_IL\";i:1;s:5:\"en_GB\";i:2;s:5:\"en_NZ\";i:3;s:5:\"en_ZA\";i:4;s:5:\"en_AU\";i:5;s:5:\"en_CA\";}s:8:\"operator\";s:2:\"in\";}}}}}','no'),(1174,'_transient_timeout_elementor_pro_license_data','1569426161','no'),(335,'current_theme','Astra Child','yes'),(336,'theme_mods_astra','a:5:{i:0;b:0;s:18:\"nav_menu_locations\";a:0:{}s:18:\"custom_css_post_id\";i:-1;s:11:\"custom_logo\";i:18;s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1568594470;s:4:\"data\";a:9:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";a:6:{i:0;s:8:\"search-2\";i:1;s:14:\"recent-posts-2\";i:2;s:17:\"recent-comments-2\";i:3;s:10:\"archives-2\";i:4;s:12:\"categories-2\";i:5;s:6:\"meta-2\";}s:13:\"header-widget\";a:0:{}s:15:\"footer-widget-1\";a:0:{}s:15:\"footer-widget-2\";a:0:{}s:24:\"advanced-footer-widget-1\";a:0:{}s:24:\"advanced-footer-widget-2\";a:0:{}s:24:\"advanced-footer-widget-3\";a:0:{}s:24:\"advanced-footer-widget-4\";a:0:{}}}}','yes'),(337,'theme_switched','','yes'),(338,'astra-settings','a:249:{s:18:\"theme-auto-version\";s:5:\"2.0.1\";s:28:\"button-color-styling-divider\";s:0:\"\";s:24:\"theme-button-color-group\";s:0:\"\";s:25:\"theme-button-border-group\";s:0:\"\";s:12:\"button-color\";s:0:\"\";s:14:\"button-h-color\";s:0:\"\";s:15:\"button-bg-color\";s:0:\"\";s:17:\"button-bg-h-color\";s:0:\"\";s:16:\"button-v-padding\";i:10;s:16:\"button-h-padding\";i:40;s:13:\"button-radius\";i:2;s:35:\"primary-header-button-color-divider\";s:0:\"\";s:33:\"primary-header-button-color-group\";s:0:\"\";s:34:\"primary-header-button-border-group\";s:0:\"\";s:40:\"header-main-rt-section-button-text-color\";s:0:\"\";s:42:\"header-main-rt-section-button-text-h-color\";s:0:\"\";s:40:\"header-main-rt-section-button-back-color\";s:0:\"\";s:42:\"header-main-rt-section-button-back-h-color\";s:0:\"\";s:37:\"header-main-rt-section-button-padding\";a:3:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}}s:41:\"header-main-rt-section-button-border-size\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:42:\"header-main-rt-section-button-border-color\";s:0:\"\";s:44:\"header-main-rt-section-button-border-h-color\";s:0:\"\";s:43:\"header-main-rt-section-button-border-radius\";s:0:\"\";s:39:\"transparent-header-button-color-divider\";s:0:\"\";s:37:\"transparent-header-button-color-group\";s:0:\"\";s:38:\"transparent-header-button-border-group\";s:0:\"\";s:46:\"header-main-rt-trans-section-button-text-color\";s:0:\"\";s:48:\"header-main-rt-trans-section-button-text-h-color\";s:0:\"\";s:46:\"header-main-rt-trans-section-button-back-color\";s:0:\"\";s:48:\"header-main-rt-trans-section-button-back-h-color\";s:0:\"\";s:43:\"header-main-rt-trans-section-button-padding\";s:0:\"\";s:47:\"header-main-rt-trans-section-button-border-size\";s:0:\"\";s:48:\"header-main-rt-trans-section-button-border-color\";s:0:\"\";s:50:\"header-main-rt-trans-section-button-border-h-color\";s:0:\"\";s:49:\"header-main-rt-trans-section-button-border-radius\";s:0:\"\";s:18:\"site-content-width\";i:1200;s:14:\"header-layouts\";s:20:\"header-main-layout-1\";s:24:\"header-main-layout-width\";s:7:\"content\";s:15:\"header-main-sep\";i:1;s:21:\"header-main-sep-color\";s:0:\"\";s:19:\"disable-primary-nav\";b:0;s:22:\"header-main-rt-section\";s:4:\"none\";s:34:\"header-main-rt-section-button-text\";s:6:\"Button\";s:34:\"header-main-rt-section-button-link\";s:23:\"https://www.wpastra.com\";s:35:\"header-main-rt-section-button-style\";s:12:\"theme-button\";s:24:\"header-button-style-link\";s:0:\"\";s:27:\"header-main-rt-section-html\";s:27:\"<button>Contact Us</button>\";s:39:\"header-main-submenu-container-animation\";s:4:\"fade\";s:22:\"primary-submenu-border\";a:4:{s:3:\"top\";s:1:\"2\";s:5:\"right\";s:1:\"0\";s:6:\"bottom\";s:1:\"0\";s:4:\"left\";s:1:\"0\";}s:23:\"primary-submenu-b-color\";s:0:\"\";s:27:\"primary-submenu-item-border\";b:0;s:28:\"primary-submenu-item-b-color\";s:0:\"\";s:30:\"header-main-menu-label-divider\";s:0:\"\";s:22:\"header-main-menu-align\";s:6:\"inline\";s:23:\"hide-custom-menu-mobile\";i:1;s:27:\"header-display-outside-menu\";b:0;s:24:\"mobile-header-breakpoint\";s:0:\"\";s:27:\"mobile-header-toggle-target\";s:4:\"icon\";s:39:\"mobile-header-toggle-target-link-notice\";s:0:\"\";s:22:\"header-main-menu-label\";s:0:\"\";s:30:\"mobile-header-toggle-btn-style\";s:7:\"minimal\";s:36:\"mobile-header-toggle-btn-style-color\";s:0:\"\";s:38:\"mobile-header-toggle-btn-border-radius\";s:0:\"\";s:34:\"mobile-header-more-feature-divider\";s:0:\"\";s:38:\"mobile-header-more-feature-description\";s:0:\"\";s:34:\"divider-section-site-identity-logo\";s:0:\"\";s:21:\"different-retina-logo\";b:0;s:22:\"ast-header-retina-logo\";s:0:\"\";s:21:\"different-mobile-logo\";b:0;s:18:\"mobile-header-logo\";s:0:\"\";s:32:\"ast-header-responsive-logo-width\";a:3:{s:7:\"desktop\";s:3:\"400\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:21:\"ast-site-logo-divider\";s:0:\"\";s:18:\"display-site-title\";b:0;s:20:\"display-site-tagline\";i:0;s:17:\"logo-title-inline\";i:1;s:21:\"ast-site-icon-divider\";s:0:\"\";s:21:\"site-title-typography\";s:0:\"\";s:22:\"ast-site-title-divider\";s:0:\"\";s:23:\"site-tagline-typography\";s:0:\"\";s:30:\"ast-styling-section-blog-width\";s:0:\"\";s:10:\"blog-width\";s:7:\"default\";s:14:\"blog-max-width\";i:1200;s:34:\"ast-styling-section-blog-width-end\";s:0:\"\";s:17:\"blog-post-content\";s:7:\"excerpt\";s:19:\"blog-post-structure\";a:2:{i:0;s:5:\"image\";i:1;s:10:\"title-meta\";}s:9:\"blog-meta\";a:3:{i:0;s:8:\"comments\";i:1;s:8:\"category\";i:2;s:6:\"author\";}s:17:\"blog-single-width\";s:7:\"default\";s:21:\"blog-single-max-width\";i:1200;s:37:\"ast-styling-section-blog-single-width\";s:0:\"\";s:26:\"blog-single-post-structure\";a:2:{i:0;s:12:\"single-image\";i:1;s:17:\"single-title-meta\";}s:16:\"blog-single-meta\";a:3:{i:0;s:8:\"comments\";i:1;s:8:\"category\";i:2;s:6:\"author\";}s:39:\"ast-styling-section-single-blog-layouts\";s:0:\"\";s:19:\"site-sidebar-layout\";s:13:\"right-sidebar\";s:34:\"single-page-sidebar-layout-divider\";s:0:\"\";s:26:\"single-page-sidebar-layout\";s:7:\"default\";s:26:\"single-post-sidebar-layout\";s:7:\"default\";s:27:\"archive-post-sidebar-layout\";s:7:\"default\";s:29:\"divider-section-sidebar-width\";s:0:\"\";s:18:\"site-sidebar-width\";i:30;s:30:\"site-sidebar-width-description\";s:0:\"\";s:27:\"site-content-layout-divider\";s:0:\"\";s:19:\"site-content-layout\";s:23:\"content-boxed-container\";s:26:\"single-page-content-layout\";s:7:\"default\";s:26:\"single-post-content-layout\";s:7:\"default\";s:27:\"archive-post-content-layout\";s:7:\"default\";s:26:\"site-layout-outside-bg-obj\";a:6:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";}s:34:\"ast-container-more-feature-divider\";s:23:\"content-boxed-container\";s:38:\"ast-container-more-feature-description\";s:0:\"\";s:17:\"footer-sml-layout\";s:19:\"footer-sml-layout-1\";s:36:\"section-ast-small-footer-layout-info\";s:0:\"\";s:20:\"footer-sml-section-1\";s:6:\"custom\";s:27:\"footer-sml-section-1-credit\";s:72:\"Copyright &copy; [current_year] [site_title] | Powered by [theme_author]\";s:20:\"footer-sml-section-2\";s:0:\"\";s:27:\"footer-sml-section-2-credit\";s:72:\"Copyright &copy; [current_year] [site_title] | Powered by [theme_author]\";s:35:\"section-ast-small-footer-typography\";s:0:\"\";s:18:\"footer-sml-divider\";i:1;s:24:\"footer-sml-divider-color\";s:7:\"#7a7a7a\";s:43:\"footer-bar-color-background-heading-divider\";s:0:\"\";s:27:\"footer-bar-background-group\";s:0:\"\";s:24:\"footer-bar-content-group\";s:0:\"\";s:19:\"footer-layout-width\";s:7:\"content\";s:10:\"footer-adv\";s:8:\"disabled\";s:23:\"footer-adv-border-width\";s:0:\"\";s:23:\"footer-adv-border-color\";s:7:\"#7a7a7a\";s:38:\"ast-footer-widget-more-feature-divider\";s:0:\"\";s:42:\"ast-footer-widget-more-feature-description\";s:0:\"\";s:10:\"text-color\";s:7:\"#16161d\";s:11:\"theme-color\";s:7:\"#0274be\";s:10:\"link-color\";s:7:\"#16161d\";s:12:\"link-h-color\";s:7:\"#ee7624\";s:24:\"divider-outside-bg-color\";s:0:\"\";s:12:\"footer-color\";s:0:\"\";s:17:\"footer-link-color\";s:0:\"\";s:19:\"footer-link-h-color\";s:0:\"\";s:13:\"footer-bg-obj\";a:6:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";}s:46:\"footer-widget-color-background-heading-divider\";s:0:\"\";s:30:\"footer-widget-background-group\";s:0:\"\";s:27:\"footer-widget-content-group\";s:0:\"\";s:26:\"footer-adv-wgt-title-color\";s:0:\"\";s:21:\"footer-adv-text-color\";s:0:\"\";s:21:\"footer-adv-link-color\";s:0:\"\";s:23:\"footer-adv-link-h-color\";s:0:\"\";s:17:\"footer-adv-bg-obj\";a:6:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";}s:23:\"blog-typography-divider\";s:0:\"\";s:33:\"blog-content-archive-summary-typo\";s:0:\"\";s:33:\"blog-content-blog-post-title-typo\";s:0:\"\";s:20:\"font-size-page-title\";a:6:{s:7:\"desktop\";i:40;s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:31:\"font-size-archive-summary-title\";a:6:{s:7:\"desktop\";i:40;s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:40:\"ast-blog-typography-more-feature-divider\";s:0:\"\";s:44:\"ast-blog-typography-more-feature-description\";s:0:\"\";s:17:\"divider-base-typo\";s:0:\"\";s:16:\"body-font-family\";s:32:\"\'Omnes-Pro\',omnes-pro,sans-serif\";s:17:\"body-font-variant\";s:0:\"\";s:16:\"body-font-weight\";s:3:\"400\";s:19:\"body-text-transform\";s:4:\"none\";s:14:\"font-size-body\";a:6:{s:7:\"desktop\";s:2:\"14\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:16:\"body-line-height\";s:0:\"\";s:18:\"para-margin-bottom\";s:0:\"\";s:21:\"divider-headings-typo\";s:0:\"\";s:20:\"headings-font-family\";s:38:\"\'Proxima-Nova\',proxima-nova,sans-serif\";s:21:\"headings-font-variant\";s:0:\"\";s:20:\"headings-font-weight\";s:3:\"600\";s:23:\"headings-text-transform\";s:4:\"none\";s:18:\"divider-section-h1\";s:0:\"\";s:12:\"font-size-h1\";a:6:{s:7:\"desktop\";s:2:\"28\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:18:\"divider-section-h2\";s:0:\"\";s:12:\"font-size-h2\";a:6:{s:7:\"desktop\";s:2:\"22\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:18:\"divider-section-h3\";s:0:\"\";s:12:\"font-size-h3\";a:6:{s:7:\"desktop\";s:2:\"17\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:18:\"divider-section-h4\";s:0:\"\";s:12:\"font-size-h4\";a:6:{s:7:\"desktop\";i:20;s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:18:\"divider-section-h5\";s:0:\"\";s:12:\"font-size-h5\";a:6:{s:7:\"desktop\";i:18;s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:18:\"divider-section-h6\";s:0:\"\";s:12:\"font-size-h6\";a:6:{s:7:\"desktop\";i:15;s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:43:\"ast-content-typography-more-feature-divider\";s:0:\"\";s:47:\"ast-content-typography-more-feature-description\";s:0:\"\";s:20:\"font-size-site-title\";a:6:{s:7:\"desktop\";i:35;s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:22:\"font-size-site-tagline\";a:6:{s:7:\"desktop\";i:15;s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:42:\"ast-header-typography-more-feature-divider\";s:0:\"\";s:46:\"ast-header-typography-more-feature-description\";s:0:\"\";s:32:\"divider-section-single-post-typo\";s:0:\"\";s:22:\"blog-single-title-typo\";s:0:\"\";s:21:\"font-size-entry-title\";a:6:{s:7:\"desktop\";i:30;s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:46:\"ast-sngle-blog-typography-more-feature-divider\";s:0:\"\";s:50:\"ast-sngle-blog-typography-more-feature-description\";s:0:\"\";s:38:\"transparent-header-bg-color-responsive\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:46:\"transparent-header-color-site-title-responsive\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:48:\"transparent-header-color-h-site-title-responsive\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:33:\"transparent-menu-color-responsive\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:36:\"transparent-menu-bg-color-responsive\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:35:\"transparent-menu-h-color-responsive\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:36:\"transparent-submenu-color-responsive\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:39:\"transparent-submenu-bg-color-responsive\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:38:\"transparent-submenu-h-color-responsive\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:49:\"transparent-content-section-text-color-responsive\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:49:\"transparent-content-section-link-color-responsive\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:51:\"transparent-content-section-link-h-color-responsive\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:25:\"transparent-header-enable\";i:0;s:34:\"transparent-header-disable-archive\";i:1;s:32:\"transparent-header-disable-index\";s:0:\"\";s:45:\"transparent-header-disable-latest-posts-index\";i:1;s:31:\"transparent-header-disable-page\";s:0:\"\";s:32:\"transparent-header-disable-posts\";s:0:\"\";s:35:\"divider-section-transparent-display\";s:0:\"\";s:29:\"transparent-header-on-devices\";s:4:\"both\";s:35:\"divider-section-transparent-styling\";s:0:\"\";s:26:\"different-transparent-logo\";i:0;s:23:\"transparent-header-logo\";s:0:\"\";s:33:\"different-transparent-retina-logo\";b:0;s:30:\"transparent-header-retina-logo\";s:0:\"\";s:29:\"transparent-header-logo-width\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:42:\"divider-section-transparent-border-styling\";s:0:\"\";s:27:\"transparent-header-main-sep\";i:0;s:33:\"transparent-header-main-sep-color\";s:0:\"\";s:31:\"divider-sec-transparent-styling\";s:0:\"\";s:36:\"transparent-header-background-colors\";s:0:\"\";s:25:\"transparent-header-colors\";s:0:\"\";s:30:\"transparent-header-colors-menu\";s:0:\"\";s:33:\"transparent-header-colors-submenu\";s:0:\"\";s:33:\"transparent-header-colors-content\";s:0:\"\";s:19:\"breadcrumb-position\";s:4:\"none\";s:24:\"select-breadcrumb-source\";s:7:\"default\";s:20:\"breadcrumb-separator\";s:2:\"»\";s:28:\"breadcrumb-disable-home-page\";s:0:\"\";s:34:\"breadcrumb-disable-blog-posts-page\";s:0:\"\";s:25:\"breadcrumb-disable-search\";s:0:\"\";s:26:\"breadcrumb-disable-archive\";s:0:\"\";s:30:\"breadcrumb-disable-single-page\";s:0:\"\";s:30:\"breadcrumb-disable-single-post\";s:0:\"\";s:27:\"breadcrumb-disable-singular\";s:0:\"\";s:27:\"breadcrumb-disable-404-page\";s:0:\"\";s:20:\"breadcrumb-alignment\";s:4:\"left\";s:18:\"breadcrumb-spacing\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:32:\"section-breadcrumb-color-divider\";s:0:\"\";s:24:\"section-breadcrumb-color\";s:0:\"\";s:19:\"breadcrumb-bg-color\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:34:\"breadcrumb-active-color-responsive\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:32:\"breadcrumb-text-color-responsive\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:33:\"breadcrumb-hover-color-responsive\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:26:\"breadcrumb-separator-color\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:37:\"section-breadcrumb-typography-divider\";s:0:\"\";s:23:\"section-breadcrumb-typo\";s:0:\"\";s:22:\"breadcrumb-font-family\";s:7:\"inherit\";s:20:\"breadcrumb-font-size\";s:0:\"\";s:22:\"breadcrumb-font-weight\";s:7:\"inherit\";s:25:\"breadcrumb-text-transform\";s:0:\"\";s:22:\"breadcrumb-line-height\";s:0:\"\";s:33:\"_astra_pb_compatibility_completed\";b:1;}','yes'),(339,'_transient_timeout_astra-theme-first-rating','1570494131','no'),(340,'_transient_astra-theme-first-rating','1','no'),(341,'astra-theme-old-setup','1','yes'),(369,'elementor_pro_version','2.6.5','yes');
/*!40000 ALTER TABLE `wp_options` ENABLE KEYS */;
UNLOCK TABLES;

-- Dumped table `wp_options` with 251 row(s)
--

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

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

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

LOCK TABLES `wp_postmeta` WRITE;
/*!40000 ALTER TABLE `wp_postmeta` DISABLE KEYS */;
INSERT INTO `wp_postmeta` VALUES (1,2,'_wp_page_template','default'),(2,3,'_wp_page_template','default'),(3,5,'_edit_lock','1569392098:1'),(4,5,'_edit_last','1'),(5,5,'site-sidebar-layout','no-sidebar'),(6,5,'site-content-layout','page-builder'),(7,5,'theme-transparent-header-meta','default'),(19,7,'_edit_lock','1567989855:1'),(9,5,'_elementor_template_type','post'),(10,5,'_elementor_version','2.6.8'),(11,5,'_elementor_pro_version','2.6.5'),(12,5,'_astra_content_layout_flag','disabled'),(13,5,'site-post-title','disabled'),(14,5,'ast-title-bar-display','disabled'),(15,5,'ast-featured-img','disabled'),(16,5,'_wp_page_template','default'),(17,5,'_elementor_data','[{\"id\":\"55396f27\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":50,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Theatrical_Display_V003C.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"motion_fx_range\":\"viewport\",\"layout\":\"full_width\",\"column_position\":\"top\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"_title\":\"Section - INSIDIOUS HERO\",\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"background_motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_range\":\"viewport\"},\"elements\":[{\"id\":\"905a97c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ad7f3f6\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"162\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2489c07\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"c0bbe21\",\"elType\":\"widget\",\"settings\":{\"title\":\"#WHAT\'S COOL\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"dc881ae\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"18630a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"870a9ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"INNOVATIONS FROM ONDISPLAY CREATIVE\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7df48509\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"_title\":\"Section - LIVING STANDEES\"},\"elements\":[{\"id\":\"1147078d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"23bbc68\",\"elType\":\"widget\",\"settings\":{\"title\":\"LIVING STANDEES HAUNTING THEATERS\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b40d155\",\"elType\":\"widget\",\"settings\":{\"title\":\"ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"700\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86cff8b\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"225341d\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS \\u2013 THE LAST KEY\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a680ae8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"be59fa3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e36fe5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"d4d2039\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2.jpg\",\"id\":88},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3c9b758\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"79e122a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2-1.jpg\",\"id\":87},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3dc9df5\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"start\":0},\"elements\":[],\"widgetType\":\"video\"},{\"id\":\"b61a90b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"8f63560\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"08c588a\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS CHAPTER 3\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0e612c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>OnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7e77f5a\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"gap\":\"wide\"},\"elements\":[{\"id\":\"7eb5a21\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.332},\"elements\":[{\"id\":\"ae25867\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/image-asset.jpeg\",\"id\":196},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"24c773b\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":58},\"elements\":[{\"id\":\"93ad602\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/130807026\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"cb5dad6\",\"elType\":\"section\",\"settings\":{\"_title\":\"Inner Sedtion\"},\"elements\":[{\"id\":\"25cd114\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_title\":\"virtual reality experience\"},\"elements\":[{\"id\":\"15643ab\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"8ec2d0f\",\"elType\":\"widget\",\"settings\":{\"title\":\"VIRTUAL REALITY EXPERIENCE\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4e004ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"SPIDER-MAN HOMECOMING DISPLAY\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"73a2406\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Submerse yourself in the world of your friendly neighborhood Spider-Man in this fun and thrilling VR Theatrical Display.\\u00a0\\u00a0Based on the all-new 2017 film, the Spider-Man Homecoming VR Experience is a first-person look through the eyes of Spidey himself.<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"04b03b4\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7f4ffcc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"7f85dc5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":76,\"_title\":\"spiderman homecoming\"},\"elements\":[{\"id\":\"9a5a392\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Spidey_Home_V4_002.jpg\",\"id\":230},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"css_filters_css_filter\":\"custom\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"c16541a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":24,\"_title\":\"spiderman 2 vertical pics\"},\"elements\":[{\"id\":\"95b0eed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/IMG_3834.jpg\",\"id\":231},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8ea51a8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/IMG_3788.jpg\",\"id\":233}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"12d34c8\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"00\",\"bottom\":\"00\",\"left\":\"00\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"95003e6\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":435,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/TheStrangers_V01.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":4.9,\"sizes\":[]},\"layout\":\"full_width\",\"column_position\":\"top\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":68}},\"_title\":\"Section - STRANGERS HERO\",\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_translateY_direction\":\"negative\",\"background_xpos\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"background_motion_fx_range\":\"viewport\"},\"elements\":[{\"id\":\"b6deb1a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_title\":\"strangers prey at night\"},\"elements\":[{\"id\":\"7a350ee\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"70\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"ecd0cbe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"d684039\",\"elType\":\"widget\",\"settings\":{\"title\":\"THE STRANGERS PREY AT NIGHT\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"003eb99\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5fd9452\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"93ad64e\",\"elType\":\"widget\",\"settings\":{\"title\":\"GRAND FORMAT PHOTO-OP STANDEE\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"247aafb\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"_title\":\"Section - MARKETING AT ITS FINEST\"},\"elements\":[{\"id\":\"f002e93\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"d1321ed\",\"elType\":\"widget\",\"settings\":{\"title\":\"MARKETING AT ITS FINEST, TAILORED FOR SOCIAL MEDIA\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a16ef4e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>This theatrical display allows fans to take photos with Dollface, Pin-up Girl, the Man in the Mask and share their photos on social media.<\\/p>\",\"align\":\"center\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b58ab88\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"00ca412\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58},\"elements\":[{\"id\":\"032d3df\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/003.jpg\",\"id\":446},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"672c1f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42},\"elements\":[{\"id\":\"623f6d1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/26222472_170774200201231_6120473304701599744_n.jpg\",\"id\":447},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a641f07\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/VIDEO_COMING_SOON_01.jpg\",\"id\":449}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cf9e008\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"677b52c\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"31ae5e7\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":515,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/FREEBIRDS_V1B.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":4.9,\"sizes\":[]},\"layout\":\"full_width\",\"column_position\":\"top\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":68}},\"_title\":\"Section - THEATRICAL HERO\",\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_translateY_direction\":\"negative\",\"background_xpos\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"background_motion_fx_range\":\"viewport\"},\"elements\":[{\"id\":\"e45e9b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_title\":\"free birds\"},\"elements\":[{\"id\":\"68717d0\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"70\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"144d01b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"27b94bb\",\"elType\":\"widget\",\"settings\":{\"title\":\"THEATRICAL DISPLAYS\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"672b55e\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"16fbcce\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"ab6e6b7\",\"elType\":\"widget\",\"settings\":{\"title\":\"FREE BIRDS \\u2013 RESIN DISPLAY\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"42b76c7\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"_title\":\"Section - THEATRICAL DISPLAYS\"},\"elements\":[{\"id\":\"9fef846\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"9e16c55\",\"elType\":\"widget\",\"settings\":{\"title\":\"THEATRICAL DISPLAYS\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4a9d8d2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>OnDisplay Creative takes pride in its long history of leading the Entertainment Industry in creating and producing eye catching displays.<\\/p>\",\"align\":\"center\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"263fb63\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"42ecb50\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":69,\"_title\":\"spiderman homecoming\"},\"elements\":[{\"id\":\"fbd93cf\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/47Meters_02_cropped.jpg.jpg\",\"id\":549},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"align\":\"center\",\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2a3ff66\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":31,\"_title\":\"spiderman 2 vertical pics\"},\"elements\":[{\"id\":\"afb6c5e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/DFCV6gdXgAAoGDM.jpeg\",\"id\":520},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ad92bda\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/DEI2HYnW0AEERBl.jpeg\",\"id\":519}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"946f91d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"slideshow\",\"slides\":[{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Spidey_Home_V3.jpg\",\"id\":521},\"_id\":\"fb38f36\",\"type\":\"image\",\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/WarRoom_V1_002.jpg\",\"id\":524},\"_id\":\"a26cba3\",\"type\":\"image\",\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Mada3_01A_002.jpg\",\"id\":525},\"_id\":\"c815938\",\"type\":\"image\",\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/LOOZ_Standee_InTheater_2.jpg\",\"id\":526},\"_id\":\"4e65d42\",\"type\":\"image\",\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Thor-2.jpg\",\"id\":527},\"_id\":\"03a5179\",\"type\":\"image\",\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Echo_01A.jpg\",\"id\":528},\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"3604fe3\"},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Spidey_Home_V4_002-1.jpg\",\"id\":529},\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"f621837\"},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Hurricane-H_V1.jpg\",\"id\":530},\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"9f1174a\"},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Friend_Request.jpg\",\"id\":531},\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"2bec012\"},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/TheStrangers_V02_002.jpg\",\"id\":532},\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"8342d3b\"},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Kidnap2.jpg\",\"id\":533},\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"5ae447b\"},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/RfNight_01A_002.jpg\",\"id\":535},\"image_link_to_type\":\"file\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"56c21c6\"},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/AllSaints2_002.jpg\",\"id\":536},\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"dca9a78\"}],\"slideshow_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"slideshow_slides_per_view\":\"6\",\"thumbs_ratio\":\"43\",\"centered_slides\":\"yes\",\"autoplay_speed\":100},\"elements\":[],\"widgetType\":\"media-carousel\"},{\"id\":\"6bf6bab\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"d0a8d7e\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b45b58e\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":542,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Pets_HomeEnt_FrntP.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":4.9,\"sizes\":[]},\"layout\":\"full_width\",\"column_position\":\"top\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":68}},\"_title\":\"Section - HOME ENT HERO\",\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_translateY_direction\":\"negative\",\"background_xpos\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"background_motion_fx_range\":\"viewport\"},\"elements\":[{\"id\":\"b6af657\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_title\":\"secret life of pets\"},\"elements\":[{\"id\":\"8065946\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"70\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"121e9ec\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"3e5b110\",\"elType\":\"widget\",\"settings\":{\"title\":\"HOME ENTERTAINMENT\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"c4a68e0\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"0e38833\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"3f83c61\",\"elType\":\"widget\",\"settings\":{\"title\":\"THE SECRET LIFE OF PETS\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f43ab31\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"_title\":\"Section - HOME ENTERTAINMENT\"},\"elements\":[{\"id\":\"4398224\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"bd762d2\",\"elType\":\"widget\",\"settings\":{\"title\":\"HOME ENTERTAINMENT\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d49b5e2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>OnDisplay Creative works extensively with many major studios to provide the most effective marketing and merchandising materials. We have a vast understanding of the creative and production needs unique to the Entertainment Industry.<\\/p>\",\"align\":\"center\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f998468\",\"elType\":\"widget\",\"settings\":{\"skin\":\"slideshow\",\"slides\":[{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/SING-WOW_01.jpg\",\"id\":558},\"_id\":\"5601e8a\",\"type\":\"image\",\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/PETS_WOW_02.jpg\",\"id\":556},\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"cf0a445\"},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/BOURNE-WM-HC_01.jpg\",\"id\":555},\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"db277a6\"},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/XMEN_APOC-1.jpg\",\"id\":561},\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"8ee8473\"},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Barbie_01.jpg\",\"id\":554},\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"5e15e1d\"},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/PREPACKS_02.jpg\",\"id\":557},\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"76684ed\"}],\"slideshow_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"slideshow_slides_per_view\":\"6\",\"thumbs_ratio\":\"43\",\"centered_slides\":\"yes\",\"autoplay_speed\":100},\"elements\":[],\"widgetType\":\"media-carousel\"},{\"id\":\"db06005\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"926e5d0\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"81a9415\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":564,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Summer_1.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":4.9,\"sizes\":[]},\"layout\":\"full_width\",\"column_position\":\"top\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":68}},\"_title\":\"Section - RETAIL HERO\",\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_translateY_direction\":\"negative\",\"background_xpos\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"background_motion_fx_range\":\"viewport\"},\"elements\":[{\"id\":\"db3fd34\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_title\":\"old navy summer\"},\"elements\":[{\"id\":\"e57b2ef\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"70\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"6ba3ffc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"ed64037\",\"elType\":\"widget\",\"settings\":{\"title\":\"RETAIL\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9ea645d\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f6d6d26\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"46aa82e\",\"elType\":\"widget\",\"settings\":{\"title\":\"SUMMER SALE EVENT - OLD NAVY\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e636f9f\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"_title\":\"Section - RETAIL\"},\"elements\":[{\"id\":\"186370d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"c41c583\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"34456bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"c34d439\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/SUMMER_2_cropped.jpg\",\"id\":576}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"f0450d4\",\"elType\":\"widget\",\"settings\":{\"title\":\"SURF BOARD\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4feec62\",\"elType\":\"widget\",\"settings\":{\"title\":\"SWAPPABLE POSTER\",\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ddf5cb6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>This Semi-Permanent display had interchangeable graphics to promote sale items throughout the Summer campaign.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7d3c615\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"fc91cd2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Hodilay_1_cropped.jpg\",\"id\":575}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6c579e0\",\"elType\":\"widget\",\"settings\":{\"title\":\"HOLIDAY STAGE\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.4,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"775b69e\",\"elType\":\"widget\",\"settings\":{\"title\":\"STAGE CHANGE OUTS\",\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e7eb55b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Multiple items were produced and displayed on this large storefront extravaganza.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"d204c46\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"82f943c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/image-asset-1.jpeg\",\"id\":577}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"414b4e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"LOVE GAP\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.4,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4bde818\",\"elType\":\"widget\",\"settings\":{\"title\":\"QUALITY PROTOTYPING\",\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"eac7069\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>OnDisplay Creative is very adept in incorporating a variety of substrates to provide captivating Point-of-Purchase displays. <\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bc8a262\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":582,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Sony_Touch_Wall_2.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":4.9,\"sizes\":[]},\"layout\":\"full_width\",\"column_position\":\"top\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":68}},\"_title\":\"Section - TOUCH SCREEN HERO\",\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_translateY_direction\":\"negative\",\"background_xpos\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"background_motion_fx_range\":\"viewport\"},\"elements\":[{\"id\":\"d0168aa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_title\":\"old navy summer\"},\"elements\":[{\"id\":\"de8c44a\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"70\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"f89f9af\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"b2e386a\",\"elType\":\"widget\",\"settings\":{\"title\":\"TOUCH SCREEN DISPLAYS\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3518e1e\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"be83ec9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"1010fec\",\"elType\":\"widget\",\"settings\":{\"title\":\"CINE EUROPE \\u2013 BARCELONA\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cb88024\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"_title\":\"Section - INTERACTIVE TOUCH SCREEN\"},\"elements\":[{\"id\":\"bab84f9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"8c86956\",\"elType\":\"widget\",\"settings\":{\"title\":\"INTERACTIVE TOUCH SCREEN DISPLAYS\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2fe4ed1\",\"elType\":\"widget\",\"settings\":{\"title\":\"ONDISPLAY CREATIVE HELPS GIVE SONY PICTURES A GREAT PRESENCE AT INDUSTRY CONVENTIONS WORLD WIDE.\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"700\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6850c22\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>When Sony Pictures needed to incorporate permanent fixture visibility with cutting edge A\\/V technology, they turned to OnDisplay Creative. Creating a cost effective, customized and interactive touchscreen display allowed customers an innovative alternative to traditional in-theater displays. The technology used, grants clients the ability to present pictures, videos and information in a fun, attractive way drawing attention to the brand. The monitors can be placed into any display environment (corrugate or permanent)\\u00a0which can be designed, built, and installed by OnDisplay Creative or supplied by the client.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"518c3db\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"b1c8549\",\"elType\":\"widget\",\"settings\":{\"title\":\"COMIC-CON - SAN DIEGO\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c9ee71e\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"1468158\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4338955\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/TOUCH_MASK_01C.jpg\",\"id\":586},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a0896bb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Comic-Con is a multigenre entertainment and comic convention held annually in San Diego, California. It\'s the largest convention of its kind in the world with over 130,000 attendees. It\'s dedicated to creating awareness of comics and related popular art forms that celebrate the historic and ongoing contribution to art and culture.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ed79e3c\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"0d180a6\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3ed8fca\",\"elType\":\"widget\",\"settings\":{\"title\":\"CINEMA-CON - LAS VEGAS\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"806aebf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>OnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f1da6bb\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"gap\":\"wide\"},\"elements\":[{\"id\":\"99ce817\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.332},\"elements\":[{\"id\":\"8c8d7a2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/spidey_touchscreen_02.jpg\",\"id\":587},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3176bec\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":58},\"elements\":[{\"id\":\"f272736\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Since its inception in 2011, CinemaCon, the Official convention of NATO (The National Association of Theatre Owners) has become the most important gathering of cinema owners and operators from around the world representing more than 31,000 movie screens in all 50 states, and additional cinemas in 80 countries worldwide.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"aeac881\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/102278147\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6062ccb\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":591,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/HD_Render_02D.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":4.9,\"sizes\":[]},\"layout\":\"full_width\",\"column_position\":\"top\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":68}},\"_title\":\"Section - WHO WE ARE HERO\",\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_translateY_direction\":\"negative\",\"background_xpos\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"background_motion_fx_range\":\"viewport\"},\"elements\":[{\"id\":\"958038f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_title\":\"odc logo\"},\"elements\":[{\"id\":\"ee14024\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"70\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"dac2286\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"91a26cc\",\"elType\":\"widget\",\"settings\":{\"title\":\"TOUCH SCREEN DISPLAYS\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"02ca6fe\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"0daa12d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"00f83d2\",\"elType\":\"widget\",\"settings\":{\"title\":\"CINE EUROPE \\u2013 BARCELONA\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b747fda\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":700},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":900},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"_title\":\"our company bitches\"},\"elements\":[{\"id\":\"7eab781\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"43661634\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our company is a collective of amazing people striving to build delightful products.\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.4},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70cc6d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.<\\/p>\",\"align\":\"center\",\"text_color\":\"#686868\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"615dfb3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1000},\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"6414755f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3bb26eed\",\"elType\":\"widget\",\"settings\":{\"text\":\"Read More\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3},\"button_text_color\":\"#ffffff\",\"background_color\":\"rgba(0,0,0,0)\",\"hover_color\":\"#00ce1b\",\"button_hover_border_color\":\"#00ce1b\",\"hover_animation\":\"grow\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"123f6d1\",\"elType\":\"section\",\"settings\":{\"_title\":\"blank at bottom\"},\"elements\":[{\"id\":\"25fcf2e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"64f593f\",\"elType\":\"section\",\"settings\":{\"_title\":\"blank at bottom\"},\"elements\":[{\"id\":\"596f429\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(67,18,'_wp_attached_file','2019/09/a.png'),(68,18,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:780;s:6:\"height\";i:79;s:4:\"file\";s:13:\"2019/09/a.png\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:12:\"a-150x79.png\";s:5:\"width\";i:150;s:6:\"height\";i:79;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:12:\"a-300x30.png\";s:5:\"width\";i:300;s:6:\"height\";i:30;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:12:\"a-768x78.png\";s:5:\"width\";i:768;s:6:\"height\";i:78;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"ast-logo-size\";a:4:{s:4:\"file\";s:12:\"a-400x41.png\";s:5:\"width\";i:400;s:6:\"height\";i:41;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"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,7,'_edit_last','1'),(21,7,'site-sidebar-layout','no-sidebar'),(22,7,'site-content-layout','default'),(23,7,'theme-transparent-header-meta','default'),(24,9,'_edit_lock','1567990013:1'),(25,9,'_edit_last','1'),(26,9,'site-sidebar-layout','no-sidebar'),(27,9,'site-content-layout','default'),(28,9,'theme-transparent-header-meta','default'),(29,12,'_menu_item_type','post_type'),(30,12,'_menu_item_menu_item_parent','0'),(31,12,'_menu_item_object_id','9'),(32,12,'_menu_item_object','page'),(33,12,'_menu_item_target',''),(34,12,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(35,12,'_menu_item_xfn',''),(36,12,'_menu_item_url',''),(38,13,'_menu_item_type','post_type'),(39,13,'_menu_item_menu_item_parent','0'),(40,13,'_menu_item_object_id','7'),(41,13,'_menu_item_object','page'),(42,13,'_menu_item_target',''),(43,13,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(44,13,'_menu_item_xfn',''),(45,13,'_menu_item_url',''),(47,14,'_menu_item_type','post_type'),(48,14,'_menu_item_menu_item_parent','0'),(49,14,'_menu_item_object_id','5'),(50,14,'_menu_item_object','page'),(51,14,'_menu_item_target',''),(52,14,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(53,14,'_menu_item_xfn',''),(54,14,'_menu_item_url',''),(56,16,'_edit_lock','1567990158:1'),(57,16,'_wp_trash_meta_status','publish'),(58,16,'_wp_trash_meta_time','1567990174'),(59,5,'_elementor_edit_mode','builder'),(77,22,'_elementor_version','2.6.8'),(78,22,'_elementor_pro_version','2.6.5'),(79,22,'_wp_page_template','default'),(80,22,'_elementor_data','[{\"id\":\"a7e3dae\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"7fa2a53\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6646540\",\"elType\":\"widget\",\"settings\":{\"menu\":\"main-menu\",\"align_items\":\"right\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0b3f83d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"936b33f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"b5e1481\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":false}],\"isInner\":false}]'),(76,22,'_elementor_template_type','post'),(75,5,'_elementor_elements_usage','a:10:{s:7:\"heading\";i:34;s:6:\"column\";i:48;s:7:\"section\";i:40;s:7:\"divider\";i:10;s:11:\"text-editor\";i:14;s:5:\"image\";i:17;s:5:\"video\";i:3;s:6:\"spacer\";i:5;s:14:\"media-carousel\";i:2;s:6:\"button\";i:1;}'),(69,19,'_wp_trash_meta_status','publish'),(70,19,'_wp_trash_meta_time','1567990680'),(71,20,'_wp_trash_meta_status','publish'),(72,20,'_wp_trash_meta_time','1567990702'),(73,21,'_wp_trash_meta_status','publish'),(74,21,'_wp_trash_meta_time','1567990724'),(81,22,'_elementor_edit_mode','builder'),(82,22,'_elementor_elements_usage','a:4:{s:8:\"nav-menu\";i:1;s:6:\"column\";i:2;s:7:\"section\";i:2;s:8:\"template\";i:1;}'),(94,25,'_edit_lock','1568348218:1'),(95,25,'_edit_last','1'),(84,23,'_wp_trash_meta_status','publish'),(85,23,'_wp_trash_meta_time','1567990834'),(196,46,'_elementor_data','[{\"id\":\"644ff33\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"28694df\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1885cb5\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"217194a\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":85},\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"id\":29,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/BG24.png\"},\"background_position\":\"bottom center\",\"background_size\":\"cover\",\"background_overlay_color\":\"rgba(0,0,0,0)\",\"background_overlay_color_b\":\"#ffffff\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":130},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1},\"shape_divider_bottom_color\":\"#151515\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":164},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":24},\"shape_divider_bottom_negative\":\"yes\",\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":67},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\"},\"elements\":[{\"id\":\"1bc63195\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":38.75,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"isInner\":false},{\"id\":\"3d65c192\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":68.346,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"5d5c77f3\",\"elType\":\"widget\",\"settings\":{\"title\":\"wipeOUT<span3><\\/span3>\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":148},\"typography_font_family\":\"Catamaran\",\"typography_font_weight\":\"900\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-5.5},\"_margin\":{\"unit\":\"px\",\"top\":\"330\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":0,\"_background_background\":\"classic\",\"_background_color\":\"rgba(255,255,255,0)\",\"typography_font_style\":\"italic\",\"align_mobile\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":63},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":123},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"600d421c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":28,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Snow.png\"},\"image_size\":\"full\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"-310\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"opacity\":{\"unit\":\"px\",\"size\":0.86},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-130\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-270\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"769e968e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Noise around us has become a bit of a mantra around here. So for 018 we\\u2019ve again applied what we\\u2019ve learnt in the past to push the needle forward in our own unique way!\",\"align\":\"left\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17},\"typography_font_family\":\"Catamaran\",\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5},\"text_shadow_text_shadow\":{\"horizontal\":1,\"vertical\":0,\"blur\":0,\"color\":\"#ffffff\"},\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"240\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"_background_background\":\"gradient\",\"_background_color\":\"rgba(255,255,255,0.81)\",\"_background_color_stop\":{\"unit\":\"%\",\"size\":37},\"_background_color_b\":\"rgba(242,242,242,0)\",\"_background_color_b_stop\":{\"unit\":\"%\",\"size\":67},\"_background_gradient_type\":\"radial\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":false},\"_border_color\":\"#db1529\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"align_mobile\":\"left\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"130\",\"isLinked\":false},\"header_size\":\"p\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6a3ec524\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":670},\"background_background\":\"classic\",\"background_color\":\"#151515\",\"margin\":{\"unit\":\"px\",\"top\":\"1\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"108\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":28,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Snow.png\"},\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.28},\"background_color_b\":\"#1e1e1e\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\"},\"elements\":[{\"id\":\"3fd3371a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"6483af36\",\"elType\":\"widget\",\"settings\":{\"title\":\"featured <span1 style=color:#4b6f93;>resorts<\\/span1>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":54},\"typography_font_family\":\"Catamaran\",\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_font_style\":\"italic\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2.5},\"align\":\"center\",\"title_color\":\"#f9f6ed\",\"_margin\":{\"unit\":\"px\",\"top\":\"140\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":44},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7b4ab6fd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Serving up tips, tricks, guides and inspiration for your next outdoor adventure - we\'ve got you covered.\\n\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17},\"typography_font_family\":\"Catamaran\",\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5},\"text_shadow_text_shadow\":{\"horizontal\":1,\"vertical\":0,\"blur\":0,\"color\":\"#ffffff\"},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"180\",\"bottom\":\"0\",\"left\":\"180\",\"isLinked\":false},\"_background_color\":\"rgba(255,255,255,0.81)\",\"_background_color_stop\":{\"unit\":\"%\",\"size\":37},\"_background_color_b\":\"rgba(242,242,242,0)\",\"_background_color_b_stop\":{\"unit\":\"%\",\"size\":67},\"_background_gradient_type\":\"radial\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":22},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"header_size\":\"p\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"15655030\",\"elType\":\"widget\",\"settings\":{\"slides\":[{\"image\":{\"id\":30,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/johannes-waibel-4298.png\"},\"_id\":\"0h84y07\",\"type\":\"image\",\"image_link_to_type\":\"file\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"image\":{\"id\":31,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/lukas-neasi-65748.png\"},\"_id\":\"7et6fjl\",\"type\":\"image\",\"image_link_to_type\":\"file\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"image\":{\"id\":32,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/markos-mant-228858.png\"},\"_id\":\"wiglfsd\",\"type\":\"image\",\"image_link_to_type\":\"file\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"image\":{\"id\":33,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/mattias-olsson-160612.png\"},\"_id\":\"so3n2jg\",\"type\":\"image\",\"image_link_to_type\":\"file\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"image\":{\"id\":34,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/tomas-kodydek-7492.png\"},\"_id\":\"a2t5cnv\",\"type\":\"image\",\"image_link_to_type\":\"file\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"slides_per_view\":\"3\",\"height\":{\"unit\":\"px\",\"size\":453},\"width\":{\"unit\":\"%\",\"size\":90},\"overlay\":\"icon\",\"space_between\":{\"unit\":\"px\",\"size\":46},\"slide_background_color\":\"#c6c6c6\",\"slide_border_radius\":{\"unit\":\"px\",\"size\":5},\"arrows_size\":{\"unit\":\"px\",\"size\":27},\"arrows_color\":\"#db1529\",\"pagination_size\":{\"unit\":\"px\",\"size\":7},\"pagination_color\":\"#db1529\",\"_margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"overlay_background_color\":\"rgba(255,255,255,0.82)\",\"overlay_color\":\"#db1529\",\"caption_typography_typography\":\"custom\",\"caption_typography_font_size\":{\"unit\":\"px\",\"size\":24},\"caption_typography_font_family\":\"Catamaran\",\"caption_typography_font_weight\":\"500\",\"caption_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.4},\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"space_between_mobile\":{\"unit\":\"px\",\"size\":16},\"caption_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"height_mobile\":{\"unit\":\"px\",\"size\":405},\"width_mobile\":{\"unit\":\"px\",\"size\":267},\"slides_per_view_tablet\":\"2\",\"width_tablet\":{\"unit\":\"px\",\"size\":668},\"space_between_tablet\":{\"unit\":\"px\",\"size\":30},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"media-carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"182c449b\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":607},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":35,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/4.png\"},\"background_position\":\"bottom right\",\"background_size\":\"cover\",\"background_overlay_color\":\"#ffffff\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":66},\"background_overlay_color_b\":\"#ffffff\",\"background_overlay_gradient_type\":\"radial\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.13},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"custom_height_tablet\":{\"unit\":\"px\",\"size\":281},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\"},\"elements\":[{\"id\":\"1d0793f2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":51.667,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true}},\"elements\":[{\"id\":\"578a12d5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secret Season\",\"title_color\":\"#db1529\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":21},\"typography_font_family\":\"Catamaran\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.4},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"400\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1e01a826\",\"elType\":\"widget\",\"settings\":{\"title\":\"Outdoor <span1 style=color:#4b6f93;>skiing<\\/span1> lodge !\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":57},\"typography_font_family\":\"Catamaran\",\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_font_style\":\"italic\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2.5},\"title_color\":\"#151515\",\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":44},\"header_size\":\"h3\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"83ad7b4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Insiders know that spring is the best time to bring your family to Snow Mountain. With unlimited sunshine, great snow conditions, and plenty of family-friendly activities to enjoy at both base areas, spring is the best-kept secret of the season. But hurry...with deals this good they won\'t stay a secret for long!\",\"align\":\"left\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17},\"typography_font_family\":\"Catamaran\",\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.6},\"text_shadow_text_shadow\":{\"horizontal\":1,\"vertical\":0,\"blur\":0,\"color\":\"#ffffff\"},\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_color\":\"rgba(255,255,255,0.81)\",\"_background_color_stop\":{\"unit\":\"%\",\"size\":37},\"_background_color_b\":\"rgba(242,242,242,0)\",\"_background_color_b_stop\":{\"unit\":\"%\",\"size\":67},\"_background_gradient_type\":\"radial\",\"align_mobile\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"header_size\":\"p\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"676fb5c4\",\"elType\":\"widget\",\"settings\":{\"text\":\"read more\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_family\":\"Catamaran\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_font_style\":\"italic\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0},\"background_color\":\"#db1529\",\"hover_animation\":\"grow\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"45\",\"bottom\":\"18\",\"left\":\"45\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"26432cad\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.25},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"3152c2b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#151515\",\"padding\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\"},\"elements\":[{\"id\":\"6fa1fee9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":29.583,\"content_position\":\"center\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#db1529\"},\"elements\":[{\"id\":\"763f21b0\",\"elType\":\"widget\",\"settings\":{\"testimonial_content\":\"\",\"testimonial_image\":{\"id\":36,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/profile2.png\"},\"testimonial_name\":\"DOMINIC VERDANA\",\"testimonial_job\":\"owner\",\"testimonial_image_position\":\"top\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Catamaran\",\"image_size\":{\"unit\":\"px\",\"size\":124},\"name_text_color\":\"#ffffff\",\"name_typography_typography\":\"custom\",\"name_typography_font_size\":{\"unit\":\"px\",\"size\":19},\"name_typography_font_family\":\"Catamaran\",\"name_typography_font_weight\":\"600\",\"name_typography_text_transform\":\"uppercase\",\"name_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0},\"job_text_color\":\"#898989\",\"job_typography_typography\":\"custom\",\"job_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"job_typography_font_family\":\"Catamaran\",\"job_typography_font_weight\":\"200\",\"job_typography_text_transform\":\"uppercase\",\"job_typography_line_height\":{\"unit\":\"em\",\"size\":0.8},\"job_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.4},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"testimonial\"}],\"isInner\":false},{\"id\":\"57211bc0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":70.417,\"content_position\":\"center\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"border_color\":\"#db1529\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"00\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6de22212\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"border_color\":\"#db1529\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"120\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"774766dd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"587cb8\",\"elType\":\"widget\",\"settings\":{\"title\":\"about <span1 style=color:#4b6f93;>us<\\/span1>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":54},\"typography_font_family\":\"Catamaran\",\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_font_style\":\"italic\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2.5},\"title_color\":\"#ffffff\",\"_margin\":{\"unit\":\"px\",\"top\":\"-14\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"custom_css\":\"span1{\\n    color:#4b6f93;\\n}\",\"align\":\"left\",\"align_mobile\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":44},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7432c7c8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Insiders know that spring is the best time to bring your family to Snow Mountain. With unlimited sunshine, great snow conditions, and plenty of family-friendly activities to enjoy at both base areas, spring is the best-kept secret of the season. But hurry...with deals this good they won\'t stay a secret for long!\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17},\"typography_font_family\":\"Catamaran\",\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5},\"text_shadow_text_shadow\":{\"horizontal\":1,\"vertical\":0,\"blur\":0,\"color\":\"#ffffff\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_color\":\"rgba(255,255,255,0.81)\",\"_background_color_stop\":{\"unit\":\"%\",\"size\":37},\"_background_color_b\":\"rgba(242,242,242,0)\",\"_background_color_b_stop\":{\"unit\":\"%\",\"size\":67},\"_background_gradient_type\":\"radial\",\"align_mobile\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"header_size\":\"p\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7130cba9\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"structure\":\"40\",\"background_background\":\"classic\",\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"center center\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.05},\"background_color\":\"#151515\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"020\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\"},\"elements\":[{\"id\":\"30b61ad8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"_inline_size_tablet\":25,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"c38360a\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"985\",\"description_text\":\"CLUB MEMBERS\",\"position\":\"left\",\"primary_color\":\"#db1529\",\"icon_space\":{\"unit\":\"px\",\"size\":14},\"icon_size\":{\"unit\":\"px\",\"size\":45},\"hover_animation\":\"grow\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":6},\"title_color\":\"#ffffff\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40},\"title_typography_font_family\":\"Catamaran\",\"title_typography_font_weight\":\"100\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":0.8},\"description_color\":\"#4b6f93\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":13},\"description_typography_font_family\":\"Catamaran\",\"description_typography_font_weight\":\"500\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_style\":\"normal\",\"description_typography_font_style\":\"normal\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34},\"text_align_tablet\":\"left\",\"text_align_mobile\":\"center\",\"icon_space_tablet\":{\"unit\":\"px\",\"size\":8},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"5ac8d7fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"_inline_size_tablet\":25,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"3b0b4d2e\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"40\",\"description_text\":\"KM TRACKS\",\"position\":\"left\",\"primary_color\":\"#db1529\",\"icon_space\":{\"unit\":\"px\",\"size\":14},\"icon_size\":{\"unit\":\"px\",\"size\":45},\"hover_animation\":\"grow\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":6},\"title_color\":\"#ffffff\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40},\"title_typography_font_family\":\"Catamaran\",\"title_typography_font_weight\":\"100\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":0.8},\"description_color\":\"#4b6f93\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":13},\"description_typography_font_family\":\"Catamaran\",\"description_typography_font_weight\":\"500\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_style\":\"normal\",\"description_typography_font_style\":\"normal\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34},\"icon_space_tablet\":{\"unit\":\"px\",\"size\":8},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30},\"text_align_tablet\":\"left\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13},\"text_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"502c1277\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"_inline_size_tablet\":25,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"75b8bba1\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"125\",\"description_text\":\"INSTRUCTORS\",\"position\":\"left\",\"primary_color\":\"#db1529\",\"icon_space\":{\"unit\":\"px\",\"size\":14},\"icon_size\":{\"unit\":\"px\",\"size\":45},\"hover_animation\":\"grow\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":6},\"title_color\":\"#ffffff\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40},\"title_typography_font_family\":\"Catamaran\",\"title_typography_font_weight\":\"100\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":0.8},\"description_color\":\"#4b6f93\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":13},\"description_typography_font_family\":\"Catamaran\",\"description_typography_font_weight\":\"500\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_style\":\"normal\",\"description_typography_font_style\":\"normal\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_space_tablet\":{\"unit\":\"px\",\"size\":8},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30},\"text_align_tablet\":\"left\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13},\"text_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"155a7d20\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"_inline_size_tablet\":25,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"96d0598\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"30\",\"description_text\":\"below Celsius\",\"position\":\"left\",\"primary_color\":\"#db1529\",\"icon_space\":{\"unit\":\"px\",\"size\":14},\"icon_size\":{\"unit\":\"px\",\"size\":45},\"hover_animation\":\"grow\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":6},\"title_color\":\"#ffffff\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40},\"title_typography_font_family\":\"Catamaran\",\"title_typography_font_weight\":\"100\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":0.8},\"description_color\":\"#4b6f93\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":13},\"description_typography_font_family\":\"Catamaran\",\"description_typography_font_weight\":\"500\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_style\":\"normal\",\"description_typography_text_transform\":\"uppercase\",\"description_typography_font_style\":\"normal\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_space_tablet\":{\"unit\":\"px\",\"size\":8},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30},\"text_align_tablet\":\"left\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13},\"text_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5a73254\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":300},\"background_background\":\"classic\",\"background_image\":{\"id\":37,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/divider-1.png\"},\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"rgba(0,0,0,0)\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":54},\"background_overlay_color_b\":\"rgba(255,255,255,0.54)\",\"background_overlay_gradient_type\":\"radial\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1},\"background_position\":\"top center\",\"hide_mobile\":\"hidden-phone\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":124},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":216},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\"},\"elements\":[{\"id\":\"f9a467a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"35c8f84d\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":256,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5a349e\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"140\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":28,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Snow.png\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\"},\"elements\":[{\"id\":\"309eb89e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"47717efc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Clients <span1 style=color:#4b6f93;>say<\\/span1>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":57},\"typography_font_family\":\"Catamaran\",\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_font_style\":\"italic\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2.5},\"title_color\":\"#151515\",\"_margin\":{\"unit\":\"px\",\"top\":\"140\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"custom_css\":\"span1{\\n    color:#4b6f93;\\n}\",\"align\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"header_size\":\"h3\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":44},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3665f8ad\",\"elType\":\"widget\",\"settings\":{\"slides\":[{\"content\":\"I now know why it\\u2019s the leader of the pack in the pow board revolution.\",\"name\":\"DICK FACE\",\"title\":\"Fuckyou, Norway\",\"image\":{\"id\":38,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/1a.png\"},\"_id\":\"hlpp19l\"},{\"content\":\"When a community comes together and stands behind the individuals who shape our sport.\",\"name\":\"STEVE HARRIS\",\"title\":\"Squamish, BC\",\"image\":{\"id\":39,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/1c.png\"},\"_id\":\"bhwyja5\"},{\"content\":\"Nothing short of inspirational. We love you guys, we are snowboarding.\",\"name\":\"silvia snow\",\"title\":\"Seattle, WA\",\"image\":{\"id\":40,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/1b.png\"},\"_id\":\"vvr5bev\"}],\"layout\":\"image_above\",\"slides_per_view\":\"1\",\"width\":{\"unit\":\"%\",\"size\":64},\"arrows_size\":{\"unit\":\"px\",\"size\":38},\"content_gap\":{\"unit\":\"px\",\"size\":21},\"content_color\":\"#000000\",\"content_typography_typography\":\"custom\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"content_typography_font_family\":\"Catamaran\",\"content_typography_font_weight\":\"400\",\"content_typography_text_transform\":\"none\",\"content_typography_font_style\":\"italic\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5},\"name_color\":\"#191919\",\"name_typography_typography\":\"custom\",\"name_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"name_typography_font_family\":\"Catamaran\",\"name_typography_font_weight\":\"900\",\"name_typography_text_transform\":\"uppercase\",\"name_typography_font_style\":\"normal\",\"name_typography_line_height\":{\"unit\":\"em\",\"size\":0.4},\"name_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.4},\"title_color\":\"#db1529\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"title_typography_font_family\":\"Catamaran\",\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_font_style\":\"normal\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":2.2},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5},\"image_size\":{\"unit\":\"px\",\"size\":90},\"image_gap\":{\"unit\":\"px\",\"size\":0},\"image_border\":\"yes\",\"image_border_color\":\"rgba(75,111,147,0.29)\",\"image_border_width\":{\"unit\":\"px\",\"size\":4},\"image_border_radius\":{\"unit\":\"px\",\"size\":100},\"arrows_color\":\"#db1529\",\"pagination_size\":{\"unit\":\"px\",\"size\":7},\"pagination_color\":\"#db1529\",\"_margin\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_mobile\":{\"unit\":\"px\",\"size\":327},\"space_between_mobile\":{\"unit\":\"px\",\"size\":13},\"content_gap_mobile\":{\"unit\":\"px\",\"size\":14},\"content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16},\"name_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":17},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":17},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"slides_to_scroll\":\"7\"},\"elements\":[],\"widgetType\":\"testimonial-carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3812b07d\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#151515\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"8\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_color_b\":\"#151515\",\"background_gradient_type\":\"radial\",\"background_overlay_image\":{\"id\":41,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/8522.png\"},\"background_overlay_position\":\"center right\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.11},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"gap\":\"no\",\"background_overlay_repeat\":\"no-repeat\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":167},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\"},\"elements\":[{\"id\":\"3217ea46\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.75,\"content_position\":\"center\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"80\",\"bottom\":\"40\",\"left\":\"80\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"15f078ce\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"placeholder\":\"Sign up for special deals\",\"width\":\"66\",\"field_value\":\"\",\"field_options\":\"\",\"inline_list\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"custom_id\":\"email\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"field_html\":\"\",\"recaptcha_badge\":\"bottomright\"}],\"input_size\":\"lg\",\"show_labels\":\"\",\"button_text\":\"sign up\",\"button_size\":\"lg\",\"button_width\":\"33\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"The form was sent successfully!\",\"error_message\":\"There\'s something wrong... Please fill in the required fields.\",\"required_field_message\":\"Required\",\"invalid_message\":\"There\'s something wrong... The form is invalid.\",\"subscriber_already_exists_message\":\"Subscriber already exist.\",\"column_gap\":{\"unit\":\"px\",\"size\":0},\"field_text_color\":\"#ffffff\",\"field_typography_typography\":\"custom\",\"field_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"field_typography_font_family\":\"Catamaran\",\"field_typography_font_weight\":\"500\",\"field_background_color\":\"rgba(255,255,255,0.14)\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_text_color\":\"#ffffff\",\"button_typography_typography\":\"custom\",\"button_typography_font_family\":\"Catamaran\",\"button_background_color\":\"#db1529\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"button_typography_font_weight\":\"600\",\"button_typography_text_transform\":\"uppercase\",\"button_typography_font_style\":\"italic\",\"field_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.4},\"button_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.4},\"button_background_hover_color\":\"#db1529\",\"button_hover_animation\":\"grow\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":false},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"email_to\":\"maintenance@ondisplaycreative.com\",\"email_subject\":\"New message from \\\"OnDisplay Creative\\\"\",\"email_from\":\"email@23.235.208.11\",\"email_from_name\":\"OnDisplay Creative\",\"email_to_2\":\"maintenance@ondisplaycreative.com\",\"email_subject_2\":\"New message from \\\"OnDisplay Creative\\\"\",\"email_from_2\":\"email@23.235.208.11\",\"email_from_name_2\":\"OnDisplay Creative\",\"email_reply_to_2\":\"maintenance@ondisplaycreative.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false},{\"id\":\"6ad15533\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":26.333,\"content_position\":\"center\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"174b5094\",\"elType\":\"widget\",\"settings\":{\"title\":\"get social:\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19},\"typography_font_family\":\"Catamaran\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.4},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"right\",\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"1fae618c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23.913,\"content_position\":\"center\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"563a6180\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"tygvwhy\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"},\"social_icon\":{\"value\":\"fab fa-wordpress\",\"library\":\"fa-brands\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"},{\"social\":\"fa fa-twitter\",\"_id\":\"d3gf3n8\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"},\"social_icon\":{\"value\":\"fab fa-wordpress\",\"library\":\"fa-brands\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"},{\"social\":\"fa fa-google-plus\",\"_id\":\"us7irc8\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"},\"social_icon\":{\"value\":\"fab fa-wordpress\",\"library\":\"fa-brands\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"},{\"social\":\"fa fa-youtube\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"},\"_id\":\"pgz2qq0\",\"social_icon\":{\"value\":\"fab fa-wordpress\",\"library\":\"fa-brands\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"},{\"social\":\"fa fa-instagram\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"},\"_id\":\"szpior4\",\"social_icon\":{\"value\":\"fab fa-wordpress\",\"library\":\"fa-brands\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"}],\"shape\":\"circle\",\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(219,21,41,0)\",\"icon_secondary_color\":\"#ffffff\",\"icon_size\":{\"unit\":\"px\",\"size\":17},\"icon_padding\":{\"unit\":\"em\",\"size\":0.5},\"icon_spacing\":{\"unit\":\"px\",\"size\":20},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#db1529\",\"hover_primary_color\":\"#db1529\",\"hover_animation\":\"grow\",\"align_mobile\":\"center\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":16},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"align_tablet\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":false}],\"isInner\":false}]'),(190,46,'_elementor_edit_mode','builder'),(191,46,'_elementor_template_type','post'),(192,46,'_elementor_version','2.6.8'),(193,46,'_elementor_pro_version','2.6.5'),(194,46,'_wp_page_template','default'),(195,46,'_elementor_elements_usage','a:13:{s:8:\"template\";i:1;s:6:\"column\";i:18;s:7:\"section\";i:10;s:7:\"heading\";i:11;s:5:\"image\";i:1;s:14:\"media-carousel\";i:1;s:6:\"button\";i:1;s:11:\"testimonial\";i:1;s:8:\"icon-box\";i:4;s:6:\"spacer\";i:1;s:20:\"testimonial-carousel\";i:1;s:4:\"form\";i:1;s:12:\"social-icons\";i:1;}'),(96,25,'site-sidebar-layout','no-sidebar'),(97,25,'site-content-layout','page-builder'),(98,25,'theme-transparent-header-meta','default'),(99,25,'_elementor_edit_mode','builder'),(100,25,'_elementor_template_type','post'),(101,25,'_elementor_version','2.6.8'),(102,25,'_elementor_pro_version','2.6.5'),(103,25,'_astra_content_layout_flag','disabled'),(104,25,'site-post-title','disabled'),(105,25,'ast-title-bar-display','disabled'),(106,25,'ast-featured-img','disabled'),(157,25,'_elementor_data','[{\"id\":\"644ff33\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"28694df\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1885cb5\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"217194a\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":85},\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"id\":29,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/BG24.png\"},\"background_position\":\"bottom center\",\"background_size\":\"cover\",\"background_overlay_color\":\"rgba(0,0,0,0)\",\"background_overlay_color_b\":\"#ffffff\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":130},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1},\"shape_divider_bottom_color\":\"#151515\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":164},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":24},\"shape_divider_bottom_negative\":\"yes\",\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":67},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\"},\"elements\":[{\"id\":\"1bc63195\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":38.75,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"isInner\":false},{\"id\":\"3d65c192\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":68.346,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"5d5c77f3\",\"elType\":\"widget\",\"settings\":{\"title\":\"wipeOUT<span3><\\/span3>\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":148},\"typography_font_family\":\"Catamaran\",\"typography_font_weight\":\"900\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-5.5},\"_margin\":{\"unit\":\"px\",\"top\":\"330\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":0,\"_background_background\":\"classic\",\"_background_color\":\"rgba(255,255,255,0)\",\"typography_font_style\":\"italic\",\"align_mobile\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":63},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":123},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"600d421c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":28,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Snow.png\"},\"image_size\":\"full\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"-310\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"opacity\":{\"unit\":\"px\",\"size\":0.86},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-130\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-270\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"769e968e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Noise around us has become a bit of a mantra around here. So for 018 we\\u2019ve again applied what we\\u2019ve learnt in the past to push the needle forward in our own unique way!\",\"align\":\"left\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17},\"typography_font_family\":\"Catamaran\",\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5},\"text_shadow_text_shadow\":{\"horizontal\":1,\"vertical\":0,\"blur\":0,\"color\":\"#ffffff\"},\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"240\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"_background_background\":\"gradient\",\"_background_color\":\"rgba(255,255,255,0.81)\",\"_background_color_stop\":{\"unit\":\"%\",\"size\":37},\"_background_color_b\":\"rgba(242,242,242,0)\",\"_background_color_b_stop\":{\"unit\":\"%\",\"size\":67},\"_background_gradient_type\":\"radial\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":false},\"_border_color\":\"#db1529\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"align_mobile\":\"left\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"130\",\"isLinked\":false},\"header_size\":\"p\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6a3ec524\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":670},\"background_background\":\"classic\",\"background_color\":\"#151515\",\"margin\":{\"unit\":\"px\",\"top\":\"1\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"108\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":28,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Snow.png\"},\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.28},\"background_color_b\":\"#1e1e1e\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\"},\"elements\":[{\"id\":\"3fd3371a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"6483af36\",\"elType\":\"widget\",\"settings\":{\"title\":\"featured <span1 style=color:#4b6f93;>resorts<\\/span1>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":54},\"typography_font_family\":\"Catamaran\",\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_font_style\":\"italic\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2.5},\"align\":\"center\",\"title_color\":\"#f9f6ed\",\"_margin\":{\"unit\":\"px\",\"top\":\"140\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":44},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7b4ab6fd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Serving up tips, tricks, guides and inspiration for your next outdoor adventure - we\'ve got you covered.\\n\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17},\"typography_font_family\":\"Catamaran\",\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5},\"text_shadow_text_shadow\":{\"horizontal\":1,\"vertical\":0,\"blur\":0,\"color\":\"#ffffff\"},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"180\",\"bottom\":\"0\",\"left\":\"180\",\"isLinked\":false},\"_background_color\":\"rgba(255,255,255,0.81)\",\"_background_color_stop\":{\"unit\":\"%\",\"size\":37},\"_background_color_b\":\"rgba(242,242,242,0)\",\"_background_color_b_stop\":{\"unit\":\"%\",\"size\":67},\"_background_gradient_type\":\"radial\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":22},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"header_size\":\"p\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"15655030\",\"elType\":\"widget\",\"settings\":{\"slides\":[{\"image\":{\"id\":30,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/johannes-waibel-4298.png\"},\"_id\":\"0h84y07\",\"type\":\"image\",\"image_link_to_type\":\"file\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"image\":{\"id\":31,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/lukas-neasi-65748.png\"},\"_id\":\"7et6fjl\",\"type\":\"image\",\"image_link_to_type\":\"file\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"image\":{\"id\":32,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/markos-mant-228858.png\"},\"_id\":\"wiglfsd\",\"type\":\"image\",\"image_link_to_type\":\"file\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"image\":{\"id\":33,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/mattias-olsson-160612.png\"},\"_id\":\"so3n2jg\",\"type\":\"image\",\"image_link_to_type\":\"file\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"image\":{\"id\":34,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/tomas-kodydek-7492.png\"},\"_id\":\"a2t5cnv\",\"type\":\"image\",\"image_link_to_type\":\"file\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"slides_per_view\":\"3\",\"height\":{\"unit\":\"px\",\"size\":453},\"width\":{\"unit\":\"%\",\"size\":90},\"overlay\":\"icon\",\"space_between\":{\"unit\":\"px\",\"size\":46},\"slide_background_color\":\"#c6c6c6\",\"slide_border_radius\":{\"unit\":\"px\",\"size\":5},\"arrows_size\":{\"unit\":\"px\",\"size\":27},\"arrows_color\":\"#db1529\",\"pagination_size\":{\"unit\":\"px\",\"size\":7},\"pagination_color\":\"#db1529\",\"_margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"overlay_background_color\":\"rgba(255,255,255,0.82)\",\"overlay_color\":\"#db1529\",\"caption_typography_typography\":\"custom\",\"caption_typography_font_size\":{\"unit\":\"px\",\"size\":24},\"caption_typography_font_family\":\"Catamaran\",\"caption_typography_font_weight\":\"500\",\"caption_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.4},\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"space_between_mobile\":{\"unit\":\"px\",\"size\":16},\"caption_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"height_mobile\":{\"unit\":\"px\",\"size\":405},\"width_mobile\":{\"unit\":\"px\",\"size\":267},\"slides_per_view_tablet\":\"2\",\"width_tablet\":{\"unit\":\"px\",\"size\":668},\"space_between_tablet\":{\"unit\":\"px\",\"size\":30},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"media-carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"182c449b\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":607},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":35,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/4.png\"},\"background_position\":\"bottom right\",\"background_size\":\"cover\",\"background_overlay_color\":\"#ffffff\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":66},\"background_overlay_color_b\":\"#ffffff\",\"background_overlay_gradient_type\":\"radial\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.13},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"custom_height_tablet\":{\"unit\":\"px\",\"size\":281},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\"},\"elements\":[{\"id\":\"1d0793f2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":51.667,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true}},\"elements\":[{\"id\":\"578a12d5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secret Season\",\"title_color\":\"#db1529\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":21},\"typography_font_family\":\"Catamaran\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.4},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"400\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1e01a826\",\"elType\":\"widget\",\"settings\":{\"title\":\"Outdoor <span1 style=color:#4b6f93;>skiing<\\/span1> lodge !\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":57},\"typography_font_family\":\"Catamaran\",\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_font_style\":\"italic\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2.5},\"title_color\":\"#151515\",\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":44},\"header_size\":\"h3\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"83ad7b4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Insiders know that spring is the best time to bring your family to Snow Mountain. With unlimited sunshine, great snow conditions, and plenty of family-friendly activities to enjoy at both base areas, spring is the best-kept secret of the season. But hurry...with deals this good they won\'t stay a secret for long!\",\"align\":\"left\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17},\"typography_font_family\":\"Catamaran\",\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.6},\"text_shadow_text_shadow\":{\"horizontal\":1,\"vertical\":0,\"blur\":0,\"color\":\"#ffffff\"},\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_color\":\"rgba(255,255,255,0.81)\",\"_background_color_stop\":{\"unit\":\"%\",\"size\":37},\"_background_color_b\":\"rgba(242,242,242,0)\",\"_background_color_b_stop\":{\"unit\":\"%\",\"size\":67},\"_background_gradient_type\":\"radial\",\"align_mobile\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"header_size\":\"p\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"676fb5c4\",\"elType\":\"widget\",\"settings\":{\"text\":\"read more\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_family\":\"Catamaran\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_font_style\":\"italic\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0},\"background_color\":\"#db1529\",\"hover_animation\":\"grow\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"45\",\"bottom\":\"18\",\"left\":\"45\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"26432cad\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.25},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"3152c2b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#151515\",\"padding\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\"},\"elements\":[{\"id\":\"6fa1fee9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":29.583,\"content_position\":\"center\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#db1529\"},\"elements\":[{\"id\":\"763f21b0\",\"elType\":\"widget\",\"settings\":{\"testimonial_content\":\"\",\"testimonial_image\":{\"id\":36,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/profile2.png\"},\"testimonial_name\":\"DOMINIC VERDANA\",\"testimonial_job\":\"owner\",\"testimonial_image_position\":\"top\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Catamaran\",\"image_size\":{\"unit\":\"px\",\"size\":124},\"name_text_color\":\"#ffffff\",\"name_typography_typography\":\"custom\",\"name_typography_font_size\":{\"unit\":\"px\",\"size\":19},\"name_typography_font_family\":\"Catamaran\",\"name_typography_font_weight\":\"600\",\"name_typography_text_transform\":\"uppercase\",\"name_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0},\"job_text_color\":\"#898989\",\"job_typography_typography\":\"custom\",\"job_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"job_typography_font_family\":\"Catamaran\",\"job_typography_font_weight\":\"200\",\"job_typography_text_transform\":\"uppercase\",\"job_typography_line_height\":{\"unit\":\"em\",\"size\":0.8},\"job_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.4},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"testimonial\"}],\"isInner\":false},{\"id\":\"57211bc0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":70.417,\"content_position\":\"center\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"border_color\":\"#db1529\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"00\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6de22212\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"border_color\":\"#db1529\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"120\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"774766dd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"587cb8\",\"elType\":\"widget\",\"settings\":{\"title\":\"about <span1 style=color:#4b6f93;>us<\\/span1>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":54},\"typography_font_family\":\"Catamaran\",\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_font_style\":\"italic\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2.5},\"title_color\":\"#ffffff\",\"_margin\":{\"unit\":\"px\",\"top\":\"-14\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"custom_css\":\"span1{\\n    color:#4b6f93;\\n}\",\"align\":\"left\",\"align_mobile\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":44},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7432c7c8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Insiders know that spring is the best time to bring your family to Snow Mountain. With unlimited sunshine, great snow conditions, and plenty of family-friendly activities to enjoy at both base areas, spring is the best-kept secret of the season. But hurry...with deals this good they won\'t stay a secret for long!\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17},\"typography_font_family\":\"Catamaran\",\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5},\"text_shadow_text_shadow\":{\"horizontal\":1,\"vertical\":0,\"blur\":0,\"color\":\"#ffffff\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_color\":\"rgba(255,255,255,0.81)\",\"_background_color_stop\":{\"unit\":\"%\",\"size\":37},\"_background_color_b\":\"rgba(242,242,242,0)\",\"_background_color_b_stop\":{\"unit\":\"%\",\"size\":67},\"_background_gradient_type\":\"radial\",\"align_mobile\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"header_size\":\"p\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7130cba9\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"structure\":\"40\",\"background_background\":\"classic\",\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"center center\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.05},\"background_color\":\"#151515\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"020\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\"},\"elements\":[{\"id\":\"30b61ad8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"_inline_size_tablet\":25,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"c38360a\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"985\",\"description_text\":\"CLUB MEMBERS\",\"position\":\"left\",\"primary_color\":\"#db1529\",\"icon_space\":{\"unit\":\"px\",\"size\":14},\"icon_size\":{\"unit\":\"px\",\"size\":45},\"hover_animation\":\"grow\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":6},\"title_color\":\"#ffffff\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40},\"title_typography_font_family\":\"Catamaran\",\"title_typography_font_weight\":\"100\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":0.8},\"description_color\":\"#4b6f93\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":13},\"description_typography_font_family\":\"Catamaran\",\"description_typography_font_weight\":\"500\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_style\":\"normal\",\"description_typography_font_style\":\"normal\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34},\"text_align_tablet\":\"left\",\"text_align_mobile\":\"center\",\"icon_space_tablet\":{\"unit\":\"px\",\"size\":8},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"5ac8d7fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"_inline_size_tablet\":25,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"3b0b4d2e\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"40\",\"description_text\":\"KM TRACKS\",\"position\":\"left\",\"primary_color\":\"#db1529\",\"icon_space\":{\"unit\":\"px\",\"size\":14},\"icon_size\":{\"unit\":\"px\",\"size\":45},\"hover_animation\":\"grow\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":6},\"title_color\":\"#ffffff\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40},\"title_typography_font_family\":\"Catamaran\",\"title_typography_font_weight\":\"100\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":0.8},\"description_color\":\"#4b6f93\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":13},\"description_typography_font_family\":\"Catamaran\",\"description_typography_font_weight\":\"500\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_style\":\"normal\",\"description_typography_font_style\":\"normal\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34},\"icon_space_tablet\":{\"unit\":\"px\",\"size\":8},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30},\"text_align_tablet\":\"left\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13},\"text_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"502c1277\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"_inline_size_tablet\":25,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"75b8bba1\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"125\",\"description_text\":\"INSTRUCTORS\",\"position\":\"left\",\"primary_color\":\"#db1529\",\"icon_space\":{\"unit\":\"px\",\"size\":14},\"icon_size\":{\"unit\":\"px\",\"size\":45},\"hover_animation\":\"grow\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":6},\"title_color\":\"#ffffff\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40},\"title_typography_font_family\":\"Catamaran\",\"title_typography_font_weight\":\"100\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":0.8},\"description_color\":\"#4b6f93\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":13},\"description_typography_font_family\":\"Catamaran\",\"description_typography_font_weight\":\"500\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_style\":\"normal\",\"description_typography_font_style\":\"normal\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_space_tablet\":{\"unit\":\"px\",\"size\":8},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30},\"text_align_tablet\":\"left\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13},\"text_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"155a7d20\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"_inline_size_tablet\":25,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"96d0598\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"30\",\"description_text\":\"below Celsius\",\"position\":\"left\",\"primary_color\":\"#db1529\",\"icon_space\":{\"unit\":\"px\",\"size\":14},\"icon_size\":{\"unit\":\"px\",\"size\":45},\"hover_animation\":\"grow\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":6},\"title_color\":\"#ffffff\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40},\"title_typography_font_family\":\"Catamaran\",\"title_typography_font_weight\":\"100\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":0.8},\"description_color\":\"#4b6f93\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":13},\"description_typography_font_family\":\"Catamaran\",\"description_typography_font_weight\":\"500\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_style\":\"normal\",\"description_typography_text_transform\":\"uppercase\",\"description_typography_font_style\":\"normal\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_space_tablet\":{\"unit\":\"px\",\"size\":8},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30},\"text_align_tablet\":\"left\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13},\"text_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5a73254\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":300},\"background_background\":\"classic\",\"background_image\":{\"id\":37,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/divider-1.png\"},\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"rgba(0,0,0,0)\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":54},\"background_overlay_color_b\":\"rgba(255,255,255,0.54)\",\"background_overlay_gradient_type\":\"radial\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1},\"background_position\":\"top center\",\"hide_mobile\":\"hidden-phone\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":124},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":216},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\"},\"elements\":[{\"id\":\"f9a467a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"35c8f84d\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":256,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5a349e\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"140\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":28,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Snow.png\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\"},\"elements\":[{\"id\":\"309eb89e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"47717efc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Clients <span1 style=color:#4b6f93;>say<\\/span1>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":57},\"typography_font_family\":\"Catamaran\",\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_font_style\":\"italic\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2.5},\"title_color\":\"#151515\",\"_margin\":{\"unit\":\"px\",\"top\":\"140\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"custom_css\":\"span1{\\n    color:#4b6f93;\\n}\",\"align\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"header_size\":\"h3\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":44},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3665f8ad\",\"elType\":\"widget\",\"settings\":{\"slides\":[{\"content\":\"I now know why it\\u2019s the leader of the pack in the pow board revolution.\",\"name\":\"DICK FACE\",\"title\":\"Fuckyou, Norway\",\"image\":{\"id\":38,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/1a.png\"},\"_id\":\"hlpp19l\"},{\"content\":\"When a community comes together and stands behind the individuals who shape our sport.\",\"name\":\"STEVE HARRIS\",\"title\":\"Squamish, BC\",\"image\":{\"id\":39,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/1c.png\"},\"_id\":\"bhwyja5\"},{\"content\":\"Nothing short of inspirational. We love you guys, we are snowboarding.\",\"name\":\"silvia snow\",\"title\":\"Seattle, WA\",\"image\":{\"id\":40,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/1b.png\"},\"_id\":\"vvr5bev\"}],\"layout\":\"image_above\",\"slides_per_view\":\"1\",\"width\":{\"unit\":\"%\",\"size\":64},\"arrows_size\":{\"unit\":\"px\",\"size\":38},\"content_gap\":{\"unit\":\"px\",\"size\":21},\"content_color\":\"#000000\",\"content_typography_typography\":\"custom\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"content_typography_font_family\":\"Catamaran\",\"content_typography_font_weight\":\"400\",\"content_typography_text_transform\":\"none\",\"content_typography_font_style\":\"italic\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5},\"name_color\":\"#191919\",\"name_typography_typography\":\"custom\",\"name_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"name_typography_font_family\":\"Catamaran\",\"name_typography_font_weight\":\"900\",\"name_typography_text_transform\":\"uppercase\",\"name_typography_font_style\":\"normal\",\"name_typography_line_height\":{\"unit\":\"em\",\"size\":0.4},\"name_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.4},\"title_color\":\"#db1529\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"title_typography_font_family\":\"Catamaran\",\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_font_style\":\"normal\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":2.2},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5},\"image_size\":{\"unit\":\"px\",\"size\":90},\"image_gap\":{\"unit\":\"px\",\"size\":0},\"image_border\":\"yes\",\"image_border_color\":\"rgba(75,111,147,0.29)\",\"image_border_width\":{\"unit\":\"px\",\"size\":4},\"image_border_radius\":{\"unit\":\"px\",\"size\":100},\"arrows_color\":\"#db1529\",\"pagination_size\":{\"unit\":\"px\",\"size\":7},\"pagination_color\":\"#db1529\",\"_margin\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_mobile\":{\"unit\":\"px\",\"size\":327},\"space_between_mobile\":{\"unit\":\"px\",\"size\":13},\"content_gap_mobile\":{\"unit\":\"px\",\"size\":14},\"content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16},\"name_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":17},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":17},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"slides_to_scroll\":\"7\"},\"elements\":[],\"widgetType\":\"testimonial-carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3812b07d\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#151515\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"8\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_color_b\":\"#151515\",\"background_gradient_type\":\"radial\",\"background_overlay_image\":{\"id\":41,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/8522.png\"},\"background_overlay_position\":\"center right\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.11},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"gap\":\"no\",\"background_overlay_repeat\":\"no-repeat\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":167},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\"},\"elements\":[{\"id\":\"3217ea46\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.75,\"content_position\":\"center\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"80\",\"bottom\":\"40\",\"left\":\"80\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"15f078ce\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"placeholder\":\"Sign up for special deals\",\"width\":\"66\",\"field_value\":\"\",\"field_options\":\"\",\"inline_list\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"custom_id\":\"email\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"field_html\":\"\",\"recaptcha_badge\":\"bottomright\"}],\"input_size\":\"lg\",\"show_labels\":\"\",\"button_text\":\"sign up\",\"button_size\":\"lg\",\"button_width\":\"33\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"The form was sent successfully!\",\"error_message\":\"There\'s something wrong... Please fill in the required fields.\",\"required_field_message\":\"Required\",\"invalid_message\":\"There\'s something wrong... The form is invalid.\",\"subscriber_already_exists_message\":\"Subscriber already exist.\",\"column_gap\":{\"unit\":\"px\",\"size\":0},\"field_text_color\":\"#ffffff\",\"field_typography_typography\":\"custom\",\"field_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"field_typography_font_family\":\"Catamaran\",\"field_typography_font_weight\":\"500\",\"field_background_color\":\"rgba(255,255,255,0.14)\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_text_color\":\"#ffffff\",\"button_typography_typography\":\"custom\",\"button_typography_font_family\":\"Catamaran\",\"button_background_color\":\"#db1529\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"button_typography_font_weight\":\"600\",\"button_typography_text_transform\":\"uppercase\",\"button_typography_font_style\":\"italic\",\"field_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.4},\"button_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.4},\"button_background_hover_color\":\"#db1529\",\"button_hover_animation\":\"grow\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":false},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"email_to\":\"maintenance@ondisplaycreative.com\",\"email_subject\":\"New message from \\\"OnDisplay Creative\\\"\",\"email_from\":\"email@23.235.208.11\",\"email_from_name\":\"OnDisplay Creative\",\"email_to_2\":\"maintenance@ondisplaycreative.com\",\"email_subject_2\":\"New message from \\\"OnDisplay Creative\\\"\",\"email_from_2\":\"email@23.235.208.11\",\"email_from_name_2\":\"OnDisplay Creative\",\"email_reply_to_2\":\"maintenance@ondisplaycreative.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false},{\"id\":\"6ad15533\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":26.333,\"content_position\":\"center\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"174b5094\",\"elType\":\"widget\",\"settings\":{\"title\":\"get social:\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19},\"typography_font_family\":\"Catamaran\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.4},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"right\",\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"1fae618c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23.913,\"content_position\":\"center\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"563a6180\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"tygvwhy\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"},\"social_icon\":{\"value\":\"fab fa-wordpress\",\"library\":\"fa-brands\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"},{\"social\":\"fa fa-twitter\",\"_id\":\"d3gf3n8\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"},\"social_icon\":{\"value\":\"fab fa-wordpress\",\"library\":\"fa-brands\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"},{\"social\":\"fa fa-google-plus\",\"_id\":\"us7irc8\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"},\"social_icon\":{\"value\":\"fab fa-wordpress\",\"library\":\"fa-brands\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"},{\"social\":\"fa fa-youtube\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"},\"_id\":\"pgz2qq0\",\"social_icon\":{\"value\":\"fab fa-wordpress\",\"library\":\"fa-brands\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"},{\"social\":\"fa fa-instagram\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"},\"_id\":\"szpior4\",\"social_icon\":{\"value\":\"fab fa-wordpress\",\"library\":\"fa-brands\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"}],\"shape\":\"circle\",\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(219,21,41,0)\",\"icon_secondary_color\":\"#ffffff\",\"icon_size\":{\"unit\":\"px\",\"size\":17},\"icon_padding\":{\"unit\":\"em\",\"size\":0.5},\"icon_spacing\":{\"unit\":\"px\",\"size\":20},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#db1529\",\"hover_primary_color\":\"#db1529\",\"hover_animation\":\"grow\",\"align_mobile\":\"center\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":16},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"align_tablet\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":false}],\"isInner\":false}]'),(155,25,'_wp_page_template','default'),(156,25,'_elementor_elements_usage','a:13:{s:8:\"template\";i:1;s:6:\"column\";i:18;s:7:\"section\";i:10;s:7:\"heading\";i:11;s:5:\"image\";i:1;s:14:\"media-carousel\";i:1;s:6:\"button\";i:1;s:11:\"testimonial\";i:1;s:8:\"icon-box\";i:4;s:6:\"spacer\";i:1;s:20:\"testimonial-carousel\";i:1;s:4:\"form\";i:1;s:12:\"social-icons\";i:1;}'),(113,28,'_wp_attached_file','2019/09/Snow.png'),(114,28,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1107;s:6:\"height\";i:476;s:4:\"file\";s:16:\"2019/09/Snow.png\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"Snow-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"Snow-300x129.png\";s:5:\"width\";i:300;s:6:\"height\";i:129;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:16:\"Snow-768x330.png\";s:5:\"width\";i:768;s:6:\"height\";i:330;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:17:\"Snow-1024x440.png\";s:5:\"width\";i:1024;s:6:\"height\";i:440;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(115,28,'_elementor_source_image_hash','e8821eaf5cd0e5a5a781242f9068fd70e9c693e3'),(116,29,'_wp_attached_file','2019/09/BG24.png'),(117,29,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2000;s:6:\"height\";i:1100;s:4:\"file\";s:16:\"2019/09/BG24.png\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"BG24-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"BG24-300x165.png\";s:5:\"width\";i:300;s:6:\"height\";i:165;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:16:\"BG24-768x422.png\";s:5:\"width\";i:768;s:6:\"height\";i:422;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:17:\"BG24-1024x563.png\";s:5:\"width\";i:1024;s:6:\"height\";i:563;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(118,29,'_elementor_source_image_hash','a69630626e958c58de74304398c143bbf1b27890'),(119,30,'_wp_attached_file','2019/09/johannes-waibel-4298.png'),(120,30,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:860;s:6:\"height\";i:929;s:4:\"file\";s:32:\"2019/09/johannes-waibel-4298.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"johannes-waibel-4298-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:32:\"johannes-waibel-4298-278x300.png\";s:5:\"width\";i:278;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:32:\"johannes-waibel-4298-768x830.png\";s:5:\"width\";i:768;s:6:\"height\";i:830;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(121,30,'_elementor_source_image_hash','7bf9d52e789f30ff7c62fb70fe0795ddb4f3a3ea'),(122,31,'_wp_attached_file','2019/09/lukas-neasi-65748.png'),(123,31,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:860;s:6:\"height\";i:815;s:4:\"file\";s:29:\"2019/09/lukas-neasi-65748.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"lukas-neasi-65748-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:29:\"lukas-neasi-65748-300x284.png\";s:5:\"width\";i:300;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:29:\"lukas-neasi-65748-768x728.png\";s:5:\"width\";i:768;s:6:\"height\";i:728;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(124,31,'_elementor_source_image_hash','e07e0bca8f73a9112e35d8f4f5967ce4d7140be9'),(125,32,'_wp_attached_file','2019/09/markos-mant-228858.png'),(126,32,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:860;s:6:\"height\";i:804;s:4:\"file\";s:30:\"2019/09/markos-mant-228858.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"markos-mant-228858-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:30:\"markos-mant-228858-300x280.png\";s:5:\"width\";i:300;s:6:\"height\";i:280;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:30:\"markos-mant-228858-768x718.png\";s:5:\"width\";i:768;s:6:\"height\";i:718;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(127,32,'_elementor_source_image_hash','a9eff701da07edcdd5f80f03fbbe17e35c84224b'),(128,33,'_wp_attached_file','2019/09/mattias-olsson-160612.png'),(129,33,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:644;s:6:\"height\";i:573;s:4:\"file\";s:33:\"2019/09/mattias-olsson-160612.png\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"mattias-olsson-160612-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:33:\"mattias-olsson-160612-300x267.png\";s:5:\"width\";i:300;s:6:\"height\";i:267;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(130,33,'_elementor_source_image_hash','65b2f4de5059810397f9a18fcb5a78121c70e94d'),(131,34,'_wp_attached_file','2019/09/tomas-kodydek-7492.png'),(132,34,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:860;s:6:\"height\";i:691;s:4:\"file\";s:30:\"2019/09/tomas-kodydek-7492.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"tomas-kodydek-7492-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:30:\"tomas-kodydek-7492-300x241.png\";s:5:\"width\";i:300;s:6:\"height\";i:241;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:30:\"tomas-kodydek-7492-768x617.png\";s:5:\"width\";i:768;s:6:\"height\";i:617;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(133,34,'_elementor_source_image_hash','9f73950f362cbe60666847d98e87f4af54bfda01'),(134,35,'_wp_attached_file','2019/09/4.png'),(135,35,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1600;s:6:\"height\";i:714;s:4:\"file\";s:13:\"2019/09/4.png\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:13:\"4-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:13:\"4-300x134.png\";s:5:\"width\";i:300;s:6:\"height\";i:134;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:13:\"4-768x343.png\";s:5:\"width\";i:768;s:6:\"height\";i:343;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:14:\"4-1024x457.png\";s:5:\"width\";i:1024;s:6:\"height\";i:457;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(136,35,'_elementor_source_image_hash','cd1a0cbd215375d40b3035cb408caee36e99be32'),(137,36,'_wp_attached_file','2019/09/profile2.png'),(138,36,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:500;s:6:\"height\";i:501;s:4:\"file\";s:20:\"2019/09/profile2.png\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"profile2-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"profile2-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(139,36,'_elementor_source_image_hash','4cdc9789700e7f582cc04c30c3ffab8f353808e7'),(140,37,'_wp_attached_file','2019/09/divider-1.png'),(141,37,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1400;s:6:\"height\";i:788;s:4:\"file\";s:21:\"2019/09/divider-1.png\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"divider-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"divider-1-300x169.png\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:21:\"divider-1-768x432.png\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:22:\"divider-1-1024x576.png\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(142,37,'_elementor_source_image_hash','5c8d9a4f3cc74d73ebfe8414e76dbfe3f59db047'),(143,38,'_wp_attached_file','2019/09/1a.png'),(144,38,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:500;s:6:\"height\";i:500;s:4:\"file\";s:14:\"2019/09/1a.png\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:14:\"1a-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:14:\"1a-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(145,38,'_elementor_source_image_hash','b42ee6ceb2e6bb6f917e244b98eb626aa2cb4a24'),(146,39,'_wp_attached_file','2019/09/1c.png'),(147,39,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:501;s:6:\"height\";i:501;s:4:\"file\";s:14:\"2019/09/1c.png\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:14:\"1c-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:14:\"1c-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(148,39,'_elementor_source_image_hash','ca3690afa1fe603bf0948480c6f77e8c3fc3a999'),(149,40,'_wp_attached_file','2019/09/1b.png'),(150,40,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:500;s:6:\"height\";i:500;s:4:\"file\";s:14:\"2019/09/1b.png\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:14:\"1b-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:14:\"1b-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(151,40,'_elementor_source_image_hash','290140c91267dd7ec16b9d483c80e53050c7db64'),(152,41,'_wp_attached_file','2019/09/8522.png'),(153,41,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1600;s:6:\"height\";i:482;s:4:\"file\";s:16:\"2019/09/8522.png\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"8522-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:15:\"8522-300x90.png\";s:5:\"width\";i:300;s:6:\"height\";i:90;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:16:\"8522-768x231.png\";s:5:\"width\";i:768;s:6:\"height\";i:231;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:17:\"8522-1024x308.png\";s:5:\"width\";i:1024;s:6:\"height\";i:308;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(154,41,'_elementor_source_image_hash','4281d9ce53974074fcc61b412c41dd671f5c221c'),(158,42,'_elementor_edit_mode','builder'),(159,42,'_elementor_template_type','post'),(160,42,'_elementor_version','2.6.8'),(161,42,'_elementor_pro_version','2.6.5'),(162,42,'_wp_page_template','default'),(163,42,'_elementor_elements_usage','a:13:{s:8:\"template\";i:1;s:6:\"column\";i:18;s:7:\"section\";i:10;s:7:\"heading\";i:11;s:5:\"image\";i:1;s:14:\"media-carousel\";i:1;s:6:\"button\";i:1;s:11:\"testimonial\";i:1;s:8:\"icon-box\";i:4;s:6:\"spacer\";i:1;s:20:\"testimonial-carousel\";i:1;s:4:\"form\";i:1;s:12:\"social-icons\";i:1;}'),(164,42,'_elementor_data','[{\"id\":\"644ff33\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"28694df\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1885cb5\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"217194a\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":85},\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"id\":29,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/BG24.png\"},\"background_position\":\"bottom center\",\"background_size\":\"cover\",\"background_overlay_color\":\"rgba(0,0,0,0)\",\"background_overlay_color_b\":\"#ffffff\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":130},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1},\"shape_divider_bottom_color\":\"#151515\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":164},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":24},\"shape_divider_bottom_negative\":\"yes\",\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":67},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\"},\"elements\":[{\"id\":\"1bc63195\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":38.75,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"isInner\":false},{\"id\":\"3d65c192\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":68.346,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"5d5c77f3\",\"elType\":\"widget\",\"settings\":{\"title\":\"wipeOUT<span3><\\/span3>\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":148},\"typography_font_family\":\"Catamaran\",\"typography_font_weight\":\"900\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-5.5},\"_margin\":{\"unit\":\"px\",\"top\":\"330\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":0,\"_background_background\":\"classic\",\"_background_color\":\"rgba(255,255,255,0)\",\"typography_font_style\":\"italic\",\"align_mobile\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":63},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":123},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"600d421c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":28,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Snow.png\"},\"image_size\":\"full\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"-310\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"opacity\":{\"unit\":\"px\",\"size\":0.86},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-130\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-270\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"769e968e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Noise around us has become a bit of a mantra around here. So for 018 we\\u2019ve again applied what we\\u2019ve learnt in the past to push the needle forward in our own unique way!\",\"align\":\"left\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17},\"typography_font_family\":\"Catamaran\",\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5},\"text_shadow_text_shadow\":{\"horizontal\":1,\"vertical\":0,\"blur\":0,\"color\":\"#ffffff\"},\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"240\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"_background_background\":\"gradient\",\"_background_color\":\"rgba(255,255,255,0.81)\",\"_background_color_stop\":{\"unit\":\"%\",\"size\":37},\"_background_color_b\":\"rgba(242,242,242,0)\",\"_background_color_b_stop\":{\"unit\":\"%\",\"size\":67},\"_background_gradient_type\":\"radial\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":false},\"_border_color\":\"#db1529\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"align_mobile\":\"left\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"130\",\"isLinked\":false},\"header_size\":\"p\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6a3ec524\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":670},\"background_background\":\"classic\",\"background_color\":\"#151515\",\"margin\":{\"unit\":\"px\",\"top\":\"1\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"108\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":28,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Snow.png\"},\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.28},\"background_color_b\":\"#1e1e1e\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\"},\"elements\":[{\"id\":\"3fd3371a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"6483af36\",\"elType\":\"widget\",\"settings\":{\"title\":\"featured <span1 style=color:#4b6f93;>resorts<\\/span1>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":54},\"typography_font_family\":\"Catamaran\",\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_font_style\":\"italic\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2.5},\"align\":\"center\",\"title_color\":\"#f9f6ed\",\"_margin\":{\"unit\":\"px\",\"top\":\"140\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":44},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7b4ab6fd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Serving up tips, tricks, guides and inspiration for your next outdoor adventure - we\'ve got you covered.\\n\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17},\"typography_font_family\":\"Catamaran\",\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5},\"text_shadow_text_shadow\":{\"horizontal\":1,\"vertical\":0,\"blur\":0,\"color\":\"#ffffff\"},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"180\",\"bottom\":\"0\",\"left\":\"180\",\"isLinked\":false},\"_background_color\":\"rgba(255,255,255,0.81)\",\"_background_color_stop\":{\"unit\":\"%\",\"size\":37},\"_background_color_b\":\"rgba(242,242,242,0)\",\"_background_color_b_stop\":{\"unit\":\"%\",\"size\":67},\"_background_gradient_type\":\"radial\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":22},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"header_size\":\"p\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"15655030\",\"elType\":\"widget\",\"settings\":{\"slides\":[{\"image\":{\"id\":30,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/johannes-waibel-4298.png\"},\"_id\":\"0h84y07\",\"type\":\"image\",\"image_link_to_type\":\"file\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"image\":{\"id\":31,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/lukas-neasi-65748.png\"},\"_id\":\"7et6fjl\",\"type\":\"image\",\"image_link_to_type\":\"file\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"image\":{\"id\":32,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/markos-mant-228858.png\"},\"_id\":\"wiglfsd\",\"type\":\"image\",\"image_link_to_type\":\"file\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"image\":{\"id\":33,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/mattias-olsson-160612.png\"},\"_id\":\"so3n2jg\",\"type\":\"image\",\"image_link_to_type\":\"file\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"image\":{\"id\":34,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/tomas-kodydek-7492.png\"},\"_id\":\"a2t5cnv\",\"type\":\"image\",\"image_link_to_type\":\"file\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"slides_per_view\":\"3\",\"height\":{\"unit\":\"px\",\"size\":453},\"width\":{\"unit\":\"%\",\"size\":90},\"overlay\":\"icon\",\"space_between\":{\"unit\":\"px\",\"size\":46},\"slide_background_color\":\"#c6c6c6\",\"slide_border_radius\":{\"unit\":\"px\",\"size\":5},\"arrows_size\":{\"unit\":\"px\",\"size\":27},\"arrows_color\":\"#db1529\",\"pagination_size\":{\"unit\":\"px\",\"size\":7},\"pagination_color\":\"#db1529\",\"_margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"overlay_background_color\":\"rgba(255,255,255,0.82)\",\"overlay_color\":\"#db1529\",\"caption_typography_typography\":\"custom\",\"caption_typography_font_size\":{\"unit\":\"px\",\"size\":24},\"caption_typography_font_family\":\"Catamaran\",\"caption_typography_font_weight\":\"500\",\"caption_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.4},\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"space_between_mobile\":{\"unit\":\"px\",\"size\":16},\"caption_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"height_mobile\":{\"unit\":\"px\",\"size\":405},\"width_mobile\":{\"unit\":\"px\",\"size\":267},\"slides_per_view_tablet\":\"2\",\"width_tablet\":{\"unit\":\"px\",\"size\":668},\"space_between_tablet\":{\"unit\":\"px\",\"size\":30},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"media-carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"182c449b\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":607},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":35,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/4.png\"},\"background_position\":\"bottom right\",\"background_size\":\"cover\",\"background_overlay_color\":\"#ffffff\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":66},\"background_overlay_color_b\":\"#ffffff\",\"background_overlay_gradient_type\":\"radial\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.13},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"custom_height_tablet\":{\"unit\":\"px\",\"size\":281},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\"},\"elements\":[{\"id\":\"1d0793f2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":51.667,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true}},\"elements\":[{\"id\":\"578a12d5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secret Season\",\"title_color\":\"#db1529\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":21},\"typography_font_family\":\"Catamaran\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.4},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"400\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1e01a826\",\"elType\":\"widget\",\"settings\":{\"title\":\"Outdoor <span1 style=color:#4b6f93;>skiing<\\/span1> lodge !\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":57},\"typography_font_family\":\"Catamaran\",\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_font_style\":\"italic\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2.5},\"title_color\":\"#151515\",\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":44},\"header_size\":\"h3\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"83ad7b4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Insiders know that spring is the best time to bring your family to Snow Mountain. With unlimited sunshine, great snow conditions, and plenty of family-friendly activities to enjoy at both base areas, spring is the best-kept secret of the season. But hurry...with deals this good they won\'t stay a secret for long!\",\"align\":\"left\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17},\"typography_font_family\":\"Catamaran\",\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.6},\"text_shadow_text_shadow\":{\"horizontal\":1,\"vertical\":0,\"blur\":0,\"color\":\"#ffffff\"},\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_color\":\"rgba(255,255,255,0.81)\",\"_background_color_stop\":{\"unit\":\"%\",\"size\":37},\"_background_color_b\":\"rgba(242,242,242,0)\",\"_background_color_b_stop\":{\"unit\":\"%\",\"size\":67},\"_background_gradient_type\":\"radial\",\"align_mobile\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"header_size\":\"p\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"676fb5c4\",\"elType\":\"widget\",\"settings\":{\"text\":\"read more\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_family\":\"Catamaran\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_font_style\":\"italic\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0},\"background_color\":\"#db1529\",\"hover_animation\":\"grow\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"45\",\"bottom\":\"18\",\"left\":\"45\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"26432cad\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.25},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"3152c2b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#151515\",\"padding\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\"},\"elements\":[{\"id\":\"6fa1fee9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":29.583,\"content_position\":\"center\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#db1529\"},\"elements\":[{\"id\":\"763f21b0\",\"elType\":\"widget\",\"settings\":{\"testimonial_content\":\"\",\"testimonial_image\":{\"id\":36,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/profile2.png\"},\"testimonial_name\":\"DOMINIC VERDANA\",\"testimonial_job\":\"owner\",\"testimonial_image_position\":\"top\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Catamaran\",\"image_size\":{\"unit\":\"px\",\"size\":124},\"name_text_color\":\"#ffffff\",\"name_typography_typography\":\"custom\",\"name_typography_font_size\":{\"unit\":\"px\",\"size\":19},\"name_typography_font_family\":\"Catamaran\",\"name_typography_font_weight\":\"600\",\"name_typography_text_transform\":\"uppercase\",\"name_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0},\"job_text_color\":\"#898989\",\"job_typography_typography\":\"custom\",\"job_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"job_typography_font_family\":\"Catamaran\",\"job_typography_font_weight\":\"200\",\"job_typography_text_transform\":\"uppercase\",\"job_typography_line_height\":{\"unit\":\"em\",\"size\":0.8},\"job_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.4},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"testimonial\"}],\"isInner\":false},{\"id\":\"57211bc0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":70.417,\"content_position\":\"center\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"border_color\":\"#db1529\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"00\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6de22212\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"border_color\":\"#db1529\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"120\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"774766dd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"587cb8\",\"elType\":\"widget\",\"settings\":{\"title\":\"about <span1 style=color:#4b6f93;>us<\\/span1>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":54},\"typography_font_family\":\"Catamaran\",\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_font_style\":\"italic\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2.5},\"title_color\":\"#ffffff\",\"_margin\":{\"unit\":\"px\",\"top\":\"-14\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"custom_css\":\"span1{\\n    color:#4b6f93;\\n}\",\"align\":\"left\",\"align_mobile\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":44},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7432c7c8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Insiders know that spring is the best time to bring your family to Snow Mountain. With unlimited sunshine, great snow conditions, and plenty of family-friendly activities to enjoy at both base areas, spring is the best-kept secret of the season. But hurry...with deals this good they won\'t stay a secret for long!\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17},\"typography_font_family\":\"Catamaran\",\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5},\"text_shadow_text_shadow\":{\"horizontal\":1,\"vertical\":0,\"blur\":0,\"color\":\"#ffffff\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_color\":\"rgba(255,255,255,0.81)\",\"_background_color_stop\":{\"unit\":\"%\",\"size\":37},\"_background_color_b\":\"rgba(242,242,242,0)\",\"_background_color_b_stop\":{\"unit\":\"%\",\"size\":67},\"_background_gradient_type\":\"radial\",\"align_mobile\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"header_size\":\"p\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7130cba9\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"structure\":\"40\",\"background_background\":\"classic\",\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"center center\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.05},\"background_color\":\"#151515\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"020\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\"},\"elements\":[{\"id\":\"30b61ad8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"_inline_size_tablet\":25,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"c38360a\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"985\",\"description_text\":\"CLUB MEMBERS\",\"position\":\"left\",\"primary_color\":\"#db1529\",\"icon_space\":{\"unit\":\"px\",\"size\":14},\"icon_size\":{\"unit\":\"px\",\"size\":45},\"hover_animation\":\"grow\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":6},\"title_color\":\"#ffffff\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40},\"title_typography_font_family\":\"Catamaran\",\"title_typography_font_weight\":\"100\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":0.8},\"description_color\":\"#4b6f93\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":13},\"description_typography_font_family\":\"Catamaran\",\"description_typography_font_weight\":\"500\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_style\":\"normal\",\"description_typography_font_style\":\"normal\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34},\"text_align_tablet\":\"left\",\"text_align_mobile\":\"center\",\"icon_space_tablet\":{\"unit\":\"px\",\"size\":8},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"5ac8d7fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"_inline_size_tablet\":25,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"3b0b4d2e\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"40\",\"description_text\":\"KM TRACKS\",\"position\":\"left\",\"primary_color\":\"#db1529\",\"icon_space\":{\"unit\":\"px\",\"size\":14},\"icon_size\":{\"unit\":\"px\",\"size\":45},\"hover_animation\":\"grow\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":6},\"title_color\":\"#ffffff\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40},\"title_typography_font_family\":\"Catamaran\",\"title_typography_font_weight\":\"100\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":0.8},\"description_color\":\"#4b6f93\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":13},\"description_typography_font_family\":\"Catamaran\",\"description_typography_font_weight\":\"500\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_style\":\"normal\",\"description_typography_font_style\":\"normal\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34},\"icon_space_tablet\":{\"unit\":\"px\",\"size\":8},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30},\"text_align_tablet\":\"left\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13},\"text_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"502c1277\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"_inline_size_tablet\":25,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"75b8bba1\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"125\",\"description_text\":\"INSTRUCTORS\",\"position\":\"left\",\"primary_color\":\"#db1529\",\"icon_space\":{\"unit\":\"px\",\"size\":14},\"icon_size\":{\"unit\":\"px\",\"size\":45},\"hover_animation\":\"grow\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":6},\"title_color\":\"#ffffff\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40},\"title_typography_font_family\":\"Catamaran\",\"title_typography_font_weight\":\"100\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":0.8},\"description_color\":\"#4b6f93\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":13},\"description_typography_font_family\":\"Catamaran\",\"description_typography_font_weight\":\"500\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_style\":\"normal\",\"description_typography_font_style\":\"normal\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_space_tablet\":{\"unit\":\"px\",\"size\":8},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30},\"text_align_tablet\":\"left\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13},\"text_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"155a7d20\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"_inline_size_tablet\":25,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"96d0598\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"30\",\"description_text\":\"below Celsius\",\"position\":\"left\",\"primary_color\":\"#db1529\",\"icon_space\":{\"unit\":\"px\",\"size\":14},\"icon_size\":{\"unit\":\"px\",\"size\":45},\"hover_animation\":\"grow\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":6},\"title_color\":\"#ffffff\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40},\"title_typography_font_family\":\"Catamaran\",\"title_typography_font_weight\":\"100\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":0.8},\"description_color\":\"#4b6f93\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":13},\"description_typography_font_family\":\"Catamaran\",\"description_typography_font_weight\":\"500\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_style\":\"normal\",\"description_typography_text_transform\":\"uppercase\",\"description_typography_font_style\":\"normal\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_space_tablet\":{\"unit\":\"px\",\"size\":8},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30},\"text_align_tablet\":\"left\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13},\"text_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5a73254\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":300},\"background_background\":\"classic\",\"background_image\":{\"id\":37,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/divider-1.png\"},\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"rgba(0,0,0,0)\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":54},\"background_overlay_color_b\":\"rgba(255,255,255,0.54)\",\"background_overlay_gradient_type\":\"radial\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1},\"background_position\":\"top center\",\"hide_mobile\":\"hidden-phone\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":124},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":216},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\"},\"elements\":[{\"id\":\"f9a467a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"35c8f84d\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5a349e\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"140\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":28,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Snow.png\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\"},\"elements\":[{\"id\":\"309eb89e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"47717efc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Clients <span1 style=color:#4b6f93;>say<\\/span1>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":57},\"typography_font_family\":\"Catamaran\",\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_font_style\":\"italic\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2.5},\"title_color\":\"#151515\",\"_margin\":{\"unit\":\"px\",\"top\":\"140\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"custom_css\":\"span1{\\n    color:#4b6f93;\\n}\",\"align\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"header_size\":\"h3\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":44},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3665f8ad\",\"elType\":\"widget\",\"settings\":{\"slides\":[{\"content\":\"I now know why it\\u2019s the leader of the pack in the pow board revolution.\",\"name\":\"JEREMY SLADEN\",\"title\":\"Bergen, Norway\",\"image\":{\"id\":38,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/1a.png\"},\"_id\":\"hlpp19l\"},{\"content\":\"When a community comes together and stands behind the individuals who shape our sport.\",\"name\":\"STEVE HARRIS\",\"title\":\"Squamish, BC\",\"image\":{\"id\":39,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/1c.png\"},\"_id\":\"bhwyja5\"},{\"content\":\"Nothing short of inspirational. We love you guys, we are snowboarding.\",\"name\":\"silvia snow\",\"title\":\"Seattle, WA\",\"image\":{\"id\":40,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/1b.png\"},\"_id\":\"vvr5bev\"}],\"layout\":\"image_above\",\"slides_per_view\":\"1\",\"width\":{\"unit\":\"%\",\"size\":55},\"arrows_size\":{\"unit\":\"px\",\"size\":38},\"content_gap\":{\"unit\":\"px\",\"size\":21},\"content_color\":\"#000000\",\"content_typography_typography\":\"custom\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"content_typography_font_family\":\"Catamaran\",\"content_typography_font_weight\":\"400\",\"content_typography_text_transform\":\"none\",\"content_typography_font_style\":\"italic\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5},\"name_color\":\"#191919\",\"name_typography_typography\":\"custom\",\"name_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"name_typography_font_family\":\"Catamaran\",\"name_typography_font_weight\":\"900\",\"name_typography_text_transform\":\"uppercase\",\"name_typography_font_style\":\"normal\",\"name_typography_line_height\":{\"unit\":\"em\",\"size\":0.4},\"name_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.4},\"title_color\":\"#db1529\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"title_typography_font_family\":\"Catamaran\",\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_font_style\":\"normal\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":2.2},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5},\"image_size\":{\"unit\":\"px\",\"size\":90},\"image_gap\":{\"unit\":\"px\",\"size\":0},\"image_border\":\"yes\",\"image_border_color\":\"rgba(75,111,147,0.29)\",\"image_border_width\":{\"unit\":\"px\",\"size\":4},\"image_border_radius\":{\"unit\":\"px\",\"size\":100},\"arrows_color\":\"#db1529\",\"pagination_size\":{\"unit\":\"px\",\"size\":7},\"pagination_color\":\"#db1529\",\"_margin\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_mobile\":{\"unit\":\"px\",\"size\":327},\"space_between_mobile\":{\"unit\":\"px\",\"size\":13},\"content_gap_mobile\":{\"unit\":\"px\",\"size\":14},\"content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16},\"name_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":17},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":17},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"testimonial-carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3812b07d\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#151515\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"8\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_color_b\":\"#151515\",\"background_gradient_type\":\"radial\",\"background_overlay_image\":{\"id\":41,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/8522.png\"},\"background_overlay_position\":\"center right\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.11},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"gap\":\"no\",\"background_overlay_repeat\":\"no-repeat\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":167},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\"},\"elements\":[{\"id\":\"3217ea46\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.75,\"content_position\":\"center\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"80\",\"bottom\":\"40\",\"left\":\"80\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"15f078ce\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"placeholder\":\"Sign up for special deals\",\"width\":\"66\",\"field_value\":\"\",\"field_options\":\"\",\"inline_list\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"custom_id\":\"email\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"field_html\":\"\",\"recaptcha_badge\":\"bottomright\"}],\"input_size\":\"lg\",\"show_labels\":\"\",\"button_text\":\"sign up\",\"button_size\":\"lg\",\"button_width\":\"33\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"The form was sent successfully!\",\"error_message\":\"There\'s something wrong... Please fill in the required fields.\",\"required_field_message\":\"Required\",\"invalid_message\":\"There\'s something wrong... The form is invalid.\",\"subscriber_already_exists_message\":\"Subscriber already exist.\",\"column_gap\":{\"unit\":\"px\",\"size\":0},\"field_text_color\":\"#ffffff\",\"field_typography_typography\":\"custom\",\"field_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"field_typography_font_family\":\"Catamaran\",\"field_typography_font_weight\":\"500\",\"field_background_color\":\"rgba(255,255,255,0.14)\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_text_color\":\"#ffffff\",\"button_typography_typography\":\"custom\",\"button_typography_font_family\":\"Catamaran\",\"button_background_color\":\"#db1529\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"button_typography_font_weight\":\"600\",\"button_typography_text_transform\":\"uppercase\",\"button_typography_font_style\":\"italic\",\"field_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.4},\"button_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.4},\"button_background_hover_color\":\"#db1529\",\"button_hover_animation\":\"grow\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":false},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"email_to\":\"maintenance@ondisplaycreative.com\",\"email_subject\":\"New message from \\\"OnDisplay Creative\\\"\",\"email_from\":\"email@23.235.208.11\",\"email_from_name\":\"OnDisplay Creative\",\"email_to_2\":\"maintenance@ondisplaycreative.com\",\"email_subject_2\":\"New message from \\\"OnDisplay Creative\\\"\",\"email_from_2\":\"email@23.235.208.11\",\"email_from_name_2\":\"OnDisplay Creative\",\"email_reply_to_2\":\"maintenance@ondisplaycreative.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false},{\"id\":\"6ad15533\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":26.333,\"content_position\":\"center\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"174b5094\",\"elType\":\"widget\",\"settings\":{\"title\":\"get social:\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19},\"typography_font_family\":\"Catamaran\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.4},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"right\",\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"1fae618c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23.913,\"content_position\":\"center\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"563a6180\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"tygvwhy\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"},\"social_icon\":{\"value\":\"fab fa-wordpress\",\"library\":\"fa-brands\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"},{\"social\":\"fa fa-twitter\",\"_id\":\"d3gf3n8\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"},\"social_icon\":{\"value\":\"fab fa-wordpress\",\"library\":\"fa-brands\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"},{\"social\":\"fa fa-google-plus\",\"_id\":\"us7irc8\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"},\"social_icon\":{\"value\":\"fab fa-wordpress\",\"library\":\"fa-brands\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"},{\"social\":\"fa fa-youtube\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"},\"_id\":\"pgz2qq0\",\"social_icon\":{\"value\":\"fab fa-wordpress\",\"library\":\"fa-brands\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"},{\"social\":\"fa fa-instagram\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"},\"_id\":\"szpior4\",\"social_icon\":{\"value\":\"fab fa-wordpress\",\"library\":\"fa-brands\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"}],\"shape\":\"circle\",\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(219,21,41,0)\",\"icon_secondary_color\":\"#ffffff\",\"icon_size\":{\"unit\":\"px\",\"size\":17},\"icon_padding\":{\"unit\":\"em\",\"size\":0.5},\"icon_spacing\":{\"unit\":\"px\",\"size\":20},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#db1529\",\"hover_primary_color\":\"#db1529\",\"hover_animation\":\"grow\",\"align_mobile\":\"center\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":16},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"align_tablet\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":false}],\"isInner\":false}]'),(165,43,'_elementor_edit_mode','builder'),(166,43,'_elementor_template_type','post'),(167,43,'_elementor_version','2.6.8'),(168,43,'_elementor_pro_version','2.6.5'),(169,43,'_wp_page_template','default'),(170,43,'_elementor_elements_usage','a:13:{s:8:\"template\";i:1;s:6:\"column\";i:18;s:7:\"section\";i:10;s:7:\"heading\";i:11;s:5:\"image\";i:1;s:14:\"media-carousel\";i:1;s:6:\"button\";i:1;s:11:\"testimonial\";i:1;s:8:\"icon-box\";i:4;s:6:\"spacer\";i:1;s:20:\"testimonial-carousel\";i:1;s:4:\"form\";i:1;s:12:\"social-icons\";i:1;}'),(171,43,'_elementor_data','[{\"id\":\"644ff33\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"28694df\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1885cb5\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"217194a\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":85},\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"id\":29,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/BG24.png\"},\"background_position\":\"bottom center\",\"background_size\":\"cover\",\"background_overlay_color\":\"rgba(0,0,0,0)\",\"background_overlay_color_b\":\"#ffffff\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":130},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1},\"shape_divider_bottom_color\":\"#151515\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":164},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":24},\"shape_divider_bottom_negative\":\"yes\",\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":67},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\"},\"elements\":[{\"id\":\"1bc63195\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":38.75,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"isInner\":false},{\"id\":\"3d65c192\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":68.346,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"5d5c77f3\",\"elType\":\"widget\",\"settings\":{\"title\":\"wipeOUT<span3><\\/span3>\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":148},\"typography_font_family\":\"Catamaran\",\"typography_font_weight\":\"900\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-5.5},\"_margin\":{\"unit\":\"px\",\"top\":\"330\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":0,\"_background_background\":\"classic\",\"_background_color\":\"rgba(255,255,255,0)\",\"typography_font_style\":\"italic\",\"align_mobile\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":63},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":123},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"600d421c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":28,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Snow.png\"},\"image_size\":\"full\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"-310\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"opacity\":{\"unit\":\"px\",\"size\":0.86},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-130\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-270\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"769e968e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Noise around us has become a bit of a mantra around here. So for 018 we\\u2019ve again applied what we\\u2019ve learnt in the past to push the needle forward in our own unique way!\",\"align\":\"left\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17},\"typography_font_family\":\"Catamaran\",\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5},\"text_shadow_text_shadow\":{\"horizontal\":1,\"vertical\":0,\"blur\":0,\"color\":\"#ffffff\"},\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"240\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"_background_background\":\"gradient\",\"_background_color\":\"rgba(255,255,255,0.81)\",\"_background_color_stop\":{\"unit\":\"%\",\"size\":37},\"_background_color_b\":\"rgba(242,242,242,0)\",\"_background_color_b_stop\":{\"unit\":\"%\",\"size\":67},\"_background_gradient_type\":\"radial\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":false},\"_border_color\":\"#db1529\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"align_mobile\":\"left\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"130\",\"isLinked\":false},\"header_size\":\"p\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6a3ec524\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":670},\"background_background\":\"classic\",\"background_color\":\"#151515\",\"margin\":{\"unit\":\"px\",\"top\":\"1\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"108\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":28,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Snow.png\"},\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.28},\"background_color_b\":\"#1e1e1e\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\"},\"elements\":[{\"id\":\"3fd3371a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"6483af36\",\"elType\":\"widget\",\"settings\":{\"title\":\"featured <span1 style=color:#4b6f93;>resorts<\\/span1>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":54},\"typography_font_family\":\"Catamaran\",\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_font_style\":\"italic\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2.5},\"align\":\"center\",\"title_color\":\"#f9f6ed\",\"_margin\":{\"unit\":\"px\",\"top\":\"140\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":44},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7b4ab6fd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Serving up tips, tricks, guides and inspiration for your next outdoor adventure - we\'ve got you covered.\\n\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17},\"typography_font_family\":\"Catamaran\",\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5},\"text_shadow_text_shadow\":{\"horizontal\":1,\"vertical\":0,\"blur\":0,\"color\":\"#ffffff\"},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"180\",\"bottom\":\"0\",\"left\":\"180\",\"isLinked\":false},\"_background_color\":\"rgba(255,255,255,0.81)\",\"_background_color_stop\":{\"unit\":\"%\",\"size\":37},\"_background_color_b\":\"rgba(242,242,242,0)\",\"_background_color_b_stop\":{\"unit\":\"%\",\"size\":67},\"_background_gradient_type\":\"radial\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":22},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"header_size\":\"p\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"15655030\",\"elType\":\"widget\",\"settings\":{\"slides\":[{\"image\":{\"id\":30,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/johannes-waibel-4298.png\"},\"_id\":\"0h84y07\",\"type\":\"image\",\"image_link_to_type\":\"file\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"image\":{\"id\":31,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/lukas-neasi-65748.png\"},\"_id\":\"7et6fjl\",\"type\":\"image\",\"image_link_to_type\":\"file\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"image\":{\"id\":32,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/markos-mant-228858.png\"},\"_id\":\"wiglfsd\",\"type\":\"image\",\"image_link_to_type\":\"file\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"image\":{\"id\":33,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/mattias-olsson-160612.png\"},\"_id\":\"so3n2jg\",\"type\":\"image\",\"image_link_to_type\":\"file\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"image\":{\"id\":34,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/tomas-kodydek-7492.png\"},\"_id\":\"a2t5cnv\",\"type\":\"image\",\"image_link_to_type\":\"file\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"slides_per_view\":\"3\",\"height\":{\"unit\":\"px\",\"size\":453},\"width\":{\"unit\":\"%\",\"size\":90},\"overlay\":\"icon\",\"space_between\":{\"unit\":\"px\",\"size\":46},\"slide_background_color\":\"#c6c6c6\",\"slide_border_radius\":{\"unit\":\"px\",\"size\":5},\"arrows_size\":{\"unit\":\"px\",\"size\":27},\"arrows_color\":\"#db1529\",\"pagination_size\":{\"unit\":\"px\",\"size\":7},\"pagination_color\":\"#db1529\",\"_margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"overlay_background_color\":\"rgba(255,255,255,0.82)\",\"overlay_color\":\"#db1529\",\"caption_typography_typography\":\"custom\",\"caption_typography_font_size\":{\"unit\":\"px\",\"size\":24},\"caption_typography_font_family\":\"Catamaran\",\"caption_typography_font_weight\":\"500\",\"caption_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.4},\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"space_between_mobile\":{\"unit\":\"px\",\"size\":16},\"caption_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"height_mobile\":{\"unit\":\"px\",\"size\":405},\"width_mobile\":{\"unit\":\"px\",\"size\":267},\"slides_per_view_tablet\":\"2\",\"width_tablet\":{\"unit\":\"px\",\"size\":668},\"space_between_tablet\":{\"unit\":\"px\",\"size\":30},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"media-carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"182c449b\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":607},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":35,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/4.png\"},\"background_position\":\"bottom right\",\"background_size\":\"cover\",\"background_overlay_color\":\"#ffffff\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":66},\"background_overlay_color_b\":\"#ffffff\",\"background_overlay_gradient_type\":\"radial\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.13},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"custom_height_tablet\":{\"unit\":\"px\",\"size\":281},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\"},\"elements\":[{\"id\":\"1d0793f2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":51.667,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true}},\"elements\":[{\"id\":\"578a12d5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secret Season\",\"title_color\":\"#db1529\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":21},\"typography_font_family\":\"Catamaran\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.4},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"400\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1e01a826\",\"elType\":\"widget\",\"settings\":{\"title\":\"Outdoor <span1 style=color:#4b6f93;>skiing<\\/span1> lodge !\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":57},\"typography_font_family\":\"Catamaran\",\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_font_style\":\"italic\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2.5},\"title_color\":\"#151515\",\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":44},\"header_size\":\"h3\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"83ad7b4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Insiders know that spring is the best time to bring your family to Snow Mountain. With unlimited sunshine, great snow conditions, and plenty of family-friendly activities to enjoy at both base areas, spring is the best-kept secret of the season. But hurry...with deals this good they won\'t stay a secret for long!\",\"align\":\"left\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17},\"typography_font_family\":\"Catamaran\",\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.6},\"text_shadow_text_shadow\":{\"horizontal\":1,\"vertical\":0,\"blur\":0,\"color\":\"#ffffff\"},\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_color\":\"rgba(255,255,255,0.81)\",\"_background_color_stop\":{\"unit\":\"%\",\"size\":37},\"_background_color_b\":\"rgba(242,242,242,0)\",\"_background_color_b_stop\":{\"unit\":\"%\",\"size\":67},\"_background_gradient_type\":\"radial\",\"align_mobile\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"header_size\":\"p\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"676fb5c4\",\"elType\":\"widget\",\"settings\":{\"text\":\"read more\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_family\":\"Catamaran\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_font_style\":\"italic\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0},\"background_color\":\"#db1529\",\"hover_animation\":\"grow\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"45\",\"bottom\":\"18\",\"left\":\"45\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"26432cad\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.25},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"3152c2b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#151515\",\"padding\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\"},\"elements\":[{\"id\":\"6fa1fee9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":29.583,\"content_position\":\"center\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#db1529\"},\"elements\":[{\"id\":\"763f21b0\",\"elType\":\"widget\",\"settings\":{\"testimonial_content\":\"\",\"testimonial_image\":{\"id\":36,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/profile2.png\"},\"testimonial_name\":\"DOMINIC VERDANA\",\"testimonial_job\":\"owner\",\"testimonial_image_position\":\"top\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Catamaran\",\"image_size\":{\"unit\":\"px\",\"size\":124},\"name_text_color\":\"#ffffff\",\"name_typography_typography\":\"custom\",\"name_typography_font_size\":{\"unit\":\"px\",\"size\":19},\"name_typography_font_family\":\"Catamaran\",\"name_typography_font_weight\":\"600\",\"name_typography_text_transform\":\"uppercase\",\"name_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0},\"job_text_color\":\"#898989\",\"job_typography_typography\":\"custom\",\"job_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"job_typography_font_family\":\"Catamaran\",\"job_typography_font_weight\":\"200\",\"job_typography_text_transform\":\"uppercase\",\"job_typography_line_height\":{\"unit\":\"em\",\"size\":0.8},\"job_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.4},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"testimonial\"}],\"isInner\":false},{\"id\":\"57211bc0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":70.417,\"content_position\":\"center\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"border_color\":\"#db1529\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"00\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6de22212\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"border_color\":\"#db1529\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"120\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"774766dd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"587cb8\",\"elType\":\"widget\",\"settings\":{\"title\":\"about <span1 style=color:#4b6f93;>us<\\/span1>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":54},\"typography_font_family\":\"Catamaran\",\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_font_style\":\"italic\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2.5},\"title_color\":\"#ffffff\",\"_margin\":{\"unit\":\"px\",\"top\":\"-14\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"custom_css\":\"span1{\\n    color:#4b6f93;\\n}\",\"align\":\"left\",\"align_mobile\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":44},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7432c7c8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Insiders know that spring is the best time to bring your family to Snow Mountain. With unlimited sunshine, great snow conditions, and plenty of family-friendly activities to enjoy at both base areas, spring is the best-kept secret of the season. But hurry...with deals this good they won\'t stay a secret for long!\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17},\"typography_font_family\":\"Catamaran\",\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5},\"text_shadow_text_shadow\":{\"horizontal\":1,\"vertical\":0,\"blur\":0,\"color\":\"#ffffff\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_color\":\"rgba(255,255,255,0.81)\",\"_background_color_stop\":{\"unit\":\"%\",\"size\":37},\"_background_color_b\":\"rgba(242,242,242,0)\",\"_background_color_b_stop\":{\"unit\":\"%\",\"size\":67},\"_background_gradient_type\":\"radial\",\"align_mobile\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"header_size\":\"p\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7130cba9\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"structure\":\"40\",\"background_background\":\"classic\",\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"center center\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.05},\"background_color\":\"#151515\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"020\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\"},\"elements\":[{\"id\":\"30b61ad8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"_inline_size_tablet\":25,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"c38360a\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"985\",\"description_text\":\"CLUB MEMBERS\",\"position\":\"left\",\"primary_color\":\"#db1529\",\"icon_space\":{\"unit\":\"px\",\"size\":14},\"icon_size\":{\"unit\":\"px\",\"size\":45},\"hover_animation\":\"grow\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":6},\"title_color\":\"#ffffff\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40},\"title_typography_font_family\":\"Catamaran\",\"title_typography_font_weight\":\"100\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":0.8},\"description_color\":\"#4b6f93\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":13},\"description_typography_font_family\":\"Catamaran\",\"description_typography_font_weight\":\"500\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_style\":\"normal\",\"description_typography_font_style\":\"normal\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34},\"text_align_tablet\":\"left\",\"text_align_mobile\":\"center\",\"icon_space_tablet\":{\"unit\":\"px\",\"size\":8},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"5ac8d7fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"_inline_size_tablet\":25,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"3b0b4d2e\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"40\",\"description_text\":\"KM TRACKS\",\"position\":\"left\",\"primary_color\":\"#db1529\",\"icon_space\":{\"unit\":\"px\",\"size\":14},\"icon_size\":{\"unit\":\"px\",\"size\":45},\"hover_animation\":\"grow\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":6},\"title_color\":\"#ffffff\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40},\"title_typography_font_family\":\"Catamaran\",\"title_typography_font_weight\":\"100\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":0.8},\"description_color\":\"#4b6f93\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":13},\"description_typography_font_family\":\"Catamaran\",\"description_typography_font_weight\":\"500\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_style\":\"normal\",\"description_typography_font_style\":\"normal\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34},\"icon_space_tablet\":{\"unit\":\"px\",\"size\":8},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30},\"text_align_tablet\":\"left\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13},\"text_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"502c1277\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"_inline_size_tablet\":25,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"75b8bba1\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"125\",\"description_text\":\"INSTRUCTORS\",\"position\":\"left\",\"primary_color\":\"#db1529\",\"icon_space\":{\"unit\":\"px\",\"size\":14},\"icon_size\":{\"unit\":\"px\",\"size\":45},\"hover_animation\":\"grow\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":6},\"title_color\":\"#ffffff\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40},\"title_typography_font_family\":\"Catamaran\",\"title_typography_font_weight\":\"100\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":0.8},\"description_color\":\"#4b6f93\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":13},\"description_typography_font_family\":\"Catamaran\",\"description_typography_font_weight\":\"500\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_style\":\"normal\",\"description_typography_font_style\":\"normal\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_space_tablet\":{\"unit\":\"px\",\"size\":8},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30},\"text_align_tablet\":\"left\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13},\"text_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"155a7d20\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"_inline_size_tablet\":25,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"96d0598\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"30\",\"description_text\":\"below Celsius\",\"position\":\"left\",\"primary_color\":\"#db1529\",\"icon_space\":{\"unit\":\"px\",\"size\":14},\"icon_size\":{\"unit\":\"px\",\"size\":45},\"hover_animation\":\"grow\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":6},\"title_color\":\"#ffffff\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40},\"title_typography_font_family\":\"Catamaran\",\"title_typography_font_weight\":\"100\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":0.8},\"description_color\":\"#4b6f93\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":13},\"description_typography_font_family\":\"Catamaran\",\"description_typography_font_weight\":\"500\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_style\":\"normal\",\"description_typography_text_transform\":\"uppercase\",\"description_typography_font_style\":\"normal\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_space_tablet\":{\"unit\":\"px\",\"size\":8},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30},\"text_align_tablet\":\"left\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13},\"text_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5a73254\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":300},\"background_background\":\"classic\",\"background_image\":{\"id\":37,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/divider-1.png\"},\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"rgba(0,0,0,0)\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":54},\"background_overlay_color_b\":\"rgba(255,255,255,0.54)\",\"background_overlay_gradient_type\":\"radial\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1},\"background_position\":\"top center\",\"hide_mobile\":\"hidden-phone\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":124},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":216},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\"},\"elements\":[{\"id\":\"f9a467a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"35c8f84d\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5a349e\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"140\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":28,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Snow.png\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\"},\"elements\":[{\"id\":\"309eb89e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"47717efc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Clients <span1 style=color:#4b6f93;>say<\\/span1>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":57},\"typography_font_family\":\"Catamaran\",\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_font_style\":\"italic\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2.5},\"title_color\":\"#151515\",\"_margin\":{\"unit\":\"px\",\"top\":\"140\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"custom_css\":\"span1{\\n    color:#4b6f93;\\n}\",\"align\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"header_size\":\"h3\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":44},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3665f8ad\",\"elType\":\"widget\",\"settings\":{\"slides\":[{\"content\":\"I now know why it\\u2019s the leader of the pack in the pow board revolution.\",\"name\":\"JEREMY SLADEN\",\"title\":\"Bergen, Norway\",\"image\":{\"id\":38,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/1a.png\"},\"_id\":\"hlpp19l\"},{\"content\":\"When a community comes together and stands behind the individuals who shape our sport.\",\"name\":\"STEVE HARRIS\",\"title\":\"Squamish, BC\",\"image\":{\"id\":39,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/1c.png\"},\"_id\":\"bhwyja5\"},{\"content\":\"Nothing short of inspirational. We love you guys, we are snowboarding.\",\"name\":\"silvia snow\",\"title\":\"Seattle, WA\",\"image\":{\"id\":40,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/1b.png\"},\"_id\":\"vvr5bev\"}],\"layout\":\"image_above\",\"slides_per_view\":\"1\",\"width\":{\"unit\":\"%\",\"size\":55},\"arrows_size\":{\"unit\":\"px\",\"size\":38},\"content_gap\":{\"unit\":\"px\",\"size\":21},\"content_color\":\"#000000\",\"content_typography_typography\":\"custom\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"content_typography_font_family\":\"Catamaran\",\"content_typography_font_weight\":\"400\",\"content_typography_text_transform\":\"none\",\"content_typography_font_style\":\"italic\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5},\"name_color\":\"#191919\",\"name_typography_typography\":\"custom\",\"name_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"name_typography_font_family\":\"Catamaran\",\"name_typography_font_weight\":\"900\",\"name_typography_text_transform\":\"uppercase\",\"name_typography_font_style\":\"normal\",\"name_typography_line_height\":{\"unit\":\"em\",\"size\":0.4},\"name_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.4},\"title_color\":\"#db1529\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"title_typography_font_family\":\"Catamaran\",\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_font_style\":\"normal\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":2.2},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5},\"image_size\":{\"unit\":\"px\",\"size\":90},\"image_gap\":{\"unit\":\"px\",\"size\":0},\"image_border\":\"yes\",\"image_border_color\":\"rgba(75,111,147,0.29)\",\"image_border_width\":{\"unit\":\"px\",\"size\":4},\"image_border_radius\":{\"unit\":\"px\",\"size\":100},\"arrows_color\":\"#db1529\",\"pagination_size\":{\"unit\":\"px\",\"size\":7},\"pagination_color\":\"#db1529\",\"_margin\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_mobile\":{\"unit\":\"px\",\"size\":327},\"space_between_mobile\":{\"unit\":\"px\",\"size\":13},\"content_gap_mobile\":{\"unit\":\"px\",\"size\":14},\"content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16},\"name_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":17},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":17},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"testimonial-carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3812b07d\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#151515\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"8\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_color_b\":\"#151515\",\"background_gradient_type\":\"radial\",\"background_overlay_image\":{\"id\":41,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/8522.png\"},\"background_overlay_position\":\"center right\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.11},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"gap\":\"no\",\"background_overlay_repeat\":\"no-repeat\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":167},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\"},\"elements\":[{\"id\":\"3217ea46\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.75,\"content_position\":\"center\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"80\",\"bottom\":\"40\",\"left\":\"80\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"15f078ce\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"placeholder\":\"Sign up for special deals\",\"width\":\"66\",\"field_value\":\"\",\"field_options\":\"\",\"inline_list\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"custom_id\":\"email\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"field_html\":\"\",\"recaptcha_badge\":\"bottomright\"}],\"input_size\":\"lg\",\"show_labels\":\"\",\"button_text\":\"sign up\",\"button_size\":\"lg\",\"button_width\":\"33\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"The form was sent successfully!\",\"error_message\":\"There\'s something wrong... Please fill in the required fields.\",\"required_field_message\":\"Required\",\"invalid_message\":\"There\'s something wrong... The form is invalid.\",\"subscriber_already_exists_message\":\"Subscriber already exist.\",\"column_gap\":{\"unit\":\"px\",\"size\":0},\"field_text_color\":\"#ffffff\",\"field_typography_typography\":\"custom\",\"field_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"field_typography_font_family\":\"Catamaran\",\"field_typography_font_weight\":\"500\",\"field_background_color\":\"rgba(255,255,255,0.14)\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_text_color\":\"#ffffff\",\"button_typography_typography\":\"custom\",\"button_typography_font_family\":\"Catamaran\",\"button_background_color\":\"#db1529\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"button_typography_font_weight\":\"600\",\"button_typography_text_transform\":\"uppercase\",\"button_typography_font_style\":\"italic\",\"field_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.4},\"button_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.4},\"button_background_hover_color\":\"#db1529\",\"button_hover_animation\":\"grow\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":false},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"email_to\":\"maintenance@ondisplaycreative.com\",\"email_subject\":\"New message from \\\"OnDisplay Creative\\\"\",\"email_from\":\"email@23.235.208.11\",\"email_from_name\":\"OnDisplay Creative\",\"email_to_2\":\"maintenance@ondisplaycreative.com\",\"email_subject_2\":\"New message from \\\"OnDisplay Creative\\\"\",\"email_from_2\":\"email@23.235.208.11\",\"email_from_name_2\":\"OnDisplay Creative\",\"email_reply_to_2\":\"maintenance@ondisplaycreative.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false},{\"id\":\"6ad15533\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":26.333,\"content_position\":\"center\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"174b5094\",\"elType\":\"widget\",\"settings\":{\"title\":\"get social:\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19},\"typography_font_family\":\"Catamaran\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.4},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"right\",\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"1fae618c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23.913,\"content_position\":\"center\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"563a6180\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"tygvwhy\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"},\"social_icon\":{\"value\":\"fab fa-wordpress\",\"library\":\"fa-brands\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"},{\"social\":\"fa fa-twitter\",\"_id\":\"d3gf3n8\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"},\"social_icon\":{\"value\":\"fab fa-wordpress\",\"library\":\"fa-brands\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"},{\"social\":\"fa fa-google-plus\",\"_id\":\"us7irc8\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"},\"social_icon\":{\"value\":\"fab fa-wordpress\",\"library\":\"fa-brands\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"},{\"social\":\"fa fa-youtube\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"},\"_id\":\"pgz2qq0\",\"social_icon\":{\"value\":\"fab fa-wordpress\",\"library\":\"fa-brands\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"},{\"social\":\"fa fa-instagram\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"},\"_id\":\"szpior4\",\"social_icon\":{\"value\":\"fab fa-wordpress\",\"library\":\"fa-brands\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"}],\"shape\":\"circle\",\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(219,21,41,0)\",\"icon_secondary_color\":\"#ffffff\",\"icon_size\":{\"unit\":\"px\",\"size\":17},\"icon_padding\":{\"unit\":\"em\",\"size\":0.5},\"icon_spacing\":{\"unit\":\"px\",\"size\":20},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#db1529\",\"hover_primary_color\":\"#db1529\",\"hover_animation\":\"grow\",\"align_mobile\":\"center\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":16},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"align_tablet\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":false}],\"isInner\":false}]'),(232,53,'_elementor_template_type','post'),(188,45,'_elementor_data','[{\"id\":\"644ff33\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"28694df\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1885cb5\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"template\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"217194a\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":85},\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"id\":29,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/BG24.png\"},\"background_position\":\"bottom center\",\"background_size\":\"cover\",\"background_overlay_color\":\"rgba(0,0,0,0)\",\"background_overlay_color_b\":\"#ffffff\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":130},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1},\"shape_divider_bottom_color\":\"#151515\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":164},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":24},\"shape_divider_bottom_negative\":\"yes\",\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":67},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\"},\"elements\":[{\"id\":\"1bc63195\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":38.75,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"isInner\":false},{\"id\":\"3d65c192\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":68.346,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"5d5c77f3\",\"elType\":\"widget\",\"settings\":{\"title\":\"wipeOUT<span3><\\/span3>\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":148},\"typography_font_family\":\"Catamaran\",\"typography_font_weight\":\"900\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-5.5},\"_margin\":{\"unit\":\"px\",\"top\":\"330\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":0,\"_background_background\":\"classic\",\"_background_color\":\"rgba(255,255,255,0)\",\"typography_font_style\":\"italic\",\"align_mobile\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":63},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":123},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"600d421c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":28,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Snow.png\"},\"image_size\":\"full\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"-310\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"opacity\":{\"unit\":\"px\",\"size\":0.86},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-130\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-270\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"769e968e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Noise around us has become a bit of a mantra around here. So for 018 we\\u2019ve again applied what we\\u2019ve learnt in the past to push the needle forward in our own unique way!\",\"align\":\"left\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17},\"typography_font_family\":\"Catamaran\",\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5},\"text_shadow_text_shadow\":{\"horizontal\":1,\"vertical\":0,\"blur\":0,\"color\":\"#ffffff\"},\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"240\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"_background_background\":\"gradient\",\"_background_color\":\"rgba(255,255,255,0.81)\",\"_background_color_stop\":{\"unit\":\"%\",\"size\":37},\"_background_color_b\":\"rgba(242,242,242,0)\",\"_background_color_b_stop\":{\"unit\":\"%\",\"size\":67},\"_background_gradient_type\":\"radial\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":false},\"_border_color\":\"#db1529\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"align_mobile\":\"left\",\"align_tablet\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"130\",\"isLinked\":false},\"header_size\":\"p\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6a3ec524\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":670},\"background_background\":\"classic\",\"background_color\":\"#151515\",\"margin\":{\"unit\":\"px\",\"top\":\"1\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"108\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":28,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Snow.png\"},\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.28},\"background_color_b\":\"#1e1e1e\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\"},\"elements\":[{\"id\":\"3fd3371a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"6483af36\",\"elType\":\"widget\",\"settings\":{\"title\":\"featured <span1 style=color:#4b6f93;>resorts<\\/span1>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":54},\"typography_font_family\":\"Catamaran\",\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_font_style\":\"italic\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2.5},\"align\":\"center\",\"title_color\":\"#f9f6ed\",\"_margin\":{\"unit\":\"px\",\"top\":\"140\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":44},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7b4ab6fd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Serving up tips, tricks, guides and inspiration for your next outdoor adventure - we\'ve got you covered.\\n\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17},\"typography_font_family\":\"Catamaran\",\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5},\"text_shadow_text_shadow\":{\"horizontal\":1,\"vertical\":0,\"blur\":0,\"color\":\"#ffffff\"},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"180\",\"bottom\":\"0\",\"left\":\"180\",\"isLinked\":false},\"_background_color\":\"rgba(255,255,255,0.81)\",\"_background_color_stop\":{\"unit\":\"%\",\"size\":37},\"_background_color_b\":\"rgba(242,242,242,0)\",\"_background_color_b_stop\":{\"unit\":\"%\",\"size\":67},\"_background_gradient_type\":\"radial\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":22},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"header_size\":\"p\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"15655030\",\"elType\":\"widget\",\"settings\":{\"slides\":[{\"image\":{\"id\":30,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/johannes-waibel-4298.png\"},\"_id\":\"0h84y07\",\"type\":\"image\",\"image_link_to_type\":\"file\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"image\":{\"id\":31,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/lukas-neasi-65748.png\"},\"_id\":\"7et6fjl\",\"type\":\"image\",\"image_link_to_type\":\"file\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"image\":{\"id\":32,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/markos-mant-228858.png\"},\"_id\":\"wiglfsd\",\"type\":\"image\",\"image_link_to_type\":\"file\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"image\":{\"id\":33,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/mattias-olsson-160612.png\"},\"_id\":\"so3n2jg\",\"type\":\"image\",\"image_link_to_type\":\"file\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"image\":{\"id\":34,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/tomas-kodydek-7492.png\"},\"_id\":\"a2t5cnv\",\"type\":\"image\",\"image_link_to_type\":\"file\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"slides_per_view\":\"3\",\"height\":{\"unit\":\"px\",\"size\":453},\"width\":{\"unit\":\"%\",\"size\":90},\"overlay\":\"icon\",\"space_between\":{\"unit\":\"px\",\"size\":46},\"slide_background_color\":\"#c6c6c6\",\"slide_border_radius\":{\"unit\":\"px\",\"size\":5},\"arrows_size\":{\"unit\":\"px\",\"size\":27},\"arrows_color\":\"#db1529\",\"pagination_size\":{\"unit\":\"px\",\"size\":7},\"pagination_color\":\"#db1529\",\"_margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"overlay_background_color\":\"rgba(255,255,255,0.82)\",\"overlay_color\":\"#db1529\",\"caption_typography_typography\":\"custom\",\"caption_typography_font_size\":{\"unit\":\"px\",\"size\":24},\"caption_typography_font_family\":\"Catamaran\",\"caption_typography_font_weight\":\"500\",\"caption_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.4},\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"space_between_mobile\":{\"unit\":\"px\",\"size\":16},\"caption_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"height_mobile\":{\"unit\":\"px\",\"size\":405},\"width_mobile\":{\"unit\":\"px\",\"size\":267},\"slides_per_view_tablet\":\"2\",\"width_tablet\":{\"unit\":\"px\",\"size\":668},\"space_between_tablet\":{\"unit\":\"px\",\"size\":30},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"media-carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"182c449b\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":607},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":35,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/4.png\"},\"background_position\":\"bottom right\",\"background_size\":\"cover\",\"background_overlay_color\":\"#ffffff\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":66},\"background_overlay_color_b\":\"#ffffff\",\"background_overlay_gradient_type\":\"radial\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.13},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"custom_height_tablet\":{\"unit\":\"px\",\"size\":281},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\"},\"elements\":[{\"id\":\"1d0793f2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":51.667,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true}},\"elements\":[{\"id\":\"578a12d5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secret Season\",\"title_color\":\"#db1529\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":21},\"typography_font_family\":\"Catamaran\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.4},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"400\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1e01a826\",\"elType\":\"widget\",\"settings\":{\"title\":\"Outdoor <span1 style=color:#4b6f93;>skiing<\\/span1> lodge !\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":57},\"typography_font_family\":\"Catamaran\",\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_font_style\":\"italic\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2.5},\"title_color\":\"#151515\",\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":44},\"header_size\":\"h3\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"83ad7b4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Insiders know that spring is the best time to bring your family to Snow Mountain. With unlimited sunshine, great snow conditions, and plenty of family-friendly activities to enjoy at both base areas, spring is the best-kept secret of the season. But hurry...with deals this good they won\'t stay a secret for long!\",\"align\":\"left\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17},\"typography_font_family\":\"Catamaran\",\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.6},\"text_shadow_text_shadow\":{\"horizontal\":1,\"vertical\":0,\"blur\":0,\"color\":\"#ffffff\"},\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_color\":\"rgba(255,255,255,0.81)\",\"_background_color_stop\":{\"unit\":\"%\",\"size\":37},\"_background_color_b\":\"rgba(242,242,242,0)\",\"_background_color_b_stop\":{\"unit\":\"%\",\"size\":67},\"_background_gradient_type\":\"radial\",\"align_mobile\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"header_size\":\"p\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"676fb5c4\",\"elType\":\"widget\",\"settings\":{\"text\":\"read more\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_family\":\"Catamaran\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_font_style\":\"italic\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0},\"background_color\":\"#db1529\",\"hover_animation\":\"grow\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"45\",\"bottom\":\"18\",\"left\":\"45\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"26432cad\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.25},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"3152c2b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#151515\",\"padding\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\"},\"elements\":[{\"id\":\"6fa1fee9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":29.583,\"content_position\":\"center\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#db1529\"},\"elements\":[{\"id\":\"763f21b0\",\"elType\":\"widget\",\"settings\":{\"testimonial_content\":\"\",\"testimonial_image\":{\"id\":36,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/profile2.png\"},\"testimonial_name\":\"DOMINIC VERDANA\",\"testimonial_job\":\"owner\",\"testimonial_image_position\":\"top\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Catamaran\",\"image_size\":{\"unit\":\"px\",\"size\":124},\"name_text_color\":\"#ffffff\",\"name_typography_typography\":\"custom\",\"name_typography_font_size\":{\"unit\":\"px\",\"size\":19},\"name_typography_font_family\":\"Catamaran\",\"name_typography_font_weight\":\"600\",\"name_typography_text_transform\":\"uppercase\",\"name_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0},\"job_text_color\":\"#898989\",\"job_typography_typography\":\"custom\",\"job_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"job_typography_font_family\":\"Catamaran\",\"job_typography_font_weight\":\"200\",\"job_typography_text_transform\":\"uppercase\",\"job_typography_line_height\":{\"unit\":\"em\",\"size\":0.8},\"job_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.4},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"testimonial\"}],\"isInner\":false},{\"id\":\"57211bc0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":70.417,\"content_position\":\"center\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"border_color\":\"#db1529\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"00\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6de22212\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"border_color\":\"#db1529\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"120\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"774766dd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"587cb8\",\"elType\":\"widget\",\"settings\":{\"title\":\"about <span1 style=color:#4b6f93;>us<\\/span1>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":54},\"typography_font_family\":\"Catamaran\",\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_font_style\":\"italic\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2.5},\"title_color\":\"#ffffff\",\"_margin\":{\"unit\":\"px\",\"top\":\"-14\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"custom_css\":\"span1{\\n    color:#4b6f93;\\n}\",\"align\":\"left\",\"align_mobile\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":44},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7432c7c8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Insiders know that spring is the best time to bring your family to Snow Mountain. With unlimited sunshine, great snow conditions, and plenty of family-friendly activities to enjoy at both base areas, spring is the best-kept secret of the season. But hurry...with deals this good they won\'t stay a secret for long!\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17},\"typography_font_family\":\"Catamaran\",\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5},\"text_shadow_text_shadow\":{\"horizontal\":1,\"vertical\":0,\"blur\":0,\"color\":\"#ffffff\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_color\":\"rgba(255,255,255,0.81)\",\"_background_color_stop\":{\"unit\":\"%\",\"size\":37},\"_background_color_b\":\"rgba(242,242,242,0)\",\"_background_color_b_stop\":{\"unit\":\"%\",\"size\":67},\"_background_gradient_type\":\"radial\",\"align_mobile\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"header_size\":\"p\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7130cba9\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"structure\":\"40\",\"background_background\":\"classic\",\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"center center\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.05},\"background_color\":\"#151515\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"020\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\"},\"elements\":[{\"id\":\"30b61ad8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"_inline_size_tablet\":25,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"c38360a\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"985\",\"description_text\":\"CLUB MEMBERS\",\"position\":\"left\",\"primary_color\":\"#db1529\",\"icon_space\":{\"unit\":\"px\",\"size\":14},\"icon_size\":{\"unit\":\"px\",\"size\":45},\"hover_animation\":\"grow\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":6},\"title_color\":\"#ffffff\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40},\"title_typography_font_family\":\"Catamaran\",\"title_typography_font_weight\":\"100\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":0.8},\"description_color\":\"#4b6f93\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":13},\"description_typography_font_family\":\"Catamaran\",\"description_typography_font_weight\":\"500\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_style\":\"normal\",\"description_typography_font_style\":\"normal\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34},\"text_align_tablet\":\"left\",\"text_align_mobile\":\"center\",\"icon_space_tablet\":{\"unit\":\"px\",\"size\":8},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"5ac8d7fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"_inline_size_tablet\":25,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"3b0b4d2e\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"40\",\"description_text\":\"KM TRACKS\",\"position\":\"left\",\"primary_color\":\"#db1529\",\"icon_space\":{\"unit\":\"px\",\"size\":14},\"icon_size\":{\"unit\":\"px\",\"size\":45},\"hover_animation\":\"grow\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":6},\"title_color\":\"#ffffff\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40},\"title_typography_font_family\":\"Catamaran\",\"title_typography_font_weight\":\"100\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":0.8},\"description_color\":\"#4b6f93\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":13},\"description_typography_font_family\":\"Catamaran\",\"description_typography_font_weight\":\"500\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_style\":\"normal\",\"description_typography_font_style\":\"normal\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34},\"icon_space_tablet\":{\"unit\":\"px\",\"size\":8},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30},\"text_align_tablet\":\"left\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13},\"text_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"502c1277\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"_inline_size_tablet\":25,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"75b8bba1\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"125\",\"description_text\":\"INSTRUCTORS\",\"position\":\"left\",\"primary_color\":\"#db1529\",\"icon_space\":{\"unit\":\"px\",\"size\":14},\"icon_size\":{\"unit\":\"px\",\"size\":45},\"hover_animation\":\"grow\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":6},\"title_color\":\"#ffffff\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40},\"title_typography_font_family\":\"Catamaran\",\"title_typography_font_weight\":\"100\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":0.8},\"description_color\":\"#4b6f93\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":13},\"description_typography_font_family\":\"Catamaran\",\"description_typography_font_weight\":\"500\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_style\":\"normal\",\"description_typography_font_style\":\"normal\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_space_tablet\":{\"unit\":\"px\",\"size\":8},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30},\"text_align_tablet\":\"left\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13},\"text_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"155a7d20\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"_inline_size_tablet\":25,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"96d0598\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"30\",\"description_text\":\"below Celsius\",\"position\":\"left\",\"primary_color\":\"#db1529\",\"icon_space\":{\"unit\":\"px\",\"size\":14},\"icon_size\":{\"unit\":\"px\",\"size\":45},\"hover_animation\":\"grow\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":6},\"title_color\":\"#ffffff\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40},\"title_typography_font_family\":\"Catamaran\",\"title_typography_font_weight\":\"100\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":0.8},\"description_color\":\"#4b6f93\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":13},\"description_typography_font_family\":\"Catamaran\",\"description_typography_font_weight\":\"500\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_style\":\"normal\",\"description_typography_text_transform\":\"uppercase\",\"description_typography_font_style\":\"normal\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_space_tablet\":{\"unit\":\"px\",\"size\":8},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30},\"text_align_tablet\":\"left\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13},\"text_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5a73254\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":300},\"background_background\":\"classic\",\"background_image\":{\"id\":37,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/divider-1.png\"},\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"rgba(0,0,0,0)\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":54},\"background_overlay_color_b\":\"rgba(255,255,255,0.54)\",\"background_overlay_gradient_type\":\"radial\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1},\"background_position\":\"top center\",\"hide_mobile\":\"hidden-phone\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":124},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":216},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\"},\"elements\":[{\"id\":\"f9a467a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"35c8f84d\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":256,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5a349e\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"140\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":28,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Snow.png\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\"},\"elements\":[{\"id\":\"309eb89e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"47717efc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Clients <span1 style=color:#4b6f93;>say<\\/span1>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":57},\"typography_font_family\":\"Catamaran\",\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_font_style\":\"italic\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2.5},\"title_color\":\"#151515\",\"_margin\":{\"unit\":\"px\",\"top\":\"140\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"custom_css\":\"span1{\\n    color:#4b6f93;\\n}\",\"align\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"header_size\":\"h3\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":44},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3665f8ad\",\"elType\":\"widget\",\"settings\":{\"slides\":[{\"content\":\"I now know why it\\u2019s the leader of the pack in the pow board revolution.\",\"name\":\"DICK FACE\",\"title\":\"Fuckyou, Norway\",\"image\":{\"id\":38,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/1a.png\"},\"_id\":\"hlpp19l\"},{\"content\":\"When a community comes together and stands behind the individuals who shape our sport.\",\"name\":\"STEVE HARRIS\",\"title\":\"Squamish, BC\",\"image\":{\"id\":39,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/1c.png\"},\"_id\":\"bhwyja5\"},{\"content\":\"Nothing short of inspirational. We love you guys, we are snowboarding.\",\"name\":\"silvia snow\",\"title\":\"Seattle, WA\",\"image\":{\"id\":40,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/1b.png\"},\"_id\":\"vvr5bev\"}],\"layout\":\"image_above\",\"slides_per_view\":\"1\",\"width\":{\"unit\":\"%\",\"size\":64},\"arrows_size\":{\"unit\":\"px\",\"size\":38},\"content_gap\":{\"unit\":\"px\",\"size\":21},\"content_color\":\"#000000\",\"content_typography_typography\":\"custom\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"content_typography_font_family\":\"Catamaran\",\"content_typography_font_weight\":\"400\",\"content_typography_text_transform\":\"none\",\"content_typography_font_style\":\"italic\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5},\"name_color\":\"#191919\",\"name_typography_typography\":\"custom\",\"name_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"name_typography_font_family\":\"Catamaran\",\"name_typography_font_weight\":\"900\",\"name_typography_text_transform\":\"uppercase\",\"name_typography_font_style\":\"normal\",\"name_typography_line_height\":{\"unit\":\"em\",\"size\":0.4},\"name_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.4},\"title_color\":\"#db1529\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"title_typography_font_family\":\"Catamaran\",\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_font_style\":\"normal\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":2.2},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5},\"image_size\":{\"unit\":\"px\",\"size\":90},\"image_gap\":{\"unit\":\"px\",\"size\":0},\"image_border\":\"yes\",\"image_border_color\":\"rgba(75,111,147,0.29)\",\"image_border_width\":{\"unit\":\"px\",\"size\":4},\"image_border_radius\":{\"unit\":\"px\",\"size\":100},\"arrows_color\":\"#db1529\",\"pagination_size\":{\"unit\":\"px\",\"size\":7},\"pagination_color\":\"#db1529\",\"_margin\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_mobile\":{\"unit\":\"px\",\"size\":327},\"space_between_mobile\":{\"unit\":\"px\",\"size\":13},\"content_gap_mobile\":{\"unit\":\"px\",\"size\":14},\"content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16},\"name_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":17},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":17},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"slides_to_scroll\":\"7\"},\"elements\":[],\"widgetType\":\"testimonial-carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3812b07d\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#151515\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"8\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_color_b\":\"#151515\",\"background_gradient_type\":\"radial\",\"background_overlay_image\":{\"id\":41,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/8522.png\"},\"background_overlay_position\":\"center right\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.11},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"gap\":\"no\",\"background_overlay_repeat\":\"no-repeat\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":167},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\"},\"elements\":[{\"id\":\"3217ea46\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.75,\"content_position\":\"center\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"80\",\"bottom\":\"40\",\"left\":\"80\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"15f078ce\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"placeholder\":\"Sign up for special deals\",\"width\":\"66\",\"field_value\":\"\",\"field_options\":\"\",\"inline_list\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"custom_id\":\"email\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"field_html\":\"\",\"recaptcha_badge\":\"bottomright\"}],\"input_size\":\"lg\",\"show_labels\":\"\",\"button_text\":\"sign up\",\"button_size\":\"lg\",\"button_width\":\"33\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"The form was sent successfully!\",\"error_message\":\"There\'s something wrong... Please fill in the required fields.\",\"required_field_message\":\"Required\",\"invalid_message\":\"There\'s something wrong... The form is invalid.\",\"subscriber_already_exists_message\":\"Subscriber already exist.\",\"column_gap\":{\"unit\":\"px\",\"size\":0},\"field_text_color\":\"#ffffff\",\"field_typography_typography\":\"custom\",\"field_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"field_typography_font_family\":\"Catamaran\",\"field_typography_font_weight\":\"500\",\"field_background_color\":\"rgba(255,255,255,0.14)\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_text_color\":\"#ffffff\",\"button_typography_typography\":\"custom\",\"button_typography_font_family\":\"Catamaran\",\"button_background_color\":\"#db1529\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"button_typography_font_weight\":\"600\",\"button_typography_text_transform\":\"uppercase\",\"button_typography_font_style\":\"italic\",\"field_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.4},\"button_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.4},\"button_background_hover_color\":\"#db1529\",\"button_hover_animation\":\"grow\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":false},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"email_to\":\"maintenance@ondisplaycreative.com\",\"email_subject\":\"New message from \\\"OnDisplay Creative\\\"\",\"email_from\":\"email@23.235.208.11\",\"email_from_name\":\"OnDisplay Creative\",\"email_to_2\":\"maintenance@ondisplaycreative.com\",\"email_subject_2\":\"New message from \\\"OnDisplay Creative\\\"\",\"email_from_2\":\"email@23.235.208.11\",\"email_from_name_2\":\"OnDisplay Creative\",\"email_reply_to_2\":\"maintenance@ondisplaycreative.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false},{\"id\":\"6ad15533\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":26.333,\"content_position\":\"center\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"174b5094\",\"elType\":\"widget\",\"settings\":{\"title\":\"get social:\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19},\"typography_font_family\":\"Catamaran\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.4},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"right\",\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"1fae618c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23.913,\"content_position\":\"center\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"563a6180\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"tygvwhy\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"},\"social_icon\":{\"value\":\"fab fa-wordpress\",\"library\":\"fa-brands\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"},{\"social\":\"fa fa-twitter\",\"_id\":\"d3gf3n8\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"},\"social_icon\":{\"value\":\"fab fa-wordpress\",\"library\":\"fa-brands\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"},{\"social\":\"fa fa-google-plus\",\"_id\":\"us7irc8\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"},\"social_icon\":{\"value\":\"fab fa-wordpress\",\"library\":\"fa-brands\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"},{\"social\":\"fa fa-youtube\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"},\"_id\":\"pgz2qq0\",\"social_icon\":{\"value\":\"fab fa-wordpress\",\"library\":\"fa-brands\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"},{\"social\":\"fa fa-instagram\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"},\"_id\":\"szpior4\",\"social_icon\":{\"value\":\"fab fa-wordpress\",\"library\":\"fa-brands\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"}],\"shape\":\"circle\",\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(219,21,41,0)\",\"icon_secondary_color\":\"#ffffff\",\"icon_size\":{\"unit\":\"px\",\"size\":17},\"icon_padding\":{\"unit\":\"em\",\"size\":0.5},\"icon_spacing\":{\"unit\":\"px\",\"size\":20},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#db1529\",\"hover_primary_color\":\"#db1529\",\"hover_animation\":\"grow\",\"align_mobile\":\"center\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":16},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"align_tablet\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":false}],\"isInner\":false}]'),(182,45,'_elementor_edit_mode','builder'),(183,45,'_elementor_template_type','post'),(184,45,'_elementor_version','2.6.8'),(185,45,'_elementor_pro_version','2.6.5'),(186,45,'_wp_page_template','default'),(187,45,'_elementor_elements_usage','a:13:{s:8:\"template\";i:1;s:6:\"column\";i:18;s:7:\"section\";i:10;s:7:\"heading\";i:11;s:5:\"image\";i:1;s:14:\"media-carousel\";i:1;s:6:\"button\";i:1;s:11:\"testimonial\";i:1;s:8:\"icon-box\";i:4;s:6:\"spacer\";i:1;s:20:\"testimonial-carousel\";i:1;s:4:\"form\";i:1;s:12:\"social-icons\";i:1;}'),(198,47,'_wp_attached_file','2019/09/phone-x.png'),(199,47,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:450;s:6:\"height\";i:802;s:4:\"file\";s:19:\"2019/09/phone-x.png\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"phone-x-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:19:\"phone-x-168x300.png\";s:5:\"width\";i:168;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(200,47,'_elementor_source_image_hash','4d2198f7665dab04151ddefd319f5fd2c0b9190e'),(201,48,'_wp_attached_file','2019/09/bh3.jpg'),(202,48,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:960;s:4:\"file\";s:15:\"2019/09/bh3.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"bh3-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:15:\"bh3-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:15:\"bh3-768x384.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:384;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:16:\"bh3-1024x512.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"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,48,'_elementor_source_image_hash','e66414beaed4cd405f193d9e6467e7a35ddc754e'),(479,83,'_elementor_edit_mode','builder'),(480,83,'_elementor_elements_usage','a:7:{s:7:\"heading\";i:4;s:11:\"text-editor\";i:3;s:11:\"search-form\";i:1;s:6:\"column\";i:6;s:7:\"section\";i:5;s:7:\"divider\";i:1;s:6:\"button\";i:1;}'),(481,84,'_elementor_template_type','post'),(482,84,'_elementor_version','2.6.8'),(483,84,'_elementor_pro_version','2.6.5'),(484,84,'_wp_page_template','default'),(485,84,'_elementor_data','[{\"id\":\"55396f27\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":700},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_image\":{\"id\":50,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Theatrical_Display_V003C.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_range\":\"viewport\",\"motion_fx_motion_fx_scrolling\":\"yes\"},\"elements\":[{\"id\":\"59493b21\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"51a2493a\",\"elType\":\"widget\",\"settings\":{\"title\":\"#WHAT\'S COOL\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30},\"typography_font_weight\":\"400\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":40},\"typography_font_family\":\"Roboto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.4,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#ee7624\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3022c757\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<hr \\/><div id=\\\"Content\\\"><div class=\\\"boxed\\\"><div id=\\\"lipsum\\\"><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer maximus nulla a aliquet dignissim. Suspendisse potenti. Proin efficitur lacus vitae augue porta posuere.<\\/p><\\/div><\\/div><\\/div>\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"478bcc27\",\"elType\":\"widget\",\"settings\":{\"placeholder\":\"Search by name, education, family , etc....\",\"button_text\":\"Search\",\"input_typography_typography\":\"custom\",\"input_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"input_typography_font_weight\":\"300\",\"input_text_color\":\"#ffffff\",\"input_background_color\":\"rgba(255,255,255,0.18)\",\"border_radius\":{\"unit\":\"px\",\"size\":0},\"button_text_color\":\"#000000\",\"button_background_color\":\"#ffffff\",\"button_text_color_hover\":\"#000000\",\"button_background_color_hover\":\"#00ce1b\",\"icon_size\":{\"unit\":\"px\",\"size\":15},\"button_width\":{\"unit\":\"px\",\"size\":1},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"search-form\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7df48509\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\"},\"elements\":[{\"id\":\"1147078d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6b1f2df0\",\"elType\":\"widget\",\"settings\":{\"title\":\"LIVING STANDEES HAUNTING THEATERS\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"442ffb\",\"elType\":\"widget\",\"settings\":{\"title\":\"ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS\",\"header_size\":\"h5\",\"align\":\"center\",\"title_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86cff8b\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a680ae8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h1>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.<\\/h1>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"be59fa3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"e36fe5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[],\"isInner\":true},{\"id\":\"3c9b758\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b747fda\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":700},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":900},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7eab781\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"43661634\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our company is a collective of amazing people striving to build delightful products.\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.4},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70cc6d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.<\\/p>\",\"align\":\"center\",\"text_color\":\"#686868\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"615dfb3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1000},\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"6414755f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3bb26eed\",\"elType\":\"widget\",\"settings\":{\"text\":\"Read More\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3},\"button_text_color\":\"#ffffff\",\"background_color\":\"rgba(0,0,0,0)\",\"hover_color\":\"#00ce1b\",\"button_hover_border_color\":\"#00ce1b\",\"hover_animation\":\"grow\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(225,52,'_elementor_version','2.6.8'),(226,52,'_elementor_pro_version','2.6.5'),(227,52,'_wp_page_template','default'),(204,49,'_elementor_template_type','post'),(205,49,'_elementor_version','2.6.8'),(206,49,'_elementor_pro_version','2.6.5'),(207,49,'_wp_page_template','default'),(208,49,'_elementor_data','[{\"id\":\"a7e3dae\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"7fa2a53\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6646540\",\"elType\":\"widget\",\"settings\":{\"menu\":\"main-menu\",\"align_items\":\"right\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"55396f27\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":700},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_image\":{\"id\":48,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/bh3.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\"},\"elements\":[{\"id\":\"59493b21\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"51a2493a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Men in black\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65},\"typography_font_weight\":\"600\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":40}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3022c757\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<hr \\/><div id=\\\"Content\\\"><div class=\\\"boxed\\\"><div id=\\\"lipsum\\\"><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer maximus nulla a aliquet dignissim. Suspendisse potenti. Proin efficitur lacus vitae augue porta posuere.<\\/p><\\/div><\\/div><\\/div>\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"478bcc27\",\"elType\":\"widget\",\"settings\":{\"placeholder\":\"Search by name, education, family , etc....\",\"button_text\":\"Search\",\"input_typography_typography\":\"custom\",\"input_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"input_typography_font_weight\":\"300\",\"input_text_color\":\"#ffffff\",\"input_background_color\":\"rgba(255,255,255,0.18)\",\"border_radius\":{\"unit\":\"px\",\"size\":0},\"button_text_color\":\"#000000\",\"button_background_color\":\"#ffffff\",\"button_text_color_hover\":\"#000000\",\"button_background_color_hover\":\"#00ce1b\",\"icon_size\":{\"unit\":\"px\",\"size\":15},\"button_width\":{\"unit\":\"px\",\"size\":1},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"search-form\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7df48509\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"1147078d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6b1f2df0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Frequently Asked Questions\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"442ffb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Most frequent questions and answers\",\"header_size\":\"h5\",\"align\":\"center\",\"title_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"40f37237\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"top\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5b834b6d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#000000\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"1305fa8f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Can I edit the files ?\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6e9558b3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>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.<\\/p>\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"70092d1f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#000000\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7f66a7a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Is it Layered ?\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5afee9a0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don\'t look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn\'t anything embarrassing hidden in the middle of text.<\\/p>\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"18eeaf1b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"top\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"70263275\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#000000\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"-60\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"17ba0aac\",\"elType\":\"widget\",\"settings\":{\"title\":\"How can I edit the masks ?<span style=\\\"font-style: inherit;\\\"><\\/span><br>\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3d4ba25c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>All the Lorem Ipsum generators on the Internet tend to repeat predefined chunks as necessary, making this the first true generator on the Internet. It uses a dictionary of over 200 Latin words, combined with a handful of model sentence structures, to generate Lorem Ipsum which looks reasonable. The generated Lorem Ipsum is therefore always free from repetition, injected humour, or non-characteristic words etc.<\\/p>\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"6a6c1bcf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#000000\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"73a52ec9\",\"elType\":\"widget\",\"settings\":{\"title\":\"What do I need to open the files ?<span style=\\\"font-style: inherit;\\\"><\\/span><br>\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7248ef37\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from 45 BC, making it over 2000 years old. Richard McClintock, a Latin professor at Hampden-Sydney College in Virginia, looked up one of the more obscure Latin words<\\/p>\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4a81ef3c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"top\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"3c72f59e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#000000\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"81e1b8a\",\"elType\":\"widget\",\"settings\":{\"title\":\"How can I edit smart objects ?<span style=\\\"font-style: inherit;\\\"><\\/span><br>\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1b16c234\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The standard chunk of Lorem Ipsum used since the 1500s is reproduced below for those interested. Sections 1.10.32 and 1.10.33 from \\\"de Finibus Bonorum et Malorum\\\" by Cicero are also reproduced in their exact original form, accompanied by English versions from the 1914 translation<\\/p>\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"4ee174cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#000000\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"49c014d2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Is the font free ?\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4a998124\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from 45 BC, making it over 2000 years old. Richard McClintock, a Latin professor at Hampden-Sydney College in Virginia, looked up one of the more obscure Latin words, consectetur<\\/p>\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b747fda\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":700},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":900},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7eab781\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"43661634\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our company is a collective of amazing people striving to build delightful products.\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.4},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70cc6d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.<\\/p>\",\"align\":\"center\",\"text_color\":\"#686868\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"615dfb3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1000},\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"6414755f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3bb26eed\",\"elType\":\"widget\",\"settings\":{\"text\":\"Read More\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3},\"button_text_color\":\"#ffffff\",\"background_color\":\"rgba(0,0,0,0)\",\"hover_color\":\"#00ce1b\",\"button_hover_border_color\":\"#00ce1b\",\"hover_animation\":\"grow\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(209,49,'_elementor_edit_mode','builder'),(210,49,'_elementor_elements_usage','a:7:{s:8:\"nav-menu\";i:1;s:6:\"column\";i:11;s:7:\"section\";i:8;s:7:\"heading\";i:10;s:11:\"text-editor\";i:8;s:11:\"search-form\";i:1;s:6:\"button\";i:1;}'),(233,53,'_elementor_version','2.6.8'),(213,50,'_wp_attached_file','2019/09/Theatrical_Display_V003C.jpg'),(214,50,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2500;s:6:\"height\";i:1736;s:4:\"file\";s:36:\"2019/09/Theatrical_Display_V003C.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:36:\"Theatrical_Display_V003C-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:36:\"Theatrical_Display_V003C-300x208.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:208;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:36:\"Theatrical_Display_V003C-768x533.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:533;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:37:\"Theatrical_Display_V003C-1024x711.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:711;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(224,52,'_elementor_template_type','post'),(215,51,'_elementor_template_type','post'),(216,51,'_elementor_version','2.6.8'),(217,51,'_elementor_pro_version','2.6.5'),(218,51,'_wp_page_template','default'),(219,51,'_elementor_data','[{\"id\":\"a7e3dae\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"7fa2a53\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6646540\",\"elType\":\"widget\",\"settings\":{\"menu\":\"main-menu\",\"align_items\":\"right\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"55396f27\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":700},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_image\":{\"id\":50,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Theatrical_Display_V003C.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\"},\"elements\":[{\"id\":\"59493b21\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"51a2493a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Men in black\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65},\"typography_font_weight\":\"600\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":40}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3022c757\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<hr \\/><div id=\\\"Content\\\"><div class=\\\"boxed\\\"><div id=\\\"lipsum\\\"><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer maximus nulla a aliquet dignissim. Suspendisse potenti. Proin efficitur lacus vitae augue porta posuere.<\\/p><\\/div><\\/div><\\/div>\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"478bcc27\",\"elType\":\"widget\",\"settings\":{\"placeholder\":\"Search by name, education, family , etc....\",\"button_text\":\"Search\",\"input_typography_typography\":\"custom\",\"input_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"input_typography_font_weight\":\"300\",\"input_text_color\":\"#ffffff\",\"input_background_color\":\"rgba(255,255,255,0.18)\",\"border_radius\":{\"unit\":\"px\",\"size\":0},\"button_text_color\":\"#000000\",\"button_background_color\":\"#ffffff\",\"button_text_color_hover\":\"#000000\",\"button_background_color_hover\":\"#00ce1b\",\"icon_size\":{\"unit\":\"px\",\"size\":15},\"button_width\":{\"unit\":\"px\",\"size\":1},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"search-form\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7df48509\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"1147078d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6b1f2df0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Frequently Asked Questions\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"442ffb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Most frequent questions and answers\",\"header_size\":\"h5\",\"align\":\"center\",\"title_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"40f37237\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"top\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5b834b6d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#000000\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"1305fa8f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Can I edit the files ?\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6e9558b3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>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.<\\/p>\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"70092d1f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#000000\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7f66a7a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Is it Layered ?\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5afee9a0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don\'t look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn\'t anything embarrassing hidden in the middle of text.<\\/p>\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"18eeaf1b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"top\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"70263275\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#000000\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"-60\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"17ba0aac\",\"elType\":\"widget\",\"settings\":{\"title\":\"How can I edit the masks ?<span style=\\\"font-style: inherit;\\\"><\\/span><br>\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3d4ba25c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>All the Lorem Ipsum generators on the Internet tend to repeat predefined chunks as necessary, making this the first true generator on the Internet. It uses a dictionary of over 200 Latin words, combined with a handful of model sentence structures, to generate Lorem Ipsum which looks reasonable. The generated Lorem Ipsum is therefore always free from repetition, injected humour, or non-characteristic words etc.<\\/p>\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"6a6c1bcf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#000000\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"73a52ec9\",\"elType\":\"widget\",\"settings\":{\"title\":\"What do I need to open the files ?<span style=\\\"font-style: inherit;\\\"><\\/span><br>\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7248ef37\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from 45 BC, making it over 2000 years old. Richard McClintock, a Latin professor at Hampden-Sydney College in Virginia, looked up one of the more obscure Latin words<\\/p>\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4a81ef3c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"top\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"3c72f59e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#000000\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"81e1b8a\",\"elType\":\"widget\",\"settings\":{\"title\":\"How can I edit smart objects ?<span style=\\\"font-style: inherit;\\\"><\\/span><br>\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1b16c234\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The standard chunk of Lorem Ipsum used since the 1500s is reproduced below for those interested. Sections 1.10.32 and 1.10.33 from \\\"de Finibus Bonorum et Malorum\\\" by Cicero are also reproduced in their exact original form, accompanied by English versions from the 1914 translation<\\/p>\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"4ee174cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#000000\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"49c014d2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Is the font free ?\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4a998124\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from 45 BC, making it over 2000 years old. Richard McClintock, a Latin professor at Hampden-Sydney College in Virginia, looked up one of the more obscure Latin words, consectetur<\\/p>\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b747fda\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":700},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":900},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7eab781\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"43661634\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our company is a collective of amazing people striving to build delightful products.\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.4},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70cc6d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.<\\/p>\",\"align\":\"center\",\"text_color\":\"#686868\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"615dfb3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1000},\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"6414755f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3bb26eed\",\"elType\":\"widget\",\"settings\":{\"text\":\"Read More\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3},\"button_text_color\":\"#ffffff\",\"background_color\":\"rgba(0,0,0,0)\",\"hover_color\":\"#00ce1b\",\"button_hover_border_color\":\"#00ce1b\",\"hover_animation\":\"grow\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(220,51,'_elementor_edit_mode','builder'),(221,51,'_elementor_elements_usage','a:7:{s:8:\"nav-menu\";i:1;s:6:\"column\";i:11;s:7:\"section\";i:8;s:7:\"heading\";i:10;s:11:\"text-editor\";i:8;s:11:\"search-form\";i:1;s:6:\"button\";i:1;}'),(228,52,'_elementor_data','[{\"id\":\"55396f27\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":700},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_image\":{\"id\":50,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Theatrical_Display_V003C.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\"},\"elements\":[{\"id\":\"59493b21\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"51a2493a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Men in black\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65},\"typography_font_weight\":\"600\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":40}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3022c757\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<hr \\/><div id=\\\"Content\\\"><div class=\\\"boxed\\\"><div id=\\\"lipsum\\\"><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer maximus nulla a aliquet dignissim. Suspendisse potenti. Proin efficitur lacus vitae augue porta posuere.<\\/p><\\/div><\\/div><\\/div>\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"478bcc27\",\"elType\":\"widget\",\"settings\":{\"placeholder\":\"Search by name, education, family , etc....\",\"button_text\":\"Search\",\"input_typography_typography\":\"custom\",\"input_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"input_typography_font_weight\":\"300\",\"input_text_color\":\"#ffffff\",\"input_background_color\":\"rgba(255,255,255,0.18)\",\"border_radius\":{\"unit\":\"px\",\"size\":0},\"button_text_color\":\"#000000\",\"button_background_color\":\"#ffffff\",\"button_text_color_hover\":\"#000000\",\"button_background_color_hover\":\"#00ce1b\",\"icon_size\":{\"unit\":\"px\",\"size\":15},\"button_width\":{\"unit\":\"px\",\"size\":1},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"search-form\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7df48509\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"1147078d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6b1f2df0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Frequently Asked Questions\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"442ffb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Most frequent questions and answers\",\"header_size\":\"h5\",\"align\":\"center\",\"title_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"40f37237\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"top\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5b834b6d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#000000\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"1305fa8f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Can I edit the files ?\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6e9558b3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>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.<\\/p>\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"70092d1f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#000000\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7f66a7a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Is it Layered ?\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5afee9a0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don\'t look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn\'t anything embarrassing hidden in the middle of text.<\\/p>\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"18eeaf1b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"top\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"70263275\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#000000\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"-60\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"17ba0aac\",\"elType\":\"widget\",\"settings\":{\"title\":\"How can I edit the masks ?<span style=\\\"font-style: inherit;\\\"><\\/span><br>\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3d4ba25c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>All the Lorem Ipsum generators on the Internet tend to repeat predefined chunks as necessary, making this the first true generator on the Internet. It uses a dictionary of over 200 Latin words, combined with a handful of model sentence structures, to generate Lorem Ipsum which looks reasonable. The generated Lorem Ipsum is therefore always free from repetition, injected humour, or non-characteristic words etc.<\\/p>\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"6a6c1bcf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#000000\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"73a52ec9\",\"elType\":\"widget\",\"settings\":{\"title\":\"What do I need to open the files ?<span style=\\\"font-style: inherit;\\\"><\\/span><br>\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7248ef37\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from 45 BC, making it over 2000 years old. Richard McClintock, a Latin professor at Hampden-Sydney College in Virginia, looked up one of the more obscure Latin words<\\/p>\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4a81ef3c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"top\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"3c72f59e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#000000\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"81e1b8a\",\"elType\":\"widget\",\"settings\":{\"title\":\"How can I edit smart objects ?<span style=\\\"font-style: inherit;\\\"><\\/span><br>\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1b16c234\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The standard chunk of Lorem Ipsum used since the 1500s is reproduced below for those interested. Sections 1.10.32 and 1.10.33 from \\\"de Finibus Bonorum et Malorum\\\" by Cicero are also reproduced in their exact original form, accompanied by English versions from the 1914 translation<\\/p>\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"4ee174cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#000000\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"49c014d2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Is the font free ?\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4a998124\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from 45 BC, making it over 2000 years old. Richard McClintock, a Latin professor at Hampden-Sydney College in Virginia, looked up one of the more obscure Latin words, consectetur<\\/p>\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b747fda\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":700},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":900},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7eab781\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"43661634\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our company is a collective of amazing people striving to build delightful products.\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.4},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70cc6d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.<\\/p>\",\"align\":\"center\",\"text_color\":\"#686868\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"615dfb3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1000},\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"6414755f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3bb26eed\",\"elType\":\"widget\",\"settings\":{\"text\":\"Read More\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3},\"button_text_color\":\"#ffffff\",\"background_color\":\"rgba(0,0,0,0)\",\"hover_color\":\"#00ce1b\",\"button_hover_border_color\":\"#00ce1b\",\"hover_animation\":\"grow\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(229,52,'_elementor_edit_mode','builder'),(230,52,'_elementor_elements_usage','a:6:{s:7:\"heading\";i:10;s:11:\"text-editor\";i:8;s:11:\"search-form\";i:1;s:6:\"column\";i:10;s:7:\"section\";i:7;s:6:\"button\";i:1;}'),(234,53,'_elementor_pro_version','2.6.5'),(235,53,'_wp_page_template','default'),(236,53,'_elementor_data','[{\"id\":\"55396f27\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":700},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_image\":{\"id\":50,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Theatrical_Display_V003C.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\"},\"elements\":[{\"id\":\"59493b21\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"51a2493a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Men in black\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65},\"typography_font_weight\":\"600\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":40}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3022c757\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<hr \\/><div id=\\\"Content\\\"><div class=\\\"boxed\\\"><div id=\\\"lipsum\\\"><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer maximus nulla a aliquet dignissim. Suspendisse potenti. Proin efficitur lacus vitae augue porta posuere.<\\/p><\\/div><\\/div><\\/div>\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"478bcc27\",\"elType\":\"widget\",\"settings\":{\"placeholder\":\"Search by name, education, family , etc....\",\"button_text\":\"Search\",\"input_typography_typography\":\"custom\",\"input_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"input_typography_font_weight\":\"300\",\"input_text_color\":\"#ffffff\",\"input_background_color\":\"rgba(255,255,255,0.18)\",\"border_radius\":{\"unit\":\"px\",\"size\":0},\"button_text_color\":\"#000000\",\"button_background_color\":\"#ffffff\",\"button_text_color_hover\":\"#000000\",\"button_background_color_hover\":\"#00ce1b\",\"icon_size\":{\"unit\":\"px\",\"size\":15},\"button_width\":{\"unit\":\"px\",\"size\":1},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"search-form\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7df48509\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"1147078d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6b1f2df0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Frequently Asked Questions\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"442ffb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Most frequent questions and answers\",\"header_size\":\"h5\",\"align\":\"center\",\"title_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"40f37237\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"top\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5b834b6d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#000000\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"1305fa8f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Can I edit the files ?\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6e9558b3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>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.<\\/p>\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"70092d1f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#000000\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7f66a7a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Is it Layered ?\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5afee9a0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don\'t look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn\'t anything embarrassing hidden in the middle of text.<\\/p>\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"18eeaf1b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"top\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"70263275\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#000000\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"-60\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"17ba0aac\",\"elType\":\"widget\",\"settings\":{\"title\":\"How can I edit the masks ?<span style=\\\"font-style: inherit;\\\"><\\/span><br>\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3d4ba25c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>All the Lorem Ipsum generators on the Internet tend to repeat predefined chunks as necessary, making this the first true generator on the Internet. It uses a dictionary of over 200 Latin words, combined with a handful of model sentence structures, to generate Lorem Ipsum which looks reasonable. The generated Lorem Ipsum is therefore always free from repetition, injected humour, or non-characteristic words etc.<\\/p>\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"6a6c1bcf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#000000\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"73a52ec9\",\"elType\":\"widget\",\"settings\":{\"title\":\"What do I need to open the files ?<span style=\\\"font-style: inherit;\\\"><\\/span><br>\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7248ef37\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from 45 BC, making it over 2000 years old. Richard McClintock, a Latin professor at Hampden-Sydney College in Virginia, looked up one of the more obscure Latin words<\\/p>\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4a81ef3c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"top\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"3c72f59e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#000000\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"81e1b8a\",\"elType\":\"widget\",\"settings\":{\"title\":\"How can I edit smart objects ?<span style=\\\"font-style: inherit;\\\"><\\/span><br>\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1b16c234\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The standard chunk of Lorem Ipsum used since the 1500s is reproduced below for those interested. Sections 1.10.32 and 1.10.33 from \\\"de Finibus Bonorum et Malorum\\\" by Cicero are also reproduced in their exact original form, accompanied by English versions from the 1914 translation<\\/p>\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"4ee174cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#000000\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"49c014d2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Is the font free ?\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4a998124\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from 45 BC, making it over 2000 years old. Richard McClintock, a Latin professor at Hampden-Sydney College in Virginia, looked up one of the more obscure Latin words, consectetur<\\/p>\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b747fda\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":700},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":900},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7eab781\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"43661634\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our company is a collective of amazing people striving to build delightful products.\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.4},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70cc6d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.<\\/p>\",\"align\":\"center\",\"text_color\":\"#686868\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"615dfb3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1000},\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"6414755f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3bb26eed\",\"elType\":\"widget\",\"settings\":{\"text\":\"Read More\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3},\"button_text_color\":\"#ffffff\",\"background_color\":\"rgba(0,0,0,0)\",\"hover_color\":\"#00ce1b\",\"button_hover_border_color\":\"#00ce1b\",\"hover_animation\":\"grow\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(237,53,'_elementor_edit_mode','builder'),(238,53,'_elementor_elements_usage','a:6:{s:7:\"heading\";i:10;s:11:\"text-editor\";i:8;s:11:\"search-form\";i:1;s:6:\"column\";i:10;s:7:\"section\";i:7;s:6:\"button\";i:1;}'),(248,55,'_elementor_template_type','post'),(249,55,'_elementor_version','2.6.8'),(265,57,'_elementor_template_type','post'),(240,54,'_elementor_template_type','post'),(241,54,'_elementor_version','2.6.8'),(242,54,'_elementor_pro_version','2.6.5'),(243,54,'_wp_page_template','default'),(244,54,'_elementor_data','[{\"id\":\"55396f27\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":700},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_image\":{\"id\":50,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Theatrical_Display_V003C.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\"},\"elements\":[{\"id\":\"59493b21\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"51a2493a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Men in black\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65},\"typography_font_weight\":\"600\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":40}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3022c757\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<hr \\/><div id=\\\"Content\\\"><div class=\\\"boxed\\\"><div id=\\\"lipsum\\\"><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer maximus nulla a aliquet dignissim. Suspendisse potenti. Proin efficitur lacus vitae augue porta posuere.<\\/p><\\/div><\\/div><\\/div>\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"478bcc27\",\"elType\":\"widget\",\"settings\":{\"placeholder\":\"Search by name, education, family , etc....\",\"button_text\":\"Search\",\"input_typography_typography\":\"custom\",\"input_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"input_typography_font_weight\":\"300\",\"input_text_color\":\"#ffffff\",\"input_background_color\":\"rgba(255,255,255,0.18)\",\"border_radius\":{\"unit\":\"px\",\"size\":0},\"button_text_color\":\"#000000\",\"button_background_color\":\"#ffffff\",\"button_text_color_hover\":\"#000000\",\"button_background_color_hover\":\"#00ce1b\",\"icon_size\":{\"unit\":\"px\",\"size\":15},\"button_width\":{\"unit\":\"px\",\"size\":1},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"search-form\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7df48509\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"1147078d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6b1f2df0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Frequently Asked Questions\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"442ffb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Most frequent questions and answers\",\"header_size\":\"h5\",\"align\":\"center\",\"title_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"40f37237\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"top\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5b834b6d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#000000\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"1305fa8f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Can I edit the files ?\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6e9558b3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>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.<\\/p>\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"70092d1f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#000000\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7f66a7a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Is it Layered ?\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5afee9a0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don\'t look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn\'t anything embarrassing hidden in the middle of text.<\\/p>\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"18eeaf1b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"top\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"70263275\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#000000\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"-60\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"17ba0aac\",\"elType\":\"widget\",\"settings\":{\"title\":\"How can I edit the masks ?<span style=\\\"font-style: inherit;\\\"><\\/span><br>\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3d4ba25c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>All the Lorem Ipsum generators on the Internet tend to repeat predefined chunks as necessary, making this the first true generator on the Internet. It uses a dictionary of over 200 Latin words, combined with a handful of model sentence structures, to generate Lorem Ipsum which looks reasonable. The generated Lorem Ipsum is therefore always free from repetition, injected humour, or non-characteristic words etc.<\\/p>\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"6a6c1bcf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#000000\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"73a52ec9\",\"elType\":\"widget\",\"settings\":{\"title\":\"What do I need to open the files ?<span style=\\\"font-style: inherit;\\\"><\\/span><br>\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7248ef37\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from 45 BC, making it over 2000 years old. Richard McClintock, a Latin professor at Hampden-Sydney College in Virginia, looked up one of the more obscure Latin words<\\/p>\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4a81ef3c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"top\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"3c72f59e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#000000\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"81e1b8a\",\"elType\":\"widget\",\"settings\":{\"title\":\"How can I edit smart objects ?<span style=\\\"font-style: inherit;\\\"><\\/span><br>\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1b16c234\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The standard chunk of Lorem Ipsum used since the 1500s is reproduced below for those interested. Sections 1.10.32 and 1.10.33 from \\\"de Finibus Bonorum et Malorum\\\" by Cicero are also reproduced in their exact original form, accompanied by English versions from the 1914 translation<\\/p>\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"4ee174cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#000000\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"49c014d2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Is the font free ?\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4a998124\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from 45 BC, making it over 2000 years old. Richard McClintock, a Latin professor at Hampden-Sydney College in Virginia, looked up one of the more obscure Latin words, consectetur<\\/p>\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b747fda\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":700},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":900},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7eab781\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"43661634\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our company is a collective of amazing people striving to build delightful products.\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.4},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70cc6d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.<\\/p>\",\"align\":\"center\",\"text_color\":\"#686868\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"615dfb3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1000},\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"6414755f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3bb26eed\",\"elType\":\"widget\",\"settings\":{\"text\":\"Read More\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3},\"button_text_color\":\"#ffffff\",\"background_color\":\"rgba(0,0,0,0)\",\"hover_color\":\"#00ce1b\",\"button_hover_border_color\":\"#00ce1b\",\"hover_animation\":\"grow\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(245,54,'_elementor_edit_mode','builder'),(246,54,'_elementor_elements_usage','a:6:{s:7:\"heading\";i:10;s:11:\"text-editor\";i:8;s:11:\"search-form\";i:1;s:6:\"column\";i:10;s:7:\"section\";i:7;s:6:\"button\";i:1;}'),(250,55,'_elementor_pro_version','2.6.5'),(251,55,'_wp_page_template','default'),(252,55,'_elementor_data','[{\"id\":\"55396f27\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":700},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_image\":{\"id\":50,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Theatrical_Display_V003C.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\"},\"elements\":[{\"id\":\"59493b21\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"51a2493a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Men in black\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65},\"typography_font_weight\":\"600\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":40}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3022c757\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<hr \\/><div id=\\\"Content\\\"><div class=\\\"boxed\\\"><div id=\\\"lipsum\\\"><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer maximus nulla a aliquet dignissim. Suspendisse potenti. Proin efficitur lacus vitae augue porta posuere.<\\/p><\\/div><\\/div><\\/div>\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"478bcc27\",\"elType\":\"widget\",\"settings\":{\"placeholder\":\"Search by name, education, family , etc....\",\"button_text\":\"Search\",\"input_typography_typography\":\"custom\",\"input_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"input_typography_font_weight\":\"300\",\"input_text_color\":\"#ffffff\",\"input_background_color\":\"rgba(255,255,255,0.18)\",\"border_radius\":{\"unit\":\"px\",\"size\":0},\"button_text_color\":\"#000000\",\"button_background_color\":\"#ffffff\",\"button_text_color_hover\":\"#000000\",\"button_background_color_hover\":\"#00ce1b\",\"icon_size\":{\"unit\":\"px\",\"size\":15},\"button_width\":{\"unit\":\"px\",\"size\":1},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"search-form\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7df48509\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"1147078d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6b1f2df0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Frequently Asked Questions\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"442ffb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Most frequent questions and answers\",\"header_size\":\"h5\",\"align\":\"center\",\"title_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"40f37237\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"top\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5b834b6d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#000000\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"1305fa8f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Can I edit the files ?\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6e9558b3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>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.<\\/p>\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"70092d1f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#000000\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7f66a7a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Is it Layered ?\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5afee9a0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don\'t look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn\'t anything embarrassing hidden in the middle of text.<\\/p>\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"18eeaf1b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"top\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"70263275\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#000000\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"-60\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"17ba0aac\",\"elType\":\"widget\",\"settings\":{\"title\":\"How can I edit the masks ?<span style=\\\"font-style: inherit;\\\"><\\/span><br>\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3d4ba25c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>All the Lorem Ipsum generators on the Internet tend to repeat predefined chunks as necessary, making this the first true generator on the Internet. It uses a dictionary of over 200 Latin words, combined with a handful of model sentence structures, to generate Lorem Ipsum which looks reasonable. The generated Lorem Ipsum is therefore always free from repetition, injected humour, or non-characteristic words etc.<\\/p>\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"6a6c1bcf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#000000\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"73a52ec9\",\"elType\":\"widget\",\"settings\":{\"title\":\"What do I need to open the files ?<span style=\\\"font-style: inherit;\\\"><\\/span><br>\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7248ef37\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from 45 BC, making it over 2000 years old. Richard McClintock, a Latin professor at Hampden-Sydney College in Virginia, looked up one of the more obscure Latin words<\\/p>\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4a81ef3c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"top\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"3c72f59e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#000000\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"81e1b8a\",\"elType\":\"widget\",\"settings\":{\"title\":\"How can I edit smart objects ?<span style=\\\"font-style: inherit;\\\"><\\/span><br>\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1b16c234\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The standard chunk of Lorem Ipsum used since the 1500s is reproduced below for those interested. Sections 1.10.32 and 1.10.33 from \\\"de Finibus Bonorum et Malorum\\\" by Cicero are also reproduced in their exact original form, accompanied by English versions from the 1914 translation<\\/p>\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"4ee174cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#000000\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"49c014d2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Is the font free ?\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4a998124\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from 45 BC, making it over 2000 years old. Richard McClintock, a Latin professor at Hampden-Sydney College in Virginia, looked up one of the more obscure Latin words, consectetur<\\/p>\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b747fda\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":700},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":900},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7eab781\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"43661634\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our company is a collective of amazing people striving to build delightful products.\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.4},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70cc6d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.<\\/p>\",\"align\":\"center\",\"text_color\":\"#686868\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"615dfb3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1000},\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"6414755f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3bb26eed\",\"elType\":\"widget\",\"settings\":{\"text\":\"Read More\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3},\"button_text_color\":\"#ffffff\",\"background_color\":\"rgba(0,0,0,0)\",\"hover_color\":\"#00ce1b\",\"button_hover_border_color\":\"#00ce1b\",\"hover_animation\":\"grow\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(253,55,'_elementor_edit_mode','builder'),(254,55,'_elementor_elements_usage','a:6:{s:7:\"heading\";i:10;s:11:\"text-editor\";i:8;s:11:\"search-form\";i:1;s:6:\"column\";i:10;s:7:\"section\";i:7;s:6:\"button\";i:1;}'),(291,60,'_elementor_template_type','post'),(256,56,'_elementor_template_type','post'),(257,56,'_elementor_version','2.6.8'),(258,56,'_elementor_pro_version','2.6.5'),(259,56,'_wp_page_template','default'),(260,56,'_elementor_data','[{\"id\":\"55396f27\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":700},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_image\":{\"id\":50,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Theatrical_Display_V003C.jpg\"},\"background_position\":\"center center\",\"background_size\":\"auto\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\"},\"elements\":[{\"id\":\"59493b21\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"51a2493a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Men in black\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65},\"typography_font_weight\":\"600\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":40}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3022c757\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<hr \\/><div id=\\\"Content\\\"><div class=\\\"boxed\\\"><div id=\\\"lipsum\\\"><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer maximus nulla a aliquet dignissim. Suspendisse potenti. Proin efficitur lacus vitae augue porta posuere.<\\/p><\\/div><\\/div><\\/div>\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"478bcc27\",\"elType\":\"widget\",\"settings\":{\"placeholder\":\"Search by name, education, family , etc....\",\"button_text\":\"Search\",\"input_typography_typography\":\"custom\",\"input_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"input_typography_font_weight\":\"300\",\"input_text_color\":\"#ffffff\",\"input_background_color\":\"rgba(255,255,255,0.18)\",\"border_radius\":{\"unit\":\"px\",\"size\":0},\"button_text_color\":\"#000000\",\"button_background_color\":\"#ffffff\",\"button_text_color_hover\":\"#000000\",\"button_background_color_hover\":\"#00ce1b\",\"icon_size\":{\"unit\":\"px\",\"size\":15},\"button_width\":{\"unit\":\"px\",\"size\":1},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"search-form\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7df48509\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"1147078d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6b1f2df0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Frequently Asked Questions\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"442ffb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Most frequent questions and answers\",\"header_size\":\"h5\",\"align\":\"center\",\"title_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"40f37237\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"top\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5b834b6d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#000000\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"1305fa8f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Can I edit the files ?\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6e9558b3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>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.<\\/p>\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"70092d1f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#000000\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7f66a7a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Is it Layered ?\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5afee9a0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don\'t look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn\'t anything embarrassing hidden in the middle of text.<\\/p>\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"18eeaf1b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"top\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"70263275\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#000000\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"-60\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"17ba0aac\",\"elType\":\"widget\",\"settings\":{\"title\":\"How can I edit the masks ?<span style=\\\"font-style: inherit;\\\"><\\/span><br>\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3d4ba25c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>All the Lorem Ipsum generators on the Internet tend to repeat predefined chunks as necessary, making this the first true generator on the Internet. It uses a dictionary of over 200 Latin words, combined with a handful of model sentence structures, to generate Lorem Ipsum which looks reasonable. The generated Lorem Ipsum is therefore always free from repetition, injected humour, or non-characteristic words etc.<\\/p>\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"6a6c1bcf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#000000\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"73a52ec9\",\"elType\":\"widget\",\"settings\":{\"title\":\"What do I need to open the files ?<span style=\\\"font-style: inherit;\\\"><\\/span><br>\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7248ef37\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from 45 BC, making it over 2000 years old. Richard McClintock, a Latin professor at Hampden-Sydney College in Virginia, looked up one of the more obscure Latin words<\\/p>\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4a81ef3c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"top\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"3c72f59e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#000000\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"81e1b8a\",\"elType\":\"widget\",\"settings\":{\"title\":\"How can I edit smart objects ?<span style=\\\"font-style: inherit;\\\"><\\/span><br>\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1b16c234\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The standard chunk of Lorem Ipsum used since the 1500s is reproduced below for those interested. Sections 1.10.32 and 1.10.33 from \\\"de Finibus Bonorum et Malorum\\\" by Cicero are also reproduced in their exact original form, accompanied by English versions from the 1914 translation<\\/p>\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"4ee174cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#000000\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"49c014d2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Is the font free ?\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4a998124\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from 45 BC, making it over 2000 years old. Richard McClintock, a Latin professor at Hampden-Sydney College in Virginia, looked up one of the more obscure Latin words, consectetur<\\/p>\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b747fda\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":700},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":900},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7eab781\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"43661634\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our company is a collective of amazing people striving to build delightful products.\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.4},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70cc6d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.<\\/p>\",\"align\":\"center\",\"text_color\":\"#686868\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"615dfb3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1000},\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"6414755f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3bb26eed\",\"elType\":\"widget\",\"settings\":{\"text\":\"Read More\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3},\"button_text_color\":\"#ffffff\",\"background_color\":\"rgba(0,0,0,0)\",\"hover_color\":\"#00ce1b\",\"button_hover_border_color\":\"#00ce1b\",\"hover_animation\":\"grow\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(261,56,'_elementor_edit_mode','builder'),(262,56,'_elementor_elements_usage','a:6:{s:7:\"heading\";i:10;s:11:\"text-editor\";i:8;s:11:\"search-form\";i:1;s:6:\"column\";i:10;s:7:\"section\";i:7;s:6:\"button\";i:1;}'),(266,57,'_elementor_version','2.6.8'),(267,57,'_elementor_pro_version','2.6.5'),(268,57,'_wp_page_template','default'),(269,57,'_elementor_data','[{\"id\":\"55396f27\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":700},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_image\":{\"id\":50,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Theatrical_Display_V003C.jpg\"},\"background_position\":\"center center\",\"background_size\":\"auto\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\"},\"elements\":[{\"id\":\"59493b21\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"51a2493a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Men in black\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65},\"typography_font_weight\":\"600\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":40}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3022c757\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<hr \\/><div id=\\\"Content\\\"><div class=\\\"boxed\\\"><div id=\\\"lipsum\\\"><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer maximus nulla a aliquet dignissim. Suspendisse potenti. Proin efficitur lacus vitae augue porta posuere.<\\/p><\\/div><\\/div><\\/div>\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"478bcc27\",\"elType\":\"widget\",\"settings\":{\"placeholder\":\"Search by name, education, family , etc....\",\"button_text\":\"Search\",\"input_typography_typography\":\"custom\",\"input_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"input_typography_font_weight\":\"300\",\"input_text_color\":\"#ffffff\",\"input_background_color\":\"rgba(255,255,255,0.18)\",\"border_radius\":{\"unit\":\"px\",\"size\":0},\"button_text_color\":\"#000000\",\"button_background_color\":\"#ffffff\",\"button_text_color_hover\":\"#000000\",\"button_background_color_hover\":\"#00ce1b\",\"icon_size\":{\"unit\":\"px\",\"size\":15},\"button_width\":{\"unit\":\"px\",\"size\":1},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"search-form\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7df48509\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"1147078d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6b1f2df0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Frequently Asked Questions\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"442ffb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Most frequent questions and answers\",\"header_size\":\"h5\",\"align\":\"center\",\"title_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"40f37237\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"top\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5b834b6d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#000000\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"1305fa8f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Can I edit the files ?\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6e9558b3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>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.<\\/p>\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"70092d1f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#000000\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7f66a7a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Is it Layered ?\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5afee9a0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don\'t look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn\'t anything embarrassing hidden in the middle of text.<\\/p>\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"18eeaf1b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"top\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"70263275\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#000000\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"-60\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"17ba0aac\",\"elType\":\"widget\",\"settings\":{\"title\":\"How can I edit the masks ?<span style=\\\"font-style: inherit;\\\"><\\/span><br>\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3d4ba25c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>All the Lorem Ipsum generators on the Internet tend to repeat predefined chunks as necessary, making this the first true generator on the Internet. It uses a dictionary of over 200 Latin words, combined with a handful of model sentence structures, to generate Lorem Ipsum which looks reasonable. The generated Lorem Ipsum is therefore always free from repetition, injected humour, or non-characteristic words etc.<\\/p>\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"6a6c1bcf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#000000\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"73a52ec9\",\"elType\":\"widget\",\"settings\":{\"title\":\"What do I need to open the files ?<span style=\\\"font-style: inherit;\\\"><\\/span><br>\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7248ef37\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from 45 BC, making it over 2000 years old. Richard McClintock, a Latin professor at Hampden-Sydney College in Virginia, looked up one of the more obscure Latin words<\\/p>\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4a81ef3c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"top\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"3c72f59e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#000000\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"81e1b8a\",\"elType\":\"widget\",\"settings\":{\"title\":\"How can I edit smart objects ?<span style=\\\"font-style: inherit;\\\"><\\/span><br>\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1b16c234\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The standard chunk of Lorem Ipsum used since the 1500s is reproduced below for those interested. Sections 1.10.32 and 1.10.33 from \\\"de Finibus Bonorum et Malorum\\\" by Cicero are also reproduced in their exact original form, accompanied by English versions from the 1914 translation<\\/p>\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"4ee174cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#000000\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"49c014d2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Is the font free ?\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4a998124\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from 45 BC, making it over 2000 years old. Richard McClintock, a Latin professor at Hampden-Sydney College in Virginia, looked up one of the more obscure Latin words, consectetur<\\/p>\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b747fda\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":700},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":900},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7eab781\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"43661634\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our company is a collective of amazing people striving to build delightful products.\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.4},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70cc6d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.<\\/p>\",\"align\":\"center\",\"text_color\":\"#686868\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"615dfb3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1000},\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"6414755f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3bb26eed\",\"elType\":\"widget\",\"settings\":{\"text\":\"Read More\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3},\"button_text_color\":\"#ffffff\",\"background_color\":\"rgba(0,0,0,0)\",\"hover_color\":\"#00ce1b\",\"button_hover_border_color\":\"#00ce1b\",\"hover_animation\":\"grow\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(270,57,'_elementor_edit_mode','builder'),(271,57,'_elementor_elements_usage','a:6:{s:7:\"heading\";i:10;s:11:\"text-editor\";i:8;s:11:\"search-form\";i:1;s:6:\"column\";i:10;s:7:\"section\";i:7;s:6:\"button\";i:1;}'),(274,58,'_elementor_template_type','post'),(275,58,'_elementor_version','2.6.8'),(276,58,'_elementor_pro_version','2.6.5'),(277,58,'_wp_page_template','default'),(278,58,'_elementor_data','[{\"id\":\"55396f27\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":700},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_image\":{\"id\":50,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Theatrical_Display_V003C.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\"},\"elements\":[{\"id\":\"59493b21\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"51a2493a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Men in black\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65},\"typography_font_weight\":\"600\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":40}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3022c757\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<hr \\/><div id=\\\"Content\\\"><div class=\\\"boxed\\\"><div id=\\\"lipsum\\\"><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer maximus nulla a aliquet dignissim. Suspendisse potenti. Proin efficitur lacus vitae augue porta posuere.<\\/p><\\/div><\\/div><\\/div>\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"478bcc27\",\"elType\":\"widget\",\"settings\":{\"placeholder\":\"Search by name, education, family , etc....\",\"button_text\":\"Search\",\"input_typography_typography\":\"custom\",\"input_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"input_typography_font_weight\":\"300\",\"input_text_color\":\"#ffffff\",\"input_background_color\":\"rgba(255,255,255,0.18)\",\"border_radius\":{\"unit\":\"px\",\"size\":0},\"button_text_color\":\"#000000\",\"button_background_color\":\"#ffffff\",\"button_text_color_hover\":\"#000000\",\"button_background_color_hover\":\"#00ce1b\",\"icon_size\":{\"unit\":\"px\",\"size\":15},\"button_width\":{\"unit\":\"px\",\"size\":1},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"search-form\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7df48509\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"1147078d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6b1f2df0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Frequently Asked Questions\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"442ffb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Most frequent questions and answers\",\"header_size\":\"h5\",\"align\":\"center\",\"title_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"40f37237\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"top\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5b834b6d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#000000\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"1305fa8f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Can I edit the files ?\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6e9558b3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>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.<\\/p>\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"70092d1f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#000000\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7f66a7a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Is it Layered ?\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5afee9a0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don\'t look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn\'t anything embarrassing hidden in the middle of text.<\\/p>\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"18eeaf1b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"top\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"70263275\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#000000\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"-60\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"17ba0aac\",\"elType\":\"widget\",\"settings\":{\"title\":\"How can I edit the masks ?<span style=\\\"font-style: inherit;\\\"><\\/span><br>\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3d4ba25c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>All the Lorem Ipsum generators on the Internet tend to repeat predefined chunks as necessary, making this the first true generator on the Internet. It uses a dictionary of over 200 Latin words, combined with a handful of model sentence structures, to generate Lorem Ipsum which looks reasonable. The generated Lorem Ipsum is therefore always free from repetition, injected humour, or non-characteristic words etc.<\\/p>\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"6a6c1bcf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#000000\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"73a52ec9\",\"elType\":\"widget\",\"settings\":{\"title\":\"What do I need to open the files ?<span style=\\\"font-style: inherit;\\\"><\\/span><br>\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7248ef37\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from 45 BC, making it over 2000 years old. Richard McClintock, a Latin professor at Hampden-Sydney College in Virginia, looked up one of the more obscure Latin words<\\/p>\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4a81ef3c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"top\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"3c72f59e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#000000\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"81e1b8a\",\"elType\":\"widget\",\"settings\":{\"title\":\"How can I edit smart objects ?<span style=\\\"font-style: inherit;\\\"><\\/span><br>\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1b16c234\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The standard chunk of Lorem Ipsum used since the 1500s is reproduced below for those interested. Sections 1.10.32 and 1.10.33 from \\\"de Finibus Bonorum et Malorum\\\" by Cicero are also reproduced in their exact original form, accompanied by English versions from the 1914 translation<\\/p>\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"4ee174cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#000000\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"49c014d2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Is the font free ?\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4a998124\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from 45 BC, making it over 2000 years old. Richard McClintock, a Latin professor at Hampden-Sydney College in Virginia, looked up one of the more obscure Latin words, consectetur<\\/p>\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b747fda\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":700},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":900},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7eab781\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"43661634\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our company is a collective of amazing people striving to build delightful products.\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.4},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70cc6d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.<\\/p>\",\"align\":\"center\",\"text_color\":\"#686868\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"615dfb3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1000},\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"6414755f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3bb26eed\",\"elType\":\"widget\",\"settings\":{\"text\":\"Read More\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3},\"button_text_color\":\"#ffffff\",\"background_color\":\"rgba(0,0,0,0)\",\"hover_color\":\"#00ce1b\",\"button_hover_border_color\":\"#00ce1b\",\"hover_animation\":\"grow\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(279,58,'_elementor_edit_mode','builder'),(280,58,'_elementor_elements_usage','a:6:{s:7:\"heading\";i:10;s:11:\"text-editor\";i:8;s:11:\"search-form\";i:1;s:6:\"column\";i:10;s:7:\"section\";i:7;s:6:\"button\";i:1;}'),(283,59,'_elementor_template_type','post'),(284,59,'_elementor_version','2.6.8'),(285,59,'_elementor_pro_version','2.6.5'),(286,59,'_wp_page_template','default'),(287,59,'_elementor_data','[{\"id\":\"55396f27\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":700},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_image\":{\"id\":50,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Theatrical_Display_V003C.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\"},\"elements\":[{\"id\":\"59493b21\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"51a2493a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Men in black\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65},\"typography_font_weight\":\"600\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":40}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3022c757\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<hr \\/><div id=\\\"Content\\\"><div class=\\\"boxed\\\"><div id=\\\"lipsum\\\"><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer maximus nulla a aliquet dignissim. Suspendisse potenti. Proin efficitur lacus vitae augue porta posuere.<\\/p><\\/div><\\/div><\\/div>\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"478bcc27\",\"elType\":\"widget\",\"settings\":{\"placeholder\":\"Search by name, education, family , etc....\",\"button_text\":\"Search\",\"input_typography_typography\":\"custom\",\"input_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"input_typography_font_weight\":\"300\",\"input_text_color\":\"#ffffff\",\"input_background_color\":\"rgba(255,255,255,0.18)\",\"border_radius\":{\"unit\":\"px\",\"size\":0},\"button_text_color\":\"#000000\",\"button_background_color\":\"#ffffff\",\"button_text_color_hover\":\"#000000\",\"button_background_color_hover\":\"#00ce1b\",\"icon_size\":{\"unit\":\"px\",\"size\":15},\"button_width\":{\"unit\":\"px\",\"size\":1},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"search-form\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7df48509\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"1147078d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6b1f2df0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Frequently Asked Questions\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"442ffb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Most frequent questions and answers\",\"header_size\":\"h5\",\"align\":\"center\",\"title_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"40f37237\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"top\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5b834b6d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#000000\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"1305fa8f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Can I edit the files ?\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6e9558b3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>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.<\\/p>\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"70092d1f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#000000\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7f66a7a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Is it Layered ?\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5afee9a0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don\'t look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn\'t anything embarrassing hidden in the middle of text.<\\/p>\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"18eeaf1b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"top\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"70263275\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#000000\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"-60\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"17ba0aac\",\"elType\":\"widget\",\"settings\":{\"title\":\"How can I edit the masks ?<span style=\\\"font-style: inherit;\\\"><\\/span><br>\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3d4ba25c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>All the Lorem Ipsum generators on the Internet tend to repeat predefined chunks as necessary, making this the first true generator on the Internet. It uses a dictionary of over 200 Latin words, combined with a handful of model sentence structures, to generate Lorem Ipsum which looks reasonable. The generated Lorem Ipsum is therefore always free from repetition, injected humour, or non-characteristic words etc.<\\/p>\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"6a6c1bcf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#000000\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"73a52ec9\",\"elType\":\"widget\",\"settings\":{\"title\":\"What do I need to open the files ?<span style=\\\"font-style: inherit;\\\"><\\/span><br>\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7248ef37\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from 45 BC, making it over 2000 years old. Richard McClintock, a Latin professor at Hampden-Sydney College in Virginia, looked up one of the more obscure Latin words<\\/p>\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4a81ef3c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"top\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"3c72f59e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#000000\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"81e1b8a\",\"elType\":\"widget\",\"settings\":{\"title\":\"How can I edit smart objects ?<span style=\\\"font-style: inherit;\\\"><\\/span><br>\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1b16c234\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The standard chunk of Lorem Ipsum used since the 1500s is reproduced below for those interested. Sections 1.10.32 and 1.10.33 from \\\"de Finibus Bonorum et Malorum\\\" by Cicero are also reproduced in their exact original form, accompanied by English versions from the 1914 translation<\\/p>\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"4ee174cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#000000\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"49c014d2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Is the font free ?\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4a998124\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from 45 BC, making it over 2000 years old. Richard McClintock, a Latin professor at Hampden-Sydney College in Virginia, looked up one of the more obscure Latin words, consectetur<\\/p>\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b747fda\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":700},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":900},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7eab781\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"43661634\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our company is a collective of amazing people striving to build delightful products.\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.4},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70cc6d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.<\\/p>\",\"align\":\"center\",\"text_color\":\"#686868\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"615dfb3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1000},\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"6414755f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3bb26eed\",\"elType\":\"widget\",\"settings\":{\"text\":\"Read More\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3},\"button_text_color\":\"#ffffff\",\"background_color\":\"rgba(0,0,0,0)\",\"hover_color\":\"#00ce1b\",\"button_hover_border_color\":\"#00ce1b\",\"hover_animation\":\"grow\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(288,59,'_elementor_edit_mode','builder'),(289,59,'_elementor_elements_usage','a:6:{s:7:\"heading\";i:10;s:11:\"text-editor\";i:8;s:11:\"search-form\";i:1;s:6:\"column\";i:10;s:7:\"section\";i:7;s:6:\"button\";i:1;}'),(292,60,'_elementor_version','2.6.8'),(293,60,'_elementor_pro_version','2.6.5'),(294,60,'_wp_page_template','default'),(295,60,'_elementor_data','[{\"id\":\"55396f27\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":700},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_image\":{\"id\":50,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Theatrical_Display_V003C.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_range\":\"viewport\"},\"elements\":[{\"id\":\"59493b21\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"51a2493a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Men in black\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65},\"typography_font_weight\":\"600\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":40}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3022c757\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<hr \\/><div id=\\\"Content\\\"><div class=\\\"boxed\\\"><div id=\\\"lipsum\\\"><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer maximus nulla a aliquet dignissim. Suspendisse potenti. Proin efficitur lacus vitae augue porta posuere.<\\/p><\\/div><\\/div><\\/div>\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"478bcc27\",\"elType\":\"widget\",\"settings\":{\"placeholder\":\"Search by name, education, family , etc....\",\"button_text\":\"Search\",\"input_typography_typography\":\"custom\",\"input_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"input_typography_font_weight\":\"300\",\"input_text_color\":\"#ffffff\",\"input_background_color\":\"rgba(255,255,255,0.18)\",\"border_radius\":{\"unit\":\"px\",\"size\":0},\"button_text_color\":\"#000000\",\"button_background_color\":\"#ffffff\",\"button_text_color_hover\":\"#000000\",\"button_background_color_hover\":\"#00ce1b\",\"icon_size\":{\"unit\":\"px\",\"size\":15},\"button_width\":{\"unit\":\"px\",\"size\":1},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"search-form\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7df48509\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"1147078d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6b1f2df0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Frequently Asked Questions\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"442ffb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Most frequent questions and answers\",\"header_size\":\"h5\",\"align\":\"center\",\"title_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"40f37237\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"top\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5b834b6d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#000000\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"1305fa8f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Can I edit the files ?\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6e9558b3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>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.<\\/p>\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"70092d1f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#000000\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7f66a7a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Is it Layered ?\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5afee9a0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don\'t look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn\'t anything embarrassing hidden in the middle of text.<\\/p>\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"18eeaf1b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"top\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"70263275\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#000000\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"-60\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"17ba0aac\",\"elType\":\"widget\",\"settings\":{\"title\":\"How can I edit the masks ?<span style=\\\"font-style: inherit;\\\"><\\/span><br>\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3d4ba25c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>All the Lorem Ipsum generators on the Internet tend to repeat predefined chunks as necessary, making this the first true generator on the Internet. It uses a dictionary of over 200 Latin words, combined with a handful of model sentence structures, to generate Lorem Ipsum which looks reasonable. The generated Lorem Ipsum is therefore always free from repetition, injected humour, or non-characteristic words etc.<\\/p>\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"6a6c1bcf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#000000\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"73a52ec9\",\"elType\":\"widget\",\"settings\":{\"title\":\"What do I need to open the files ?<span style=\\\"font-style: inherit;\\\"><\\/span><br>\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7248ef37\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from 45 BC, making it over 2000 years old. Richard McClintock, a Latin professor at Hampden-Sydney College in Virginia, looked up one of the more obscure Latin words<\\/p>\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4a81ef3c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"top\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"3c72f59e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#000000\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"81e1b8a\",\"elType\":\"widget\",\"settings\":{\"title\":\"How can I edit smart objects ?<span style=\\\"font-style: inherit;\\\"><\\/span><br>\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1b16c234\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The standard chunk of Lorem Ipsum used since the 1500s is reproduced below for those interested. Sections 1.10.32 and 1.10.33 from \\\"de Finibus Bonorum et Malorum\\\" by Cicero are also reproduced in their exact original form, accompanied by English versions from the 1914 translation<\\/p>\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"4ee174cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#000000\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"49c014d2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Is the font free ?\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4a998124\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from 45 BC, making it over 2000 years old. Richard McClintock, a Latin professor at Hampden-Sydney College in Virginia, looked up one of the more obscure Latin words, consectetur<\\/p>\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b747fda\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":700},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":900},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7eab781\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"43661634\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our company is a collective of amazing people striving to build delightful products.\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.4},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70cc6d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.<\\/p>\",\"align\":\"center\",\"text_color\":\"#686868\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"615dfb3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1000},\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"6414755f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3bb26eed\",\"elType\":\"widget\",\"settings\":{\"text\":\"Read More\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3},\"button_text_color\":\"#ffffff\",\"background_color\":\"rgba(0,0,0,0)\",\"hover_color\":\"#00ce1b\",\"button_hover_border_color\":\"#00ce1b\",\"hover_animation\":\"grow\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(296,60,'_elementor_edit_mode','builder'),(297,60,'_elementor_elements_usage','a:6:{s:7:\"heading\";i:10;s:11:\"text-editor\";i:8;s:11:\"search-form\";i:1;s:6:\"column\";i:10;s:7:\"section\";i:7;s:6:\"button\";i:1;}'),(369,69,'_elementor_template_type','post'),(370,69,'_elementor_version','2.6.8'),(299,61,'_elementor_template_type','post'),(300,61,'_elementor_version','2.6.8'),(301,61,'_elementor_pro_version','2.6.5'),(302,61,'_wp_page_template','default'),(303,61,'_elementor_data','[{\"id\":\"55396f27\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":700},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_image\":{\"id\":50,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Theatrical_Display_V003C.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":51,\"end\":100}},\"motion_fx_range\":\"viewport\"},\"elements\":[{\"id\":\"59493b21\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"51a2493a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Men in black\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65},\"typography_font_weight\":\"600\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":40}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3022c757\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<hr \\/><div id=\\\"Content\\\"><div class=\\\"boxed\\\"><div id=\\\"lipsum\\\"><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer maximus nulla a aliquet dignissim. Suspendisse potenti. Proin efficitur lacus vitae augue porta posuere.<\\/p><\\/div><\\/div><\\/div>\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"478bcc27\",\"elType\":\"widget\",\"settings\":{\"placeholder\":\"Search by name, education, family , etc....\",\"button_text\":\"Search\",\"input_typography_typography\":\"custom\",\"input_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"input_typography_font_weight\":\"300\",\"input_text_color\":\"#ffffff\",\"input_background_color\":\"rgba(255,255,255,0.18)\",\"border_radius\":{\"unit\":\"px\",\"size\":0},\"button_text_color\":\"#000000\",\"button_background_color\":\"#ffffff\",\"button_text_color_hover\":\"#000000\",\"button_background_color_hover\":\"#00ce1b\",\"icon_size\":{\"unit\":\"px\",\"size\":15},\"button_width\":{\"unit\":\"px\",\"size\":1},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"search-form\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7df48509\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"1147078d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6b1f2df0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Frequently Asked Questions\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"442ffb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Most frequent questions and answers\",\"header_size\":\"h5\",\"align\":\"center\",\"title_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"40f37237\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"top\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5b834b6d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#000000\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"1305fa8f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Can I edit the files ?\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6e9558b3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>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.<\\/p>\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"70092d1f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#000000\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7f66a7a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Is it Layered ?\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5afee9a0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don\'t look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn\'t anything embarrassing hidden in the middle of text.<\\/p>\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"18eeaf1b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"top\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"70263275\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#000000\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"-60\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"17ba0aac\",\"elType\":\"widget\",\"settings\":{\"title\":\"How can I edit the masks ?<span style=\\\"font-style: inherit;\\\"><\\/span><br>\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3d4ba25c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>All the Lorem Ipsum generators on the Internet tend to repeat predefined chunks as necessary, making this the first true generator on the Internet. It uses a dictionary of over 200 Latin words, combined with a handful of model sentence structures, to generate Lorem Ipsum which looks reasonable. The generated Lorem Ipsum is therefore always free from repetition, injected humour, or non-characteristic words etc.<\\/p>\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"6a6c1bcf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#000000\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"73a52ec9\",\"elType\":\"widget\",\"settings\":{\"title\":\"What do I need to open the files ?<span style=\\\"font-style: inherit;\\\"><\\/span><br>\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7248ef37\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from 45 BC, making it over 2000 years old. Richard McClintock, a Latin professor at Hampden-Sydney College in Virginia, looked up one of the more obscure Latin words<\\/p>\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4a81ef3c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"top\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"3c72f59e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#000000\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"81e1b8a\",\"elType\":\"widget\",\"settings\":{\"title\":\"How can I edit smart objects ?<span style=\\\"font-style: inherit;\\\"><\\/span><br>\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1b16c234\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The standard chunk of Lorem Ipsum used since the 1500s is reproduced below for those interested. Sections 1.10.32 and 1.10.33 from \\\"de Finibus Bonorum et Malorum\\\" by Cicero are also reproduced in their exact original form, accompanied by English versions from the 1914 translation<\\/p>\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"4ee174cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#000000\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"49c014d2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Is the font free ?\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4a998124\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from 45 BC, making it over 2000 years old. Richard McClintock, a Latin professor at Hampden-Sydney College in Virginia, looked up one of the more obscure Latin words, consectetur<\\/p>\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b747fda\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":700},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":900},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7eab781\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"43661634\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our company is a collective of amazing people striving to build delightful products.\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.4},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70cc6d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.<\\/p>\",\"align\":\"center\",\"text_color\":\"#686868\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"615dfb3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1000},\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"6414755f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3bb26eed\",\"elType\":\"widget\",\"settings\":{\"text\":\"Read More\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3},\"button_text_color\":\"#ffffff\",\"background_color\":\"rgba(0,0,0,0)\",\"hover_color\":\"#00ce1b\",\"button_hover_border_color\":\"#00ce1b\",\"hover_animation\":\"grow\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(304,61,'_elementor_edit_mode','builder'),(305,61,'_elementor_elements_usage','a:6:{s:7:\"heading\";i:10;s:11:\"text-editor\";i:8;s:11:\"search-form\";i:1;s:6:\"column\";i:10;s:7:\"section\";i:7;s:6:\"button\";i:1;}'),(308,62,'_elementor_template_type','post'),(309,62,'_elementor_version','2.6.8'),(310,62,'_elementor_pro_version','2.6.5'),(311,62,'_wp_page_template','default'),(312,62,'_elementor_data','[{\"id\":\"55396f27\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":700},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_image\":{\"id\":50,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Theatrical_Display_V003C.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":49}},\"motion_fx_range\":\"viewport\"},\"elements\":[{\"id\":\"59493b21\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"51a2493a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Men in black\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65},\"typography_font_weight\":\"600\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":40}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3022c757\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<hr \\/><div id=\\\"Content\\\"><div class=\\\"boxed\\\"><div id=\\\"lipsum\\\"><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer maximus nulla a aliquet dignissim. Suspendisse potenti. Proin efficitur lacus vitae augue porta posuere.<\\/p><\\/div><\\/div><\\/div>\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"478bcc27\",\"elType\":\"widget\",\"settings\":{\"placeholder\":\"Search by name, education, family , etc....\",\"button_text\":\"Search\",\"input_typography_typography\":\"custom\",\"input_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"input_typography_font_weight\":\"300\",\"input_text_color\":\"#ffffff\",\"input_background_color\":\"rgba(255,255,255,0.18)\",\"border_radius\":{\"unit\":\"px\",\"size\":0},\"button_text_color\":\"#000000\",\"button_background_color\":\"#ffffff\",\"button_text_color_hover\":\"#000000\",\"button_background_color_hover\":\"#00ce1b\",\"icon_size\":{\"unit\":\"px\",\"size\":15},\"button_width\":{\"unit\":\"px\",\"size\":1},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"search-form\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7df48509\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"1147078d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6b1f2df0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Frequently Asked Questions\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"442ffb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Most frequent questions and answers\",\"header_size\":\"h5\",\"align\":\"center\",\"title_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"40f37237\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"top\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5b834b6d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#000000\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"1305fa8f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Can I edit the files ?\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6e9558b3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>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.<\\/p>\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"70092d1f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#000000\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7f66a7a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Is it Layered ?\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5afee9a0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don\'t look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn\'t anything embarrassing hidden in the middle of text.<\\/p>\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"18eeaf1b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"top\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"70263275\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#000000\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"-60\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"17ba0aac\",\"elType\":\"widget\",\"settings\":{\"title\":\"How can I edit the masks ?<span style=\\\"font-style: inherit;\\\"><\\/span><br>\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3d4ba25c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>All the Lorem Ipsum generators on the Internet tend to repeat predefined chunks as necessary, making this the first true generator on the Internet. It uses a dictionary of over 200 Latin words, combined with a handful of model sentence structures, to generate Lorem Ipsum which looks reasonable. The generated Lorem Ipsum is therefore always free from repetition, injected humour, or non-characteristic words etc.<\\/p>\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"6a6c1bcf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#000000\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"73a52ec9\",\"elType\":\"widget\",\"settings\":{\"title\":\"What do I need to open the files ?<span style=\\\"font-style: inherit;\\\"><\\/span><br>\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7248ef37\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from 45 BC, making it over 2000 years old. Richard McClintock, a Latin professor at Hampden-Sydney College in Virginia, looked up one of the more obscure Latin words<\\/p>\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4a81ef3c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"top\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"3c72f59e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#000000\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"81e1b8a\",\"elType\":\"widget\",\"settings\":{\"title\":\"How can I edit smart objects ?<span style=\\\"font-style: inherit;\\\"><\\/span><br>\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1b16c234\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The standard chunk of Lorem Ipsum used since the 1500s is reproduced below for those interested. Sections 1.10.32 and 1.10.33 from \\\"de Finibus Bonorum et Malorum\\\" by Cicero are also reproduced in their exact original form, accompanied by English versions from the 1914 translation<\\/p>\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"4ee174cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#000000\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"49c014d2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Is the font free ?\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4a998124\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from 45 BC, making it over 2000 years old. Richard McClintock, a Latin professor at Hampden-Sydney College in Virginia, looked up one of the more obscure Latin words, consectetur<\\/p>\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b747fda\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":700},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":900},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7eab781\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"43661634\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our company is a collective of amazing people striving to build delightful products.\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.4},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70cc6d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.<\\/p>\",\"align\":\"center\",\"text_color\":\"#686868\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"615dfb3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1000},\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"6414755f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3bb26eed\",\"elType\":\"widget\",\"settings\":{\"text\":\"Read More\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3},\"button_text_color\":\"#ffffff\",\"background_color\":\"rgba(0,0,0,0)\",\"hover_color\":\"#00ce1b\",\"button_hover_border_color\":\"#00ce1b\",\"hover_animation\":\"grow\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(313,62,'_elementor_edit_mode','builder'),(314,62,'_elementor_elements_usage','a:6:{s:7:\"heading\";i:10;s:11:\"text-editor\";i:8;s:11:\"search-form\";i:1;s:6:\"column\";i:10;s:7:\"section\";i:7;s:6:\"button\";i:1;}'),(317,63,'_elementor_template_type','post'),(318,63,'_elementor_version','2.6.8'),(319,63,'_elementor_pro_version','2.6.5'),(320,63,'_wp_page_template','default'),(321,63,'_elementor_data','[{\"id\":\"55396f27\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":700},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_image\":{\"id\":50,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Theatrical_Display_V003C.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":12}},\"motion_fx_range\":\"viewport\"},\"elements\":[{\"id\":\"59493b21\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"51a2493a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Men in black\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65},\"typography_font_weight\":\"600\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":40}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3022c757\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<hr \\/><div id=\\\"Content\\\"><div class=\\\"boxed\\\"><div id=\\\"lipsum\\\"><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer maximus nulla a aliquet dignissim. Suspendisse potenti. Proin efficitur lacus vitae augue porta posuere.<\\/p><\\/div><\\/div><\\/div>\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"478bcc27\",\"elType\":\"widget\",\"settings\":{\"placeholder\":\"Search by name, education, family , etc....\",\"button_text\":\"Search\",\"input_typography_typography\":\"custom\",\"input_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"input_typography_font_weight\":\"300\",\"input_text_color\":\"#ffffff\",\"input_background_color\":\"rgba(255,255,255,0.18)\",\"border_radius\":{\"unit\":\"px\",\"size\":0},\"button_text_color\":\"#000000\",\"button_background_color\":\"#ffffff\",\"button_text_color_hover\":\"#000000\",\"button_background_color_hover\":\"#00ce1b\",\"icon_size\":{\"unit\":\"px\",\"size\":15},\"button_width\":{\"unit\":\"px\",\"size\":1},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"search-form\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7df48509\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"1147078d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6b1f2df0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Frequently Asked Questions\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"442ffb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Most frequent questions and answers\",\"header_size\":\"h5\",\"align\":\"center\",\"title_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"40f37237\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"top\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5b834b6d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#000000\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"1305fa8f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Can I edit the files ?\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6e9558b3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>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.<\\/p>\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"70092d1f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#000000\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7f66a7a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Is it Layered ?\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5afee9a0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don\'t look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn\'t anything embarrassing hidden in the middle of text.<\\/p>\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"18eeaf1b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"top\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"70263275\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#000000\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"-60\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"17ba0aac\",\"elType\":\"widget\",\"settings\":{\"title\":\"How can I edit the masks ?<span style=\\\"font-style: inherit;\\\"><\\/span><br>\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3d4ba25c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>All the Lorem Ipsum generators on the Internet tend to repeat predefined chunks as necessary, making this the first true generator on the Internet. It uses a dictionary of over 200 Latin words, combined with a handful of model sentence structures, to generate Lorem Ipsum which looks reasonable. The generated Lorem Ipsum is therefore always free from repetition, injected humour, or non-characteristic words etc.<\\/p>\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"6a6c1bcf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#000000\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"73a52ec9\",\"elType\":\"widget\",\"settings\":{\"title\":\"What do I need to open the files ?<span style=\\\"font-style: inherit;\\\"><\\/span><br>\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7248ef37\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from 45 BC, making it over 2000 years old. Richard McClintock, a Latin professor at Hampden-Sydney College in Virginia, looked up one of the more obscure Latin words<\\/p>\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4a81ef3c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"top\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"3c72f59e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#000000\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"81e1b8a\",\"elType\":\"widget\",\"settings\":{\"title\":\"How can I edit smart objects ?<span style=\\\"font-style: inherit;\\\"><\\/span><br>\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1b16c234\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The standard chunk of Lorem Ipsum used since the 1500s is reproduced below for those interested. Sections 1.10.32 and 1.10.33 from \\\"de Finibus Bonorum et Malorum\\\" by Cicero are also reproduced in their exact original form, accompanied by English versions from the 1914 translation<\\/p>\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"4ee174cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#000000\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"49c014d2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Is the font free ?\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4a998124\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from 45 BC, making it over 2000 years old. Richard McClintock, a Latin professor at Hampden-Sydney College in Virginia, looked up one of the more obscure Latin words, consectetur<\\/p>\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b747fda\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":700},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":900},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7eab781\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"43661634\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our company is a collective of amazing people striving to build delightful products.\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.4},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70cc6d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.<\\/p>\",\"align\":\"center\",\"text_color\":\"#686868\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"615dfb3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1000},\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"6414755f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3bb26eed\",\"elType\":\"widget\",\"settings\":{\"text\":\"Read More\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3},\"button_text_color\":\"#ffffff\",\"background_color\":\"rgba(0,0,0,0)\",\"hover_color\":\"#00ce1b\",\"button_hover_border_color\":\"#00ce1b\",\"hover_animation\":\"grow\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(322,63,'_elementor_edit_mode','builder'),(323,63,'_elementor_elements_usage','a:6:{s:7:\"heading\";i:10;s:11:\"text-editor\";i:8;s:11:\"search-form\";i:1;s:6:\"column\";i:10;s:7:\"section\";i:7;s:6:\"button\";i:1;}'),(326,64,'_elementor_template_type','post'),(327,64,'_elementor_version','2.6.8'),(328,64,'_elementor_pro_version','2.6.5'),(329,64,'_wp_page_template','default'),(330,64,'_elementor_data','[{\"id\":\"55396f27\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":700},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_image\":{\"id\":50,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Theatrical_Display_V003C.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":12}},\"motion_fx_range\":\"viewport\"},\"elements\":[{\"id\":\"59493b21\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"51a2493a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Men in black\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65},\"typography_font_weight\":\"600\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":40}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3022c757\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<hr \\/><div id=\\\"Content\\\"><div class=\\\"boxed\\\"><div id=\\\"lipsum\\\"><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer maximus nulla a aliquet dignissim. Suspendisse potenti. Proin efficitur lacus vitae augue porta posuere.<\\/p><\\/div><\\/div><\\/div>\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"478bcc27\",\"elType\":\"widget\",\"settings\":{\"placeholder\":\"Search by name, education, family , etc....\",\"button_text\":\"Search\",\"input_typography_typography\":\"custom\",\"input_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"input_typography_font_weight\":\"300\",\"input_text_color\":\"#ffffff\",\"input_background_color\":\"rgba(255,255,255,0.18)\",\"border_radius\":{\"unit\":\"px\",\"size\":0},\"button_text_color\":\"#000000\",\"button_background_color\":\"#ffffff\",\"button_text_color_hover\":\"#000000\",\"button_background_color_hover\":\"#00ce1b\",\"icon_size\":{\"unit\":\"px\",\"size\":15},\"button_width\":{\"unit\":\"px\",\"size\":1},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"search-form\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7df48509\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"1147078d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6b1f2df0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Frequently Asked Questions\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"442ffb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Most frequent questions and answers\",\"header_size\":\"h5\",\"align\":\"center\",\"title_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"40f37237\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"top\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5b834b6d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#000000\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"1305fa8f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Can I edit the files ?\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6e9558b3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>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.<\\/p>\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"70092d1f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#000000\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7f66a7a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Is it Layered ?\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5afee9a0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don\'t look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn\'t anything embarrassing hidden in the middle of text.<\\/p>\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"18eeaf1b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"top\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"70263275\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#000000\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"-60\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"17ba0aac\",\"elType\":\"widget\",\"settings\":{\"title\":\"How can I edit the masks ?<span style=\\\"font-style: inherit;\\\"><\\/span><br>\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3d4ba25c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>All the Lorem Ipsum generators on the Internet tend to repeat predefined chunks as necessary, making this the first true generator on the Internet. It uses a dictionary of over 200 Latin words, combined with a handful of model sentence structures, to generate Lorem Ipsum which looks reasonable. The generated Lorem Ipsum is therefore always free from repetition, injected humour, or non-characteristic words etc.<\\/p>\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"6a6c1bcf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#000000\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"73a52ec9\",\"elType\":\"widget\",\"settings\":{\"title\":\"What do I need to open the files ?<span style=\\\"font-style: inherit;\\\"><\\/span><br>\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7248ef37\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from 45 BC, making it over 2000 years old. Richard McClintock, a Latin professor at Hampden-Sydney College in Virginia, looked up one of the more obscure Latin words<\\/p>\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4a81ef3c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"top\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"3c72f59e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#000000\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"81e1b8a\",\"elType\":\"widget\",\"settings\":{\"title\":\"How can I edit smart objects ?<span style=\\\"font-style: inherit;\\\"><\\/span><br>\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1b16c234\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The standard chunk of Lorem Ipsum used since the 1500s is reproduced below for those interested. Sections 1.10.32 and 1.10.33 from \\\"de Finibus Bonorum et Malorum\\\" by Cicero are also reproduced in their exact original form, accompanied by English versions from the 1914 translation<\\/p>\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"4ee174cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#000000\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"49c014d2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Is the font free ?\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4a998124\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from 45 BC, making it over 2000 years old. Richard McClintock, a Latin professor at Hampden-Sydney College in Virginia, looked up one of the more obscure Latin words, consectetur<\\/p>\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b747fda\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":700},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":900},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7eab781\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"43661634\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our company is a collective of amazing people striving to build delightful products.\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.4},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70cc6d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.<\\/p>\",\"align\":\"center\",\"text_color\":\"#686868\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"615dfb3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1000},\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"6414755f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3bb26eed\",\"elType\":\"widget\",\"settings\":{\"text\":\"Read More\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3},\"button_text_color\":\"#ffffff\",\"background_color\":\"rgba(0,0,0,0)\",\"hover_color\":\"#00ce1b\",\"button_hover_border_color\":\"#00ce1b\",\"hover_animation\":\"grow\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(331,64,'_elementor_edit_mode','builder'),(332,64,'_elementor_elements_usage','a:6:{s:7:\"heading\";i:10;s:11:\"text-editor\";i:8;s:11:\"search-form\";i:1;s:6:\"column\";i:10;s:7:\"section\";i:7;s:6:\"button\";i:1;}'),(335,65,'_elementor_template_type','post'),(336,65,'_elementor_version','2.6.8'),(337,65,'_elementor_pro_version','2.6.5'),(338,65,'_wp_page_template','default'),(339,65,'_elementor_data','[{\"id\":\"55396f27\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":700},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_image\":{\"id\":50,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Theatrical_Display_V003C.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":12}},\"motion_fx_range\":\"viewport\"},\"elements\":[{\"id\":\"59493b21\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"51a2493a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Men in black\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65},\"typography_font_weight\":\"600\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":40}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3022c757\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<hr \\/><div id=\\\"Content\\\"><div class=\\\"boxed\\\"><div id=\\\"lipsum\\\"><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer maximus nulla a aliquet dignissim. Suspendisse potenti. Proin efficitur lacus vitae augue porta posuere.<\\/p><\\/div><\\/div><\\/div>\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"478bcc27\",\"elType\":\"widget\",\"settings\":{\"placeholder\":\"Search by name, education, family , etc....\",\"button_text\":\"Search\",\"input_typography_typography\":\"custom\",\"input_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"input_typography_font_weight\":\"300\",\"input_text_color\":\"#ffffff\",\"input_background_color\":\"rgba(255,255,255,0.18)\",\"border_radius\":{\"unit\":\"px\",\"size\":0},\"button_text_color\":\"#000000\",\"button_background_color\":\"#ffffff\",\"button_text_color_hover\":\"#000000\",\"button_background_color_hover\":\"#00ce1b\",\"icon_size\":{\"unit\":\"px\",\"size\":15},\"button_width\":{\"unit\":\"px\",\"size\":1},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"search-form\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7df48509\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"1147078d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6b1f2df0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Frequently Asked Questions\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"442ffb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Most frequent questions and answers\",\"header_size\":\"h5\",\"align\":\"center\",\"title_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"40f37237\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"top\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5b834b6d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#000000\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"1305fa8f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Can I edit the files ?\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6e9558b3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>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.<\\/p>\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"70092d1f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#000000\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7f66a7a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Is it Layered ?\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5afee9a0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don\'t look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn\'t anything embarrassing hidden in the middle of text.<\\/p>\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"18eeaf1b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"top\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"70263275\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#000000\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"-60\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"17ba0aac\",\"elType\":\"widget\",\"settings\":{\"title\":\"How can I edit the masks ?<span style=\\\"font-style: inherit;\\\"><\\/span><br>\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3d4ba25c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>All the Lorem Ipsum generators on the Internet tend to repeat predefined chunks as necessary, making this the first true generator on the Internet. It uses a dictionary of over 200 Latin words, combined with a handful of model sentence structures, to generate Lorem Ipsum which looks reasonable. The generated Lorem Ipsum is therefore always free from repetition, injected humour, or non-characteristic words etc.<\\/p>\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"6a6c1bcf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#000000\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"73a52ec9\",\"elType\":\"widget\",\"settings\":{\"title\":\"What do I need to open the files ?<span style=\\\"font-style: inherit;\\\"><\\/span><br>\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7248ef37\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from 45 BC, making it over 2000 years old. Richard McClintock, a Latin professor at Hampden-Sydney College in Virginia, looked up one of the more obscure Latin words<\\/p>\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4a81ef3c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"top\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"3c72f59e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#000000\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"81e1b8a\",\"elType\":\"widget\",\"settings\":{\"title\":\"How can I edit smart objects ?<span style=\\\"font-style: inherit;\\\"><\\/span><br>\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1b16c234\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The standard chunk of Lorem Ipsum used since the 1500s is reproduced below for those interested. Sections 1.10.32 and 1.10.33 from \\\"de Finibus Bonorum et Malorum\\\" by Cicero are also reproduced in their exact original form, accompanied by English versions from the 1914 translation<\\/p>\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"4ee174cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#000000\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"49c014d2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Is the font free ?\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4a998124\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from 45 BC, making it over 2000 years old. Richard McClintock, a Latin professor at Hampden-Sydney College in Virginia, looked up one of the more obscure Latin words, consectetur<\\/p>\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b747fda\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":700},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":900},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7eab781\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"43661634\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our company is a collective of amazing people striving to build delightful products.\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.4},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70cc6d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.<\\/p>\",\"align\":\"center\",\"text_color\":\"#686868\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"615dfb3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1000},\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"6414755f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3bb26eed\",\"elType\":\"widget\",\"settings\":{\"text\":\"Read More\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3},\"button_text_color\":\"#ffffff\",\"background_color\":\"rgba(0,0,0,0)\",\"hover_color\":\"#00ce1b\",\"button_hover_border_color\":\"#00ce1b\",\"hover_animation\":\"grow\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(340,65,'_elementor_edit_mode','builder'),(341,65,'_elementor_elements_usage','a:6:{s:7:\"heading\";i:10;s:11:\"text-editor\";i:8;s:11:\"search-form\";i:1;s:6:\"column\";i:10;s:7:\"section\";i:7;s:6:\"button\";i:1;}'),(352,67,'_elementor_template_type','post'),(343,66,'_elementor_template_type','post'),(344,66,'_elementor_version','2.6.8'),(345,66,'_elementor_pro_version','2.6.5'),(346,66,'_wp_page_template','default'),(347,66,'_elementor_data','[{\"id\":\"55396f27\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":700},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_image\":{\"id\":50,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Theatrical_Display_V003C.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":12}},\"motion_fx_range\":\"viewport\"},\"elements\":[{\"id\":\"59493b21\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"51a2493a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Men in black\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65},\"typography_font_weight\":\"600\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":40}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3022c757\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<hr \\/><div id=\\\"Content\\\"><div class=\\\"boxed\\\"><div id=\\\"lipsum\\\"><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer maximus nulla a aliquet dignissim. Suspendisse potenti. Proin efficitur lacus vitae augue porta posuere.<\\/p><\\/div><\\/div><\\/div>\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"478bcc27\",\"elType\":\"widget\",\"settings\":{\"placeholder\":\"Search by name, education, family , etc....\",\"button_text\":\"Search\",\"input_typography_typography\":\"custom\",\"input_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"input_typography_font_weight\":\"300\",\"input_text_color\":\"#ffffff\",\"input_background_color\":\"rgba(255,255,255,0.18)\",\"border_radius\":{\"unit\":\"px\",\"size\":0},\"button_text_color\":\"#000000\",\"button_background_color\":\"#ffffff\",\"button_text_color_hover\":\"#000000\",\"button_background_color_hover\":\"#00ce1b\",\"icon_size\":{\"unit\":\"px\",\"size\":15},\"button_width\":{\"unit\":\"px\",\"size\":1},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"search-form\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7df48509\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":49,\"end\":100}}},\"elements\":[{\"id\":\"1147078d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6b1f2df0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Frequently Asked Questions\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"442ffb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Most frequent questions and answers\",\"header_size\":\"h5\",\"align\":\"center\",\"title_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"40f37237\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"top\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5b834b6d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#000000\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"1305fa8f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Can I edit the files ?\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6e9558b3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>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.<\\/p>\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"70092d1f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#000000\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7f66a7a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Is it Layered ?\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5afee9a0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don\'t look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn\'t anything embarrassing hidden in the middle of text.<\\/p>\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"18eeaf1b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"top\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"70263275\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#000000\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"-60\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"17ba0aac\",\"elType\":\"widget\",\"settings\":{\"title\":\"How can I edit the masks ?<span style=\\\"font-style: inherit;\\\"><\\/span><br>\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3d4ba25c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>All the Lorem Ipsum generators on the Internet tend to repeat predefined chunks as necessary, making this the first true generator on the Internet. It uses a dictionary of over 200 Latin words, combined with a handful of model sentence structures, to generate Lorem Ipsum which looks reasonable. The generated Lorem Ipsum is therefore always free from repetition, injected humour, or non-characteristic words etc.<\\/p>\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"6a6c1bcf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#000000\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"73a52ec9\",\"elType\":\"widget\",\"settings\":{\"title\":\"What do I need to open the files ?<span style=\\\"font-style: inherit;\\\"><\\/span><br>\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7248ef37\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from 45 BC, making it over 2000 years old. Richard McClintock, a Latin professor at Hampden-Sydney College in Virginia, looked up one of the more obscure Latin words<\\/p>\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4a81ef3c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"top\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"3c72f59e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#000000\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"81e1b8a\",\"elType\":\"widget\",\"settings\":{\"title\":\"How can I edit smart objects ?<span style=\\\"font-style: inherit;\\\"><\\/span><br>\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1b16c234\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The standard chunk of Lorem Ipsum used since the 1500s is reproduced below for those interested. Sections 1.10.32 and 1.10.33 from \\\"de Finibus Bonorum et Malorum\\\" by Cicero are also reproduced in their exact original form, accompanied by English versions from the 1914 translation<\\/p>\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"4ee174cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#000000\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"49c014d2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Is the font free ?\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4a998124\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from 45 BC, making it over 2000 years old. Richard McClintock, a Latin professor at Hampden-Sydney College in Virginia, looked up one of the more obscure Latin words, consectetur<\\/p>\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b747fda\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":700},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":900},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7eab781\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"43661634\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our company is a collective of amazing people striving to build delightful products.\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.4},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70cc6d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.<\\/p>\",\"align\":\"center\",\"text_color\":\"#686868\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"615dfb3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1000},\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"6414755f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3bb26eed\",\"elType\":\"widget\",\"settings\":{\"text\":\"Read More\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3},\"button_text_color\":\"#ffffff\",\"background_color\":\"rgba(0,0,0,0)\",\"hover_color\":\"#00ce1b\",\"button_hover_border_color\":\"#00ce1b\",\"hover_animation\":\"grow\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(348,66,'_elementor_edit_mode','builder'),(349,66,'_elementor_elements_usage','a:6:{s:7:\"heading\";i:10;s:11:\"text-editor\";i:8;s:11:\"search-form\";i:1;s:6:\"column\";i:10;s:7:\"section\";i:7;s:6:\"button\";i:1;}'),(353,67,'_elementor_version','2.6.8'),(354,67,'_elementor_pro_version','2.6.5'),(355,67,'_wp_page_template','default'),(356,67,'_elementor_data','[{\"id\":\"55396f27\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":700},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_image\":{\"id\":50,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Theatrical_Display_V003C.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":12}},\"motion_fx_range\":\"viewport\"},\"elements\":[{\"id\":\"59493b21\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"51a2493a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Men in black\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65},\"typography_font_weight\":\"600\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":40}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3022c757\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<hr \\/><div id=\\\"Content\\\"><div class=\\\"boxed\\\"><div id=\\\"lipsum\\\"><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer maximus nulla a aliquet dignissim. Suspendisse potenti. Proin efficitur lacus vitae augue porta posuere.<\\/p><\\/div><\\/div><\\/div>\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"478bcc27\",\"elType\":\"widget\",\"settings\":{\"placeholder\":\"Search by name, education, family , etc....\",\"button_text\":\"Search\",\"input_typography_typography\":\"custom\",\"input_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"input_typography_font_weight\":\"300\",\"input_text_color\":\"#ffffff\",\"input_background_color\":\"rgba(255,255,255,0.18)\",\"border_radius\":{\"unit\":\"px\",\"size\":0},\"button_text_color\":\"#000000\",\"button_background_color\":\"#ffffff\",\"button_text_color_hover\":\"#000000\",\"button_background_color_hover\":\"#00ce1b\",\"icon_size\":{\"unit\":\"px\",\"size\":15},\"button_width\":{\"unit\":\"px\",\"size\":1},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"search-form\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7df48509\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\"},\"elements\":[{\"id\":\"1147078d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6b1f2df0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Frequently Asked Questions\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"442ffb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Most frequent questions and answers\",\"header_size\":\"h5\",\"align\":\"center\",\"title_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"40f37237\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"top\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5b834b6d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#000000\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"1305fa8f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Can I edit the files ?\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6e9558b3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>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.<\\/p>\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"70092d1f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#000000\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7f66a7a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Is it Layered ?\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5afee9a0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don\'t look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn\'t anything embarrassing hidden in the middle of text.<\\/p>\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"18eeaf1b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"top\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"70263275\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#000000\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"-60\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"17ba0aac\",\"elType\":\"widget\",\"settings\":{\"title\":\"How can I edit the masks ?<span style=\\\"font-style: inherit;\\\"><\\/span><br>\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3d4ba25c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>All the Lorem Ipsum generators on the Internet tend to repeat predefined chunks as necessary, making this the first true generator on the Internet. It uses a dictionary of over 200 Latin words, combined with a handful of model sentence structures, to generate Lorem Ipsum which looks reasonable. The generated Lorem Ipsum is therefore always free from repetition, injected humour, or non-characteristic words etc.<\\/p>\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"6a6c1bcf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#000000\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"73a52ec9\",\"elType\":\"widget\",\"settings\":{\"title\":\"What do I need to open the files ?<span style=\\\"font-style: inherit;\\\"><\\/span><br>\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7248ef37\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from 45 BC, making it over 2000 years old. Richard McClintock, a Latin professor at Hampden-Sydney College in Virginia, looked up one of the more obscure Latin words<\\/p>\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4a81ef3c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"top\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"3c72f59e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#000000\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"81e1b8a\",\"elType\":\"widget\",\"settings\":{\"title\":\"How can I edit smart objects ?<span style=\\\"font-style: inherit;\\\"><\\/span><br>\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1b16c234\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The standard chunk of Lorem Ipsum used since the 1500s is reproduced below for those interested. Sections 1.10.32 and 1.10.33 from \\\"de Finibus Bonorum et Malorum\\\" by Cicero are also reproduced in their exact original form, accompanied by English versions from the 1914 translation<\\/p>\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"4ee174cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#000000\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"49c014d2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Is the font free ?\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4a998124\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from 45 BC, making it over 2000 years old. Richard McClintock, a Latin professor at Hampden-Sydney College in Virginia, looked up one of the more obscure Latin words, consectetur<\\/p>\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b747fda\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":700},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":900},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7eab781\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"43661634\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our company is a collective of amazing people striving to build delightful products.\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.4},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70cc6d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.<\\/p>\",\"align\":\"center\",\"text_color\":\"#686868\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"615dfb3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1000},\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"6414755f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3bb26eed\",\"elType\":\"widget\",\"settings\":{\"text\":\"Read More\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3},\"button_text_color\":\"#ffffff\",\"background_color\":\"rgba(0,0,0,0)\",\"hover_color\":\"#00ce1b\",\"button_hover_border_color\":\"#00ce1b\",\"hover_animation\":\"grow\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(357,67,'_elementor_edit_mode','builder'),(358,67,'_elementor_elements_usage','a:6:{s:7:\"heading\";i:10;s:11:\"text-editor\";i:8;s:11:\"search-form\";i:1;s:6:\"column\";i:10;s:7:\"section\";i:7;s:6:\"button\";i:1;}'),(376,70,'_elementor_template_type','post'),(361,68,'_elementor_template_type','post'),(362,68,'_elementor_version','2.6.8'),(363,68,'_elementor_pro_version','2.6.5'),(364,68,'_wp_page_template','default'),(365,68,'_elementor_data','[{\"id\":\"55396f27\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":700},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_image\":{\"id\":50,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Theatrical_Display_V003C.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":12}},\"motion_fx_range\":\"viewport\"},\"elements\":[{\"id\":\"59493b21\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"51a2493a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Men in black\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65},\"typography_font_weight\":\"600\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":40}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3022c757\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<hr \\/><div id=\\\"Content\\\"><div class=\\\"boxed\\\"><div id=\\\"lipsum\\\"><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer maximus nulla a aliquet dignissim. Suspendisse potenti. Proin efficitur lacus vitae augue porta posuere.<\\/p><\\/div><\\/div><\\/div>\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"478bcc27\",\"elType\":\"widget\",\"settings\":{\"placeholder\":\"Search by name, education, family , etc....\",\"button_text\":\"Search\",\"input_typography_typography\":\"custom\",\"input_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"input_typography_font_weight\":\"300\",\"input_text_color\":\"#ffffff\",\"input_background_color\":\"rgba(255,255,255,0.18)\",\"border_radius\":{\"unit\":\"px\",\"size\":0},\"button_text_color\":\"#000000\",\"button_background_color\":\"#ffffff\",\"button_text_color_hover\":\"#000000\",\"button_background_color_hover\":\"#00ce1b\",\"icon_size\":{\"unit\":\"px\",\"size\":15},\"button_width\":{\"unit\":\"px\",\"size\":1},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"search-form\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7df48509\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_range\":\"viewport\"},\"elements\":[{\"id\":\"1147078d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6b1f2df0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Frequently Asked Questions\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"442ffb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Most frequent questions and answers\",\"header_size\":\"h5\",\"align\":\"center\",\"title_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"40f37237\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"top\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5b834b6d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#000000\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"1305fa8f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Can I edit the files ?\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6e9558b3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>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.<\\/p>\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"70092d1f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#000000\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7f66a7a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Is it Layered ?\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5afee9a0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don\'t look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn\'t anything embarrassing hidden in the middle of text.<\\/p>\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"18eeaf1b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"top\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"70263275\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#000000\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"-60\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"17ba0aac\",\"elType\":\"widget\",\"settings\":{\"title\":\"How can I edit the masks ?<span style=\\\"font-style: inherit;\\\"><\\/span><br>\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3d4ba25c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>All the Lorem Ipsum generators on the Internet tend to repeat predefined chunks as necessary, making this the first true generator on the Internet. It uses a dictionary of over 200 Latin words, combined with a handful of model sentence structures, to generate Lorem Ipsum which looks reasonable. The generated Lorem Ipsum is therefore always free from repetition, injected humour, or non-characteristic words etc.<\\/p>\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"6a6c1bcf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#000000\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"73a52ec9\",\"elType\":\"widget\",\"settings\":{\"title\":\"What do I need to open the files ?<span style=\\\"font-style: inherit;\\\"><\\/span><br>\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7248ef37\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from 45 BC, making it over 2000 years old. Richard McClintock, a Latin professor at Hampden-Sydney College in Virginia, looked up one of the more obscure Latin words<\\/p>\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4a81ef3c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"top\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"3c72f59e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#000000\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"81e1b8a\",\"elType\":\"widget\",\"settings\":{\"title\":\"How can I edit smart objects ?<span style=\\\"font-style: inherit;\\\"><\\/span><br>\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1b16c234\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The standard chunk of Lorem Ipsum used since the 1500s is reproduced below for those interested. Sections 1.10.32 and 1.10.33 from \\\"de Finibus Bonorum et Malorum\\\" by Cicero are also reproduced in their exact original form, accompanied by English versions from the 1914 translation<\\/p>\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"4ee174cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#000000\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"49c014d2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Is the font free ?\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4a998124\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from 45 BC, making it over 2000 years old. Richard McClintock, a Latin professor at Hampden-Sydney College in Virginia, looked up one of the more obscure Latin words, consectetur<\\/p>\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b747fda\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":700},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":900},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7eab781\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"43661634\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our company is a collective of amazing people striving to build delightful products.\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.4},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70cc6d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.<\\/p>\",\"align\":\"center\",\"text_color\":\"#686868\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"615dfb3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1000},\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"6414755f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3bb26eed\",\"elType\":\"widget\",\"settings\":{\"text\":\"Read More\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3},\"button_text_color\":\"#ffffff\",\"background_color\":\"rgba(0,0,0,0)\",\"hover_color\":\"#00ce1b\",\"button_hover_border_color\":\"#00ce1b\",\"hover_animation\":\"grow\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(366,68,'_elementor_edit_mode','builder'),(367,68,'_elementor_elements_usage','a:6:{s:7:\"heading\";i:10;s:11:\"text-editor\";i:8;s:11:\"search-form\";i:1;s:6:\"column\";i:10;s:7:\"section\";i:7;s:6:\"button\";i:1;}'),(587,98,'_elementor_edit_mode','builder'),(588,98,'_elementor_elements_usage','a:9:{s:7:\"heading\";i:4;s:11:\"text-editor\";i:3;s:11:\"search-form\";i:1;s:6:\"column\";i:6;s:7:\"section\";i:5;s:7:\"divider\";i:1;s:5:\"image\";i:2;s:5:\"video\";i:1;s:6:\"button\";i:1;}'),(371,69,'_elementor_pro_version','2.6.5'),(372,69,'_wp_page_template','default'),(373,69,'_elementor_data','[{\"id\":\"55396f27\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":700},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_image\":{\"id\":50,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Theatrical_Display_V003C.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":12}},\"motion_fx_range\":\"viewport\"},\"elements\":[{\"id\":\"59493b21\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"51a2493a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Men in black\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65},\"typography_font_weight\":\"600\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":40}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3022c757\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<hr \\/><div id=\\\"Content\\\"><div class=\\\"boxed\\\"><div id=\\\"lipsum\\\"><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer maximus nulla a aliquet dignissim. Suspendisse potenti. Proin efficitur lacus vitae augue porta posuere.<\\/p><\\/div><\\/div><\\/div>\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"478bcc27\",\"elType\":\"widget\",\"settings\":{\"placeholder\":\"Search by name, education, family , etc....\",\"button_text\":\"Search\",\"input_typography_typography\":\"custom\",\"input_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"input_typography_font_weight\":\"300\",\"input_text_color\":\"#ffffff\",\"input_background_color\":\"rgba(255,255,255,0.18)\",\"border_radius\":{\"unit\":\"px\",\"size\":0},\"button_text_color\":\"#000000\",\"button_background_color\":\"#ffffff\",\"button_text_color_hover\":\"#000000\",\"button_background_color_hover\":\"#00ce1b\",\"icon_size\":{\"unit\":\"px\",\"size\":15},\"button_width\":{\"unit\":\"px\",\"size\":1},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"search-form\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7df48509\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_range\":\"page\"},\"elements\":[{\"id\":\"1147078d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6b1f2df0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Frequently Asked Questions\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"442ffb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Most frequent questions and answers\",\"header_size\":\"h5\",\"align\":\"center\",\"title_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"40f37237\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"top\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5b834b6d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#000000\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"1305fa8f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Can I edit the files ?\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6e9558b3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>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.<\\/p>\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"70092d1f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#000000\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7f66a7a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Is it Layered ?\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5afee9a0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don\'t look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn\'t anything embarrassing hidden in the middle of text.<\\/p>\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"18eeaf1b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"top\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"70263275\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#000000\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"-60\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"17ba0aac\",\"elType\":\"widget\",\"settings\":{\"title\":\"How can I edit the masks ?<span style=\\\"font-style: inherit;\\\"><\\/span><br>\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3d4ba25c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>All the Lorem Ipsum generators on the Internet tend to repeat predefined chunks as necessary, making this the first true generator on the Internet. It uses a dictionary of over 200 Latin words, combined with a handful of model sentence structures, to generate Lorem Ipsum which looks reasonable. The generated Lorem Ipsum is therefore always free from repetition, injected humour, or non-characteristic words etc.<\\/p>\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"6a6c1bcf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#000000\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"73a52ec9\",\"elType\":\"widget\",\"settings\":{\"title\":\"What do I need to open the files ?<span style=\\\"font-style: inherit;\\\"><\\/span><br>\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7248ef37\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from 45 BC, making it over 2000 years old. Richard McClintock, a Latin professor at Hampden-Sydney College in Virginia, looked up one of the more obscure Latin words<\\/p>\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4a81ef3c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"top\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"3c72f59e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#000000\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"81e1b8a\",\"elType\":\"widget\",\"settings\":{\"title\":\"How can I edit smart objects ?<span style=\\\"font-style: inherit;\\\"><\\/span><br>\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1b16c234\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The standard chunk of Lorem Ipsum used since the 1500s is reproduced below for those interested. Sections 1.10.32 and 1.10.33 from \\\"de Finibus Bonorum et Malorum\\\" by Cicero are also reproduced in their exact original form, accompanied by English versions from the 1914 translation<\\/p>\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"4ee174cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#000000\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"49c014d2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Is the font free ?\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4a998124\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from 45 BC, making it over 2000 years old. Richard McClintock, a Latin professor at Hampden-Sydney College in Virginia, looked up one of the more obscure Latin words, consectetur<\\/p>\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b747fda\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":700},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":900},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7eab781\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"43661634\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our company is a collective of amazing people striving to build delightful products.\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.4},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70cc6d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.<\\/p>\",\"align\":\"center\",\"text_color\":\"#686868\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"615dfb3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1000},\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"6414755f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3bb26eed\",\"elType\":\"widget\",\"settings\":{\"text\":\"Read More\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3},\"button_text_color\":\"#ffffff\",\"background_color\":\"rgba(0,0,0,0)\",\"hover_color\":\"#00ce1b\",\"button_hover_border_color\":\"#00ce1b\",\"hover_animation\":\"grow\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(374,69,'_elementor_edit_mode','builder'),(375,69,'_elementor_elements_usage','a:6:{s:7:\"heading\";i:10;s:11:\"text-editor\";i:8;s:11:\"search-form\";i:1;s:6:\"column\";i:10;s:7:\"section\";i:7;s:6:\"button\";i:1;}'),(377,70,'_elementor_version','2.6.8'),(378,70,'_elementor_pro_version','2.6.5'),(379,70,'_wp_page_template','default'),(380,70,'_elementor_data','[{\"id\":\"55396f27\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":700},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_image\":{\"id\":50,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Theatrical_Display_V003C.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":12}},\"motion_fx_range\":\"viewport\"},\"elements\":[{\"id\":\"59493b21\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"51a2493a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Men in black\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65},\"typography_font_weight\":\"600\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":40}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3022c757\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<hr \\/><div id=\\\"Content\\\"><div class=\\\"boxed\\\"><div id=\\\"lipsum\\\"><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer maximus nulla a aliquet dignissim. Suspendisse potenti. Proin efficitur lacus vitae augue porta posuere.<\\/p><\\/div><\\/div><\\/div>\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"478bcc27\",\"elType\":\"widget\",\"settings\":{\"placeholder\":\"Search by name, education, family , etc....\",\"button_text\":\"Search\",\"input_typography_typography\":\"custom\",\"input_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"input_typography_font_weight\":\"300\",\"input_text_color\":\"#ffffff\",\"input_background_color\":\"rgba(255,255,255,0.18)\",\"border_radius\":{\"unit\":\"px\",\"size\":0},\"button_text_color\":\"#000000\",\"button_background_color\":\"#ffffff\",\"button_text_color_hover\":\"#000000\",\"button_background_color_hover\":\"#00ce1b\",\"icon_size\":{\"unit\":\"px\",\"size\":15},\"button_width\":{\"unit\":\"px\",\"size\":1},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"search-form\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7df48509\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"sticky\":\"top\"},\"elements\":[{\"id\":\"1147078d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6b1f2df0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Frequently Asked Questions\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"442ffb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Most frequent questions and answers\",\"header_size\":\"h5\",\"align\":\"center\",\"title_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"40f37237\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"top\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5b834b6d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#000000\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"1305fa8f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Can I edit the files ?\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6e9558b3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>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.<\\/p>\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"70092d1f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#000000\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7f66a7a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Is it Layered ?\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5afee9a0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don\'t look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn\'t anything embarrassing hidden in the middle of text.<\\/p>\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"18eeaf1b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"top\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"70263275\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#000000\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"-60\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"17ba0aac\",\"elType\":\"widget\",\"settings\":{\"title\":\"How can I edit the masks ?<span style=\\\"font-style: inherit;\\\"><\\/span><br>\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3d4ba25c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>All the Lorem Ipsum generators on the Internet tend to repeat predefined chunks as necessary, making this the first true generator on the Internet. It uses a dictionary of over 200 Latin words, combined with a handful of model sentence structures, to generate Lorem Ipsum which looks reasonable. The generated Lorem Ipsum is therefore always free from repetition, injected humour, or non-characteristic words etc.<\\/p>\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"6a6c1bcf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#000000\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"73a52ec9\",\"elType\":\"widget\",\"settings\":{\"title\":\"What do I need to open the files ?<span style=\\\"font-style: inherit;\\\"><\\/span><br>\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7248ef37\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from 45 BC, making it over 2000 years old. Richard McClintock, a Latin professor at Hampden-Sydney College in Virginia, looked up one of the more obscure Latin words<\\/p>\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4a81ef3c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"top\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"3c72f59e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#000000\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"81e1b8a\",\"elType\":\"widget\",\"settings\":{\"title\":\"How can I edit smart objects ?<span style=\\\"font-style: inherit;\\\"><\\/span><br>\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1b16c234\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The standard chunk of Lorem Ipsum used since the 1500s is reproduced below for those interested. Sections 1.10.32 and 1.10.33 from \\\"de Finibus Bonorum et Malorum\\\" by Cicero are also reproduced in their exact original form, accompanied by English versions from the 1914 translation<\\/p>\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"4ee174cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#000000\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"49c014d2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Is the font free ?\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4a998124\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from 45 BC, making it over 2000 years old. Richard McClintock, a Latin professor at Hampden-Sydney College in Virginia, looked up one of the more obscure Latin words, consectetur<\\/p>\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b747fda\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":700},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":900},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7eab781\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"43661634\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our company is a collective of amazing people striving to build delightful products.\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.4},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70cc6d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.<\\/p>\",\"align\":\"center\",\"text_color\":\"#686868\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"615dfb3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1000},\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"6414755f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3bb26eed\",\"elType\":\"widget\",\"settings\":{\"text\":\"Read More\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3},\"button_text_color\":\"#ffffff\",\"background_color\":\"rgba(0,0,0,0)\",\"hover_color\":\"#00ce1b\",\"button_hover_border_color\":\"#00ce1b\",\"hover_animation\":\"grow\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(381,70,'_elementor_edit_mode','builder'),(382,70,'_elementor_elements_usage','a:6:{s:7:\"heading\";i:10;s:11:\"text-editor\";i:8;s:11:\"search-form\";i:1;s:6:\"column\";i:10;s:7:\"section\";i:7;s:6:\"button\";i:1;}'),(383,71,'_elementor_template_type','post'),(384,71,'_elementor_version','2.6.8'),(385,71,'_elementor_pro_version','2.6.5'),(386,71,'_wp_page_template','default'),(387,71,'_elementor_data','[{\"id\":\"55396f27\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":700},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_image\":{\"id\":50,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Theatrical_Display_V003C.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":12}},\"motion_fx_range\":\"viewport\"},\"elements\":[{\"id\":\"59493b21\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"51a2493a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Men in black\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65},\"typography_font_weight\":\"600\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":40}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3022c757\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<hr \\/><div id=\\\"Content\\\"><div class=\\\"boxed\\\"><div id=\\\"lipsum\\\"><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer maximus nulla a aliquet dignissim. Suspendisse potenti. Proin efficitur lacus vitae augue porta posuere.<\\/p><\\/div><\\/div><\\/div>\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"478bcc27\",\"elType\":\"widget\",\"settings\":{\"placeholder\":\"Search by name, education, family , etc....\",\"button_text\":\"Search\",\"input_typography_typography\":\"custom\",\"input_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"input_typography_font_weight\":\"300\",\"input_text_color\":\"#ffffff\",\"input_background_color\":\"rgba(255,255,255,0.18)\",\"border_radius\":{\"unit\":\"px\",\"size\":0},\"button_text_color\":\"#000000\",\"button_background_color\":\"#ffffff\",\"button_text_color_hover\":\"#000000\",\"button_background_color_hover\":\"#00ce1b\",\"icon_size\":{\"unit\":\"px\",\"size\":15},\"button_width\":{\"unit\":\"px\",\"size\":1},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"search-form\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7df48509\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[{\"id\":\"1147078d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6b1f2df0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Frequently Asked Questions\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"442ffb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Most frequent questions and answers\",\"header_size\":\"h5\",\"align\":\"center\",\"title_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"40f37237\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"top\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5b834b6d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#000000\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"1305fa8f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Can I edit the files ?\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6e9558b3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>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.<\\/p>\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"70092d1f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#000000\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7f66a7a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Is it Layered ?\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5afee9a0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don\'t look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn\'t anything embarrassing hidden in the middle of text.<\\/p>\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"18eeaf1b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"top\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"70263275\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#000000\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"-60\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"17ba0aac\",\"elType\":\"widget\",\"settings\":{\"title\":\"How can I edit the masks ?<span style=\\\"font-style: inherit;\\\"><\\/span><br>\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3d4ba25c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>All the Lorem Ipsum generators on the Internet tend to repeat predefined chunks as necessary, making this the first true generator on the Internet. It uses a dictionary of over 200 Latin words, combined with a handful of model sentence structures, to generate Lorem Ipsum which looks reasonable. The generated Lorem Ipsum is therefore always free from repetition, injected humour, or non-characteristic words etc.<\\/p>\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"6a6c1bcf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#000000\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"73a52ec9\",\"elType\":\"widget\",\"settings\":{\"title\":\"What do I need to open the files ?<span style=\\\"font-style: inherit;\\\"><\\/span><br>\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7248ef37\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from 45 BC, making it over 2000 years old. Richard McClintock, a Latin professor at Hampden-Sydney College in Virginia, looked up one of the more obscure Latin words<\\/p>\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4a81ef3c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"top\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"3c72f59e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#000000\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"81e1b8a\",\"elType\":\"widget\",\"settings\":{\"title\":\"How can I edit smart objects ?<span style=\\\"font-style: inherit;\\\"><\\/span><br>\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1b16c234\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The standard chunk of Lorem Ipsum used since the 1500s is reproduced below for those interested. Sections 1.10.32 and 1.10.33 from \\\"de Finibus Bonorum et Malorum\\\" by Cicero are also reproduced in their exact original form, accompanied by English versions from the 1914 translation<\\/p>\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"4ee174cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#000000\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"49c014d2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Is the font free ?\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4a998124\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from 45 BC, making it over 2000 years old. Richard McClintock, a Latin professor at Hampden-Sydney College in Virginia, looked up one of the more obscure Latin words, consectetur<\\/p>\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b747fda\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":700},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":900},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7eab781\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"43661634\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our company is a collective of amazing people striving to build delightful products.\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.4},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70cc6d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.<\\/p>\",\"align\":\"center\",\"text_color\":\"#686868\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"615dfb3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1000},\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"6414755f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3bb26eed\",\"elType\":\"widget\",\"settings\":{\"text\":\"Read More\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3},\"button_text_color\":\"#ffffff\",\"background_color\":\"rgba(0,0,0,0)\",\"hover_color\":\"#00ce1b\",\"button_hover_border_color\":\"#00ce1b\",\"hover_animation\":\"grow\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(388,71,'_elementor_edit_mode','builder'),(389,71,'_elementor_elements_usage','a:6:{s:7:\"heading\";i:10;s:11:\"text-editor\";i:8;s:11:\"search-form\";i:1;s:6:\"column\";i:10;s:7:\"section\";i:7;s:6:\"button\";i:1;}'),(419,76,'_elementor_template_type','post'),(390,72,'_elementor_template_type','post'),(391,72,'_elementor_version','2.6.8'),(392,72,'_elementor_pro_version','2.6.5'),(393,72,'_wp_page_template','default'),(394,72,'_elementor_data','[{\"id\":\"55396f27\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":700},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_image\":{\"id\":50,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Theatrical_Display_V003C.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":12}},\"motion_fx_range\":\"viewport\"},\"elements\":[{\"id\":\"59493b21\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"51a2493a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Men in black\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65},\"typography_font_weight\":\"600\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":40}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3022c757\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<hr \\/><div id=\\\"Content\\\"><div class=\\\"boxed\\\"><div id=\\\"lipsum\\\"><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer maximus nulla a aliquet dignissim. Suspendisse potenti. Proin efficitur lacus vitae augue porta posuere.<\\/p><\\/div><\\/div><\\/div>\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"478bcc27\",\"elType\":\"widget\",\"settings\":{\"placeholder\":\"Search by name, education, family , etc....\",\"button_text\":\"Search\",\"input_typography_typography\":\"custom\",\"input_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"input_typography_font_weight\":\"300\",\"input_text_color\":\"#ffffff\",\"input_background_color\":\"rgba(255,255,255,0.18)\",\"border_radius\":{\"unit\":\"px\",\"size\":0},\"button_text_color\":\"#000000\",\"button_background_color\":\"#ffffff\",\"button_text_color_hover\":\"#000000\",\"button_background_color_hover\":\"#00ce1b\",\"icon_size\":{\"unit\":\"px\",\"size\":15},\"button_width\":{\"unit\":\"px\",\"size\":1},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"search-form\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7df48509\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}}},\"elements\":[{\"id\":\"1147078d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6b1f2df0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Frequently Asked Questions\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"442ffb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Most frequent questions and answers\",\"header_size\":\"h5\",\"align\":\"center\",\"title_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"40f37237\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"top\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5b834b6d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#000000\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"1305fa8f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Can I edit the files ?\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6e9558b3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>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.<\\/p>\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"70092d1f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#000000\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7f66a7a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Is it Layered ?\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5afee9a0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don\'t look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn\'t anything embarrassing hidden in the middle of text.<\\/p>\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"18eeaf1b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"top\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"70263275\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#000000\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"-60\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"17ba0aac\",\"elType\":\"widget\",\"settings\":{\"title\":\"How can I edit the masks ?<span style=\\\"font-style: inherit;\\\"><\\/span><br>\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3d4ba25c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>All the Lorem Ipsum generators on the Internet tend to repeat predefined chunks as necessary, making this the first true generator on the Internet. It uses a dictionary of over 200 Latin words, combined with a handful of model sentence structures, to generate Lorem Ipsum which looks reasonable. The generated Lorem Ipsum is therefore always free from repetition, injected humour, or non-characteristic words etc.<\\/p>\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"6a6c1bcf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#000000\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"73a52ec9\",\"elType\":\"widget\",\"settings\":{\"title\":\"What do I need to open the files ?<span style=\\\"font-style: inherit;\\\"><\\/span><br>\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7248ef37\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from 45 BC, making it over 2000 years old. Richard McClintock, a Latin professor at Hampden-Sydney College in Virginia, looked up one of the more obscure Latin words<\\/p>\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4a81ef3c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"top\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"3c72f59e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#000000\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"81e1b8a\",\"elType\":\"widget\",\"settings\":{\"title\":\"How can I edit smart objects ?<span style=\\\"font-style: inherit;\\\"><\\/span><br>\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1b16c234\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The standard chunk of Lorem Ipsum used since the 1500s is reproduced below for those interested. Sections 1.10.32 and 1.10.33 from \\\"de Finibus Bonorum et Malorum\\\" by Cicero are also reproduced in their exact original form, accompanied by English versions from the 1914 translation<\\/p>\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"4ee174cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#000000\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"49c014d2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Is the font free ?\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4a998124\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from 45 BC, making it over 2000 years old. Richard McClintock, a Latin professor at Hampden-Sydney College in Virginia, looked up one of the more obscure Latin words, consectetur<\\/p>\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b747fda\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":700},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":900},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7eab781\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"43661634\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our company is a collective of amazing people striving to build delightful products.\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.4},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70cc6d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.<\\/p>\",\"align\":\"center\",\"text_color\":\"#686868\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"615dfb3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1000},\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"6414755f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3bb26eed\",\"elType\":\"widget\",\"settings\":{\"text\":\"Read More\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3},\"button_text_color\":\"#ffffff\",\"background_color\":\"rgba(0,0,0,0)\",\"hover_color\":\"#00ce1b\",\"button_hover_border_color\":\"#00ce1b\",\"hover_animation\":\"grow\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(395,72,'_elementor_edit_mode','builder'),(396,72,'_elementor_elements_usage','a:6:{s:7:\"heading\";i:10;s:11:\"text-editor\";i:8;s:11:\"search-form\";i:1;s:6:\"column\";i:10;s:7:\"section\";i:7;s:6:\"button\";i:1;}'),(427,77,'_elementor_template_type','post'),(428,77,'_elementor_version','2.6.8'),(398,73,'_edit_lock','1568667542:1'),(399,73,'_edit_last','1'),(400,73,'site-sidebar-layout','no-sidebar'),(401,73,'site-content-layout','page-builder'),(402,73,'theme-transparent-header-meta','default'),(403,73,'_elementor_edit_mode','builder'),(404,73,'_elementor_template_type','post'),(405,73,'_elementor_version','2.6.8'),(406,73,'_elementor_pro_version','2.6.5'),(407,73,'_astra_content_layout_flag','disabled'),(408,73,'site-post-title','disabled'),(409,73,'ast-title-bar-display','disabled'),(410,73,'ast-featured-img','disabled'),(411,75,'_elementor_template_type','post'),(412,75,'_elementor_version','2.6.8'),(413,75,'_elementor_pro_version','2.6.5'),(414,75,'_wp_page_template','default'),(415,75,'_elementor_data','[{\"id\":\"55396f27\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":700},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_image\":{\"id\":50,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Theatrical_Display_V003C.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":12}},\"motion_fx_range\":\"viewport\"},\"elements\":[{\"id\":\"59493b21\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"51a2493a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Men in black\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65},\"typography_font_weight\":\"600\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":40}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3022c757\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<hr \\/><div id=\\\"Content\\\"><div class=\\\"boxed\\\"><div id=\\\"lipsum\\\"><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer maximus nulla a aliquet dignissim. Suspendisse potenti. Proin efficitur lacus vitae augue porta posuere.<\\/p><\\/div><\\/div><\\/div>\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"478bcc27\",\"elType\":\"widget\",\"settings\":{\"placeholder\":\"Search by name, education, family , etc....\",\"button_text\":\"Search\",\"input_typography_typography\":\"custom\",\"input_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"input_typography_font_weight\":\"300\",\"input_text_color\":\"#ffffff\",\"input_background_color\":\"rgba(255,255,255,0.18)\",\"border_radius\":{\"unit\":\"px\",\"size\":0},\"button_text_color\":\"#000000\",\"button_background_color\":\"#ffffff\",\"button_text_color_hover\":\"#000000\",\"button_background_color_hover\":\"#00ce1b\",\"icon_size\":{\"unit\":\"px\",\"size\":15},\"button_width\":{\"unit\":\"px\",\"size\":1},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"search-form\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7df48509\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}}},\"elements\":[{\"id\":\"1147078d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6b1f2df0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Frequently Asked Questions\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"442ffb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Most frequent questions and answers\",\"header_size\":\"h5\",\"align\":\"center\",\"title_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"40f37237\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"top\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5b834b6d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#000000\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"1305fa8f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Can I edit the files ?\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6e9558b3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>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.<\\/p>\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"70092d1f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#000000\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7f66a7a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Is it Layered ?\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5afee9a0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don\'t look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn\'t anything embarrassing hidden in the middle of text.<\\/p>\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"18eeaf1b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"top\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"70263275\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#000000\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"-60\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"17ba0aac\",\"elType\":\"widget\",\"settings\":{\"title\":\"How can I edit the masks ?<span style=\\\"font-style: inherit;\\\"><\\/span><br>\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3d4ba25c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>All the Lorem Ipsum generators on the Internet tend to repeat predefined chunks as necessary, making this the first true generator on the Internet. It uses a dictionary of over 200 Latin words, combined with a handful of model sentence structures, to generate Lorem Ipsum which looks reasonable. The generated Lorem Ipsum is therefore always free from repetition, injected humour, or non-characteristic words etc.<\\/p>\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"6a6c1bcf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#000000\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"73a52ec9\",\"elType\":\"widget\",\"settings\":{\"title\":\"What do I need to open the files ?<span style=\\\"font-style: inherit;\\\"><\\/span><br>\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7248ef37\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from 45 BC, making it over 2000 years old. Richard McClintock, a Latin professor at Hampden-Sydney College in Virginia, looked up one of the more obscure Latin words<\\/p>\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4a81ef3c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"top\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"3c72f59e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#000000\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"81e1b8a\",\"elType\":\"widget\",\"settings\":{\"title\":\"How can I edit smart objects ?<span style=\\\"font-style: inherit;\\\"><\\/span><br>\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1b16c234\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The standard chunk of Lorem Ipsum used since the 1500s is reproduced below for those interested. Sections 1.10.32 and 1.10.33 from \\\"de Finibus Bonorum et Malorum\\\" by Cicero are also reproduced in their exact original form, accompanied by English versions from the 1914 translation<\\/p>\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"4ee174cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#000000\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"49c014d2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Is the font free ?\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4a998124\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from 45 BC, making it over 2000 years old. Richard McClintock, a Latin professor at Hampden-Sydney College in Virginia, looked up one of the more obscure Latin words, consectetur<\\/p>\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b747fda\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":700},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":900},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7eab781\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"43661634\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our company is a collective of amazing people striving to build delightful products.\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.4},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70cc6d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.<\\/p>\",\"align\":\"center\",\"text_color\":\"#686868\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"615dfb3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1000},\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"6414755f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3bb26eed\",\"elType\":\"widget\",\"settings\":{\"text\":\"Read More\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3},\"button_text_color\":\"#ffffff\",\"background_color\":\"rgba(0,0,0,0)\",\"hover_color\":\"#00ce1b\",\"button_hover_border_color\":\"#00ce1b\",\"hover_animation\":\"grow\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(416,75,'_elementor_edit_mode','builder'),(417,75,'_elementor_elements_usage','a:6:{s:7:\"heading\";i:10;s:11:\"text-editor\";i:8;s:11:\"search-form\";i:1;s:6:\"column\";i:10;s:7:\"section\";i:7;s:6:\"button\";i:1;}'),(420,76,'_elementor_version','2.6.8'),(421,76,'_elementor_pro_version','2.6.5'),(422,76,'_wp_page_template','default'),(423,76,'_elementor_data','[{\"id\":\"55396f27\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":700},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_image\":{\"id\":50,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Theatrical_Display_V003C.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_range\":\"viewport\",\"motion_fx_motion_fx_scrolling\":\"yes\"},\"elements\":[{\"id\":\"59493b21\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"51a2493a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Men in black\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65},\"typography_font_weight\":\"600\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":40}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3022c757\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<hr \\/><div id=\\\"Content\\\"><div class=\\\"boxed\\\"><div id=\\\"lipsum\\\"><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer maximus nulla a aliquet dignissim. Suspendisse potenti. Proin efficitur lacus vitae augue porta posuere.<\\/p><\\/div><\\/div><\\/div>\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"478bcc27\",\"elType\":\"widget\",\"settings\":{\"placeholder\":\"Search by name, education, family , etc....\",\"button_text\":\"Search\",\"input_typography_typography\":\"custom\",\"input_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"input_typography_font_weight\":\"300\",\"input_text_color\":\"#ffffff\",\"input_background_color\":\"rgba(255,255,255,0.18)\",\"border_radius\":{\"unit\":\"px\",\"size\":0},\"button_text_color\":\"#000000\",\"button_background_color\":\"#ffffff\",\"button_text_color_hover\":\"#000000\",\"button_background_color_hover\":\"#00ce1b\",\"icon_size\":{\"unit\":\"px\",\"size\":15},\"button_width\":{\"unit\":\"px\",\"size\":1},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"search-form\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7df48509\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}}},\"elements\":[{\"id\":\"1147078d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6b1f2df0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Frequently Asked Questions\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"442ffb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Most frequent questions and answers\",\"header_size\":\"h5\",\"align\":\"center\",\"title_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"40f37237\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"top\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5b834b6d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#000000\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"1305fa8f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Can I edit the files ?\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6e9558b3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>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.<\\/p>\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"70092d1f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#000000\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7f66a7a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Is it Layered ?\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5afee9a0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don\'t look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn\'t anything embarrassing hidden in the middle of text.<\\/p>\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"18eeaf1b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"top\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"70263275\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#000000\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"-60\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"17ba0aac\",\"elType\":\"widget\",\"settings\":{\"title\":\"How can I edit the masks ?<span style=\\\"font-style: inherit;\\\"><\\/span><br>\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3d4ba25c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>All the Lorem Ipsum generators on the Internet tend to repeat predefined chunks as necessary, making this the first true generator on the Internet. It uses a dictionary of over 200 Latin words, combined with a handful of model sentence structures, to generate Lorem Ipsum which looks reasonable. The generated Lorem Ipsum is therefore always free from repetition, injected humour, or non-characteristic words etc.<\\/p>\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"6a6c1bcf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#000000\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"73a52ec9\",\"elType\":\"widget\",\"settings\":{\"title\":\"What do I need to open the files ?<span style=\\\"font-style: inherit;\\\"><\\/span><br>\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7248ef37\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from 45 BC, making it over 2000 years old. Richard McClintock, a Latin professor at Hampden-Sydney College in Virginia, looked up one of the more obscure Latin words<\\/p>\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4a81ef3c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"top\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"3c72f59e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#000000\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"81e1b8a\",\"elType\":\"widget\",\"settings\":{\"title\":\"How can I edit smart objects ?<span style=\\\"font-style: inherit;\\\"><\\/span><br>\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1b16c234\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The standard chunk of Lorem Ipsum used since the 1500s is reproduced below for those interested. Sections 1.10.32 and 1.10.33 from \\\"de Finibus Bonorum et Malorum\\\" by Cicero are also reproduced in their exact original form, accompanied by English versions from the 1914 translation<\\/p>\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"4ee174cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#000000\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"49c014d2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Is the font free ?\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4a998124\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from 45 BC, making it over 2000 years old. Richard McClintock, a Latin professor at Hampden-Sydney College in Virginia, looked up one of the more obscure Latin words, consectetur<\\/p>\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b747fda\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":700},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":900},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7eab781\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"43661634\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our company is a collective of amazing people striving to build delightful products.\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.4},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70cc6d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.<\\/p>\",\"align\":\"center\",\"text_color\":\"#686868\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"615dfb3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1000},\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"6414755f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3bb26eed\",\"elType\":\"widget\",\"settings\":{\"text\":\"Read More\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3},\"button_text_color\":\"#ffffff\",\"background_color\":\"rgba(0,0,0,0)\",\"hover_color\":\"#00ce1b\",\"button_hover_border_color\":\"#00ce1b\",\"hover_animation\":\"grow\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(424,76,'_elementor_edit_mode','builder'),(425,76,'_elementor_elements_usage','a:6:{s:7:\"heading\";i:10;s:11:\"text-editor\";i:8;s:11:\"search-form\";i:1;s:6:\"column\";i:10;s:7:\"section\";i:7;s:6:\"button\";i:1;}'),(429,77,'_elementor_pro_version','2.6.5'),(430,77,'_wp_page_template','default'),(431,77,'_elementor_data','[{\"id\":\"55396f27\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":700},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_image\":{\"id\":50,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Theatrical_Display_V003C.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_range\":\"viewport\",\"motion_fx_motion_fx_scrolling\":\"yes\"},\"elements\":[{\"id\":\"59493b21\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"51a2493a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Men in black\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65},\"typography_font_weight\":\"600\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":40}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3022c757\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<hr \\/><div id=\\\"Content\\\"><div class=\\\"boxed\\\"><div id=\\\"lipsum\\\"><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer maximus nulla a aliquet dignissim. Suspendisse potenti. Proin efficitur lacus vitae augue porta posuere.<\\/p><\\/div><\\/div><\\/div>\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"478bcc27\",\"elType\":\"widget\",\"settings\":{\"placeholder\":\"Search by name, education, family , etc....\",\"button_text\":\"Search\",\"input_typography_typography\":\"custom\",\"input_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"input_typography_font_weight\":\"300\",\"input_text_color\":\"#ffffff\",\"input_background_color\":\"rgba(255,255,255,0.18)\",\"border_radius\":{\"unit\":\"px\",\"size\":0},\"button_text_color\":\"#000000\",\"button_background_color\":\"#ffffff\",\"button_text_color_hover\":\"#000000\",\"button_background_color_hover\":\"#00ce1b\",\"icon_size\":{\"unit\":\"px\",\"size\":15},\"button_width\":{\"unit\":\"px\",\"size\":1},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"search-form\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7df48509\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}}},\"elements\":[{\"id\":\"1147078d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6b1f2df0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Frequently Asked Questions\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"442ffb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Most frequent questions and answers\",\"header_size\":\"h5\",\"align\":\"center\",\"title_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"40f37237\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"top\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5b834b6d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#000000\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"1305fa8f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Can I edit the files ?\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6e9558b3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>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.<\\/p>\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"70092d1f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#000000\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7f66a7a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Is it Layered ?\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5afee9a0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don\'t look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn\'t anything embarrassing hidden in the middle of text.<\\/p>\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"18eeaf1b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"top\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"70263275\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#000000\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"-60\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"17ba0aac\",\"elType\":\"widget\",\"settings\":{\"title\":\"How can I edit the masks ?<span style=\\\"font-style: inherit;\\\"><\\/span><br>\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3d4ba25c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>All the Lorem Ipsum generators on the Internet tend to repeat predefined chunks as necessary, making this the first true generator on the Internet. It uses a dictionary of over 200 Latin words, combined with a handful of model sentence structures, to generate Lorem Ipsum which looks reasonable. The generated Lorem Ipsum is therefore always free from repetition, injected humour, or non-characteristic words etc.<\\/p>\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"6a6c1bcf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#000000\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"73a52ec9\",\"elType\":\"widget\",\"settings\":{\"title\":\"What do I need to open the files ?<span style=\\\"font-style: inherit;\\\"><\\/span><br>\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7248ef37\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from 45 BC, making it over 2000 years old. Richard McClintock, a Latin professor at Hampden-Sydney College in Virginia, looked up one of the more obscure Latin words<\\/p>\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4a81ef3c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"top\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"3c72f59e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#000000\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"81e1b8a\",\"elType\":\"widget\",\"settings\":{\"title\":\"How can I edit smart objects ?<span style=\\\"font-style: inherit;\\\"><\\/span><br>\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1b16c234\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The standard chunk of Lorem Ipsum used since the 1500s is reproduced below for those interested. Sections 1.10.32 and 1.10.33 from \\\"de Finibus Bonorum et Malorum\\\" by Cicero are also reproduced in their exact original form, accompanied by English versions from the 1914 translation<\\/p>\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"4ee174cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#000000\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"49c014d2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Is the font free ?\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4a998124\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from 45 BC, making it over 2000 years old. Richard McClintock, a Latin professor at Hampden-Sydney College in Virginia, looked up one of the more obscure Latin words, consectetur<\\/p>\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b747fda\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":700},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":900},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7eab781\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"43661634\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our company is a collective of amazing people striving to build delightful products.\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.4},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70cc6d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.<\\/p>\",\"align\":\"center\",\"text_color\":\"#686868\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"615dfb3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1000},\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"6414755f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3bb26eed\",\"elType\":\"widget\",\"settings\":{\"text\":\"Read More\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3},\"button_text_color\":\"#ffffff\",\"background_color\":\"rgba(0,0,0,0)\",\"hover_color\":\"#00ce1b\",\"button_hover_border_color\":\"#00ce1b\",\"hover_animation\":\"grow\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(432,77,'_elementor_edit_mode','builder'),(433,77,'_elementor_elements_usage','a:6:{s:7:\"heading\";i:10;s:11:\"text-editor\";i:8;s:11:\"search-form\";i:1;s:6:\"column\";i:10;s:7:\"section\";i:7;s:6:\"button\";i:1;}'),(435,78,'_elementor_template_type','post'),(436,78,'_elementor_version','2.6.8'),(437,78,'_elementor_pro_version','2.6.5'),(438,78,'_wp_page_template','default'),(439,78,'_elementor_data','[{\"id\":\"55396f27\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":700},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_image\":{\"id\":50,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Theatrical_Display_V003C.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_range\":\"viewport\",\"motion_fx_motion_fx_scrolling\":\"yes\"},\"elements\":[{\"id\":\"59493b21\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"51a2493a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Men in black\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65},\"typography_font_weight\":\"600\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":40}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3022c757\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<hr \\/><div id=\\\"Content\\\"><div class=\\\"boxed\\\"><div id=\\\"lipsum\\\"><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer maximus nulla a aliquet dignissim. Suspendisse potenti. Proin efficitur lacus vitae augue porta posuere.<\\/p><\\/div><\\/div><\\/div>\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"478bcc27\",\"elType\":\"widget\",\"settings\":{\"placeholder\":\"Search by name, education, family , etc....\",\"button_text\":\"Search\",\"input_typography_typography\":\"custom\",\"input_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"input_typography_font_weight\":\"300\",\"input_text_color\":\"#ffffff\",\"input_background_color\":\"rgba(255,255,255,0.18)\",\"border_radius\":{\"unit\":\"px\",\"size\":0},\"button_text_color\":\"#000000\",\"button_background_color\":\"#ffffff\",\"button_text_color_hover\":\"#000000\",\"button_background_color_hover\":\"#00ce1b\",\"icon_size\":{\"unit\":\"px\",\"size\":15},\"button_width\":{\"unit\":\"px\",\"size\":1},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"search-form\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7df48509\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\"},\"elements\":[{\"id\":\"1147078d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6b1f2df0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Frequently Asked Questions\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"442ffb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Most frequent questions and answers\",\"header_size\":\"h5\",\"align\":\"center\",\"title_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"40f37237\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"top\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5b834b6d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#000000\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"1305fa8f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Can I edit the files ?\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6e9558b3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>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.<\\/p>\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"70092d1f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#000000\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7f66a7a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Is it Layered ?\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5afee9a0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don\'t look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn\'t anything embarrassing hidden in the middle of text.<\\/p>\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"18eeaf1b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"top\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"70263275\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#000000\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"-60\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"17ba0aac\",\"elType\":\"widget\",\"settings\":{\"title\":\"How can I edit the masks ?<span style=\\\"font-style: inherit;\\\"><\\/span><br>\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3d4ba25c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>All the Lorem Ipsum generators on the Internet tend to repeat predefined chunks as necessary, making this the first true generator on the Internet. It uses a dictionary of over 200 Latin words, combined with a handful of model sentence structures, to generate Lorem Ipsum which looks reasonable. The generated Lorem Ipsum is therefore always free from repetition, injected humour, or non-characteristic words etc.<\\/p>\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"6a6c1bcf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#000000\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"73a52ec9\",\"elType\":\"widget\",\"settings\":{\"title\":\"What do I need to open the files ?<span style=\\\"font-style: inherit;\\\"><\\/span><br>\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7248ef37\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from 45 BC, making it over 2000 years old. Richard McClintock, a Latin professor at Hampden-Sydney College in Virginia, looked up one of the more obscure Latin words<\\/p>\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4a81ef3c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"top\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"3c72f59e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#000000\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"81e1b8a\",\"elType\":\"widget\",\"settings\":{\"title\":\"How can I edit smart objects ?<span style=\\\"font-style: inherit;\\\"><\\/span><br>\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1b16c234\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The standard chunk of Lorem Ipsum used since the 1500s is reproduced below for those interested. Sections 1.10.32 and 1.10.33 from \\\"de Finibus Bonorum et Malorum\\\" by Cicero are also reproduced in their exact original form, accompanied by English versions from the 1914 translation<\\/p>\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"4ee174cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#000000\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"49c014d2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Is the font free ?\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4a998124\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from 45 BC, making it over 2000 years old. Richard McClintock, a Latin professor at Hampden-Sydney College in Virginia, looked up one of the more obscure Latin words, consectetur<\\/p>\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b747fda\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":700},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":900},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7eab781\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"43661634\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our company is a collective of amazing people striving to build delightful products.\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.4},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70cc6d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.<\\/p>\",\"align\":\"center\",\"text_color\":\"#686868\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"615dfb3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1000},\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"6414755f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3bb26eed\",\"elType\":\"widget\",\"settings\":{\"text\":\"Read More\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3},\"button_text_color\":\"#ffffff\",\"background_color\":\"rgba(0,0,0,0)\",\"hover_color\":\"#00ce1b\",\"button_hover_border_color\":\"#00ce1b\",\"hover_animation\":\"grow\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]');
INSERT INTO `wp_postmeta` VALUES (440,78,'_elementor_edit_mode','builder'),(441,78,'_elementor_elements_usage','a:6:{s:7:\"heading\";i:10;s:11:\"text-editor\";i:8;s:11:\"search-form\";i:1;s:6:\"column\";i:10;s:7:\"section\";i:7;s:6:\"button\";i:1;}'),(453,80,'_wp_page_template','default'),(454,80,'_elementor_data','[{\"id\":\"55396f27\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":700},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_image\":{\"id\":50,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Theatrical_Display_V003C.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_range\":\"viewport\",\"motion_fx_motion_fx_scrolling\":\"yes\"},\"elements\":[{\"id\":\"59493b21\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"51a2493a\",\"elType\":\"widget\",\"settings\":{\"title\":\"#WHAT\'S COOL\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30},\"typography_font_weight\":\"400\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":40},\"typography_font_family\":\"Roboto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.4,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#ee7624\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3022c757\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<hr \\/><div id=\\\"Content\\\"><div class=\\\"boxed\\\"><div id=\\\"lipsum\\\"><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer maximus nulla a aliquet dignissim. Suspendisse potenti. Proin efficitur lacus vitae augue porta posuere.<\\/p><\\/div><\\/div><\\/div>\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"478bcc27\",\"elType\":\"widget\",\"settings\":{\"placeholder\":\"Search by name, education, family , etc....\",\"button_text\":\"Search\",\"input_typography_typography\":\"custom\",\"input_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"input_typography_font_weight\":\"300\",\"input_text_color\":\"#ffffff\",\"input_background_color\":\"rgba(255,255,255,0.18)\",\"border_radius\":{\"unit\":\"px\",\"size\":0},\"button_text_color\":\"#000000\",\"button_background_color\":\"#ffffff\",\"button_text_color_hover\":\"#000000\",\"button_background_color_hover\":\"#00ce1b\",\"icon_size\":{\"unit\":\"px\",\"size\":15},\"button_width\":{\"unit\":\"px\",\"size\":1},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"search-form\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7df48509\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\"},\"elements\":[{\"id\":\"1147078d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6b1f2df0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Frequently Asked Questions\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"442ffb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Most frequent questions and answers\",\"header_size\":\"h5\",\"align\":\"center\",\"title_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"40f37237\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"top\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5b834b6d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#000000\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"1305fa8f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Can I edit the files ?\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6e9558b3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>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.<\\/p>\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"70092d1f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#000000\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7f66a7a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Is it Layered ?\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5afee9a0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don\'t look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn\'t anything embarrassing hidden in the middle of text.<\\/p>\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"18eeaf1b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"top\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"70263275\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#000000\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"-60\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"17ba0aac\",\"elType\":\"widget\",\"settings\":{\"title\":\"How can I edit the masks ?<span style=\\\"font-style: inherit;\\\"><\\/span><br>\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3d4ba25c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>All the Lorem Ipsum generators on the Internet tend to repeat predefined chunks as necessary, making this the first true generator on the Internet. It uses a dictionary of over 200 Latin words, combined with a handful of model sentence structures, to generate Lorem Ipsum which looks reasonable. The generated Lorem Ipsum is therefore always free from repetition, injected humour, or non-characteristic words etc.<\\/p>\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"6a6c1bcf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#000000\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"73a52ec9\",\"elType\":\"widget\",\"settings\":{\"title\":\"What do I need to open the files ?<span style=\\\"font-style: inherit;\\\"><\\/span><br>\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7248ef37\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from 45 BC, making it over 2000 years old. Richard McClintock, a Latin professor at Hampden-Sydney College in Virginia, looked up one of the more obscure Latin words<\\/p>\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4a81ef3c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"top\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"3c72f59e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#000000\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"81e1b8a\",\"elType\":\"widget\",\"settings\":{\"title\":\"How can I edit smart objects ?<span style=\\\"font-style: inherit;\\\"><\\/span><br>\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1b16c234\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The standard chunk of Lorem Ipsum used since the 1500s is reproduced below for those interested. Sections 1.10.32 and 1.10.33 from \\\"de Finibus Bonorum et Malorum\\\" by Cicero are also reproduced in their exact original form, accompanied by English versions from the 1914 translation<\\/p>\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"4ee174cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#000000\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"49c014d2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Is the font free ?\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4a998124\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from 45 BC, making it over 2000 years old. Richard McClintock, a Latin professor at Hampden-Sydney College in Virginia, looked up one of the more obscure Latin words, consectetur<\\/p>\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b747fda\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":700},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":900},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7eab781\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"43661634\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our company is a collective of amazing people striving to build delightful products.\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.4},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70cc6d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.<\\/p>\",\"align\":\"center\",\"text_color\":\"#686868\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"615dfb3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1000},\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"6414755f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3bb26eed\",\"elType\":\"widget\",\"settings\":{\"text\":\"Read More\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3},\"button_text_color\":\"#ffffff\",\"background_color\":\"rgba(0,0,0,0)\",\"hover_color\":\"#00ce1b\",\"button_hover_border_color\":\"#00ce1b\",\"hover_animation\":\"grow\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(452,80,'_elementor_pro_version','2.6.5'),(474,83,'_elementor_template_type','post'),(475,83,'_elementor_version','2.6.8'),(476,83,'_elementor_pro_version','2.6.5'),(477,83,'_wp_page_template','default'),(478,83,'_elementor_data','[{\"id\":\"55396f27\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":700},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_image\":{\"id\":50,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Theatrical_Display_V003C.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_range\":\"viewport\",\"motion_fx_motion_fx_scrolling\":\"yes\"},\"elements\":[{\"id\":\"59493b21\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"51a2493a\",\"elType\":\"widget\",\"settings\":{\"title\":\"#WHAT\'S COOL\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30},\"typography_font_weight\":\"400\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":40},\"typography_font_family\":\"Roboto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.4,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#ee7624\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3022c757\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<hr \\/><div id=\\\"Content\\\"><div class=\\\"boxed\\\"><div id=\\\"lipsum\\\"><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer maximus nulla a aliquet dignissim. Suspendisse potenti. Proin efficitur lacus vitae augue porta posuere.<\\/p><\\/div><\\/div><\\/div>\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"478bcc27\",\"elType\":\"widget\",\"settings\":{\"placeholder\":\"Search by name, education, family , etc....\",\"button_text\":\"Search\",\"input_typography_typography\":\"custom\",\"input_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"input_typography_font_weight\":\"300\",\"input_text_color\":\"#ffffff\",\"input_background_color\":\"rgba(255,255,255,0.18)\",\"border_radius\":{\"unit\":\"px\",\"size\":0},\"button_text_color\":\"#000000\",\"button_background_color\":\"#ffffff\",\"button_text_color_hover\":\"#000000\",\"button_background_color_hover\":\"#00ce1b\",\"icon_size\":{\"unit\":\"px\",\"size\":15},\"button_width\":{\"unit\":\"px\",\"size\":1},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"search-form\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7df48509\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\"},\"elements\":[{\"id\":\"1147078d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6b1f2df0\",\"elType\":\"widget\",\"settings\":{\"title\":\"LIVING STANDEES HAUNTING THEATERS\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"442ffb\",\"elType\":\"widget\",\"settings\":{\"title\":\"ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS\",\"header_size\":\"h5\",\"align\":\"center\",\"title_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86cff8b\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a680ae8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h1>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.<\\/h1>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"be59fa3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"e36fe5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[],\"isInner\":true},{\"id\":\"3c9b758\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b747fda\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":700},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":900},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7eab781\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"43661634\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our company is a collective of amazing people striving to build delightful products.\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.4},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70cc6d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.<\\/p>\",\"align\":\"center\",\"text_color\":\"#686868\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"615dfb3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1000},\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"6414755f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3bb26eed\",\"elType\":\"widget\",\"settings\":{\"text\":\"Read More\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3},\"button_text_color\":\"#ffffff\",\"background_color\":\"rgba(0,0,0,0)\",\"hover_color\":\"#00ce1b\",\"button_hover_border_color\":\"#00ce1b\",\"hover_animation\":\"grow\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(450,80,'_elementor_template_type','post'),(451,80,'_elementor_version','2.6.8'),(455,80,'_elementor_edit_mode','builder'),(456,80,'_elementor_elements_usage','a:6:{s:7:\"heading\";i:10;s:11:\"text-editor\";i:8;s:11:\"search-form\";i:1;s:6:\"column\";i:10;s:7:\"section\";i:7;s:6:\"button\";i:1;}'),(458,81,'_elementor_template_type','post'),(459,81,'_elementor_version','2.6.8'),(460,81,'_elementor_pro_version','2.6.5'),(461,81,'_wp_page_template','default'),(462,81,'_elementor_data','[{\"id\":\"55396f27\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":700},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_image\":{\"id\":50,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Theatrical_Display_V003C.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_range\":\"viewport\",\"motion_fx_motion_fx_scrolling\":\"yes\"},\"elements\":[{\"id\":\"59493b21\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"51a2493a\",\"elType\":\"widget\",\"settings\":{\"title\":\"#WHAT\'S COOL\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30},\"typography_font_weight\":\"400\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":40},\"typography_font_family\":\"Roboto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.4,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#ee7624\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3022c757\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<hr \\/><div id=\\\"Content\\\"><div class=\\\"boxed\\\"><div id=\\\"lipsum\\\"><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer maximus nulla a aliquet dignissim. Suspendisse potenti. Proin efficitur lacus vitae augue porta posuere.<\\/p><\\/div><\\/div><\\/div>\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"478bcc27\",\"elType\":\"widget\",\"settings\":{\"placeholder\":\"Search by name, education, family , etc....\",\"button_text\":\"Search\",\"input_typography_typography\":\"custom\",\"input_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"input_typography_font_weight\":\"300\",\"input_text_color\":\"#ffffff\",\"input_background_color\":\"rgba(255,255,255,0.18)\",\"border_radius\":{\"unit\":\"px\",\"size\":0},\"button_text_color\":\"#000000\",\"button_background_color\":\"#ffffff\",\"button_text_color_hover\":\"#000000\",\"button_background_color_hover\":\"#00ce1b\",\"icon_size\":{\"unit\":\"px\",\"size\":15},\"button_width\":{\"unit\":\"px\",\"size\":1},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"search-form\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7df48509\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\"},\"elements\":[{\"id\":\"1147078d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6b1f2df0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Frequently Asked Questions\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"442ffb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Most frequent questions and answers\",\"header_size\":\"h5\",\"align\":\"center\",\"title_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"40f37237\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"top\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5b834b6d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#000000\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"1305fa8f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Can I edit the files ?\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6e9558b3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>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.<\\/p>\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"70092d1f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#000000\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7f66a7a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Is it Layered ?\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5afee9a0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don\'t look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn\'t anything embarrassing hidden in the middle of text.<\\/p>\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"18eeaf1b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"top\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"70263275\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#000000\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"-60\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"17ba0aac\",\"elType\":\"widget\",\"settings\":{\"title\":\"How can I edit the masks ?<span style=\\\"font-style: inherit;\\\"><\\/span><br>\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3d4ba25c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>All the Lorem Ipsum generators on the Internet tend to repeat predefined chunks as necessary, making this the first true generator on the Internet. It uses a dictionary of over 200 Latin words, combined with a handful of model sentence structures, to generate Lorem Ipsum which looks reasonable. The generated Lorem Ipsum is therefore always free from repetition, injected humour, or non-characteristic words etc.<\\/p>\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"6a6c1bcf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#000000\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"73a52ec9\",\"elType\":\"widget\",\"settings\":{\"title\":\"What do I need to open the files ?<span style=\\\"font-style: inherit;\\\"><\\/span><br>\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7248ef37\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from 45 BC, making it over 2000 years old. Richard McClintock, a Latin professor at Hampden-Sydney College in Virginia, looked up one of the more obscure Latin words<\\/p>\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4a81ef3c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"top\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"3c72f59e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#000000\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"81e1b8a\",\"elType\":\"widget\",\"settings\":{\"title\":\"How can I edit smart objects ?<span style=\\\"font-style: inherit;\\\"><\\/span><br>\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1b16c234\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The standard chunk of Lorem Ipsum used since the 1500s is reproduced below for those interested. Sections 1.10.32 and 1.10.33 from \\\"de Finibus Bonorum et Malorum\\\" by Cicero are also reproduced in their exact original form, accompanied by English versions from the 1914 translation<\\/p>\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"4ee174cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#000000\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"49c014d2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Is the font free ?\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4a998124\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from 45 BC, making it over 2000 years old. Richard McClintock, a Latin professor at Hampden-Sydney College in Virginia, looked up one of the more obscure Latin words, consectetur<\\/p>\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b747fda\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":700},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":900},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7eab781\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"43661634\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our company is a collective of amazing people striving to build delightful products.\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.4},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70cc6d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.<\\/p>\",\"align\":\"center\",\"text_color\":\"#686868\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"615dfb3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1000},\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"6414755f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3bb26eed\",\"elType\":\"widget\",\"settings\":{\"text\":\"Read More\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3},\"button_text_color\":\"#ffffff\",\"background_color\":\"rgba(0,0,0,0)\",\"hover_color\":\"#00ce1b\",\"button_hover_border_color\":\"#00ce1b\",\"hover_animation\":\"grow\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(463,81,'_elementor_edit_mode','builder'),(464,81,'_elementor_elements_usage','a:6:{s:7:\"heading\";i:10;s:11:\"text-editor\";i:8;s:11:\"search-form\";i:1;s:6:\"column\";i:10;s:7:\"section\";i:7;s:6:\"button\";i:1;}'),(486,84,'_elementor_edit_mode','builder'),(487,84,'_elementor_elements_usage','a:7:{s:7:\"heading\";i:4;s:11:\"text-editor\";i:3;s:11:\"search-form\";i:1;s:6:\"column\";i:6;s:7:\"section\";i:5;s:7:\"divider\";i:1;s:6:\"button\";i:1;}'),(489,85,'_elementor_template_type','post'),(490,85,'_elementor_version','2.6.8'),(491,85,'_elementor_pro_version','2.6.5'),(492,85,'_wp_page_template','default'),(493,85,'_elementor_data','[{\"id\":\"55396f27\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":700},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_image\":{\"id\":50,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Theatrical_Display_V003C.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_range\":\"viewport\",\"motion_fx_motion_fx_scrolling\":\"yes\"},\"elements\":[{\"id\":\"59493b21\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"51a2493a\",\"elType\":\"widget\",\"settings\":{\"title\":\"#WHAT\'S COOL\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30},\"typography_font_weight\":\"400\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":40},\"typography_font_family\":\"Roboto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.4,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#ee7624\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3022c757\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<hr \\/><div id=\\\"Content\\\"><div class=\\\"boxed\\\"><div id=\\\"lipsum\\\"><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer maximus nulla a aliquet dignissim. Suspendisse potenti. Proin efficitur lacus vitae augue porta posuere.<\\/p><\\/div><\\/div><\\/div>\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"478bcc27\",\"elType\":\"widget\",\"settings\":{\"placeholder\":\"Search by name, education, family , etc....\",\"button_text\":\"Search\",\"input_typography_typography\":\"custom\",\"input_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"input_typography_font_weight\":\"300\",\"input_text_color\":\"#ffffff\",\"input_background_color\":\"rgba(255,255,255,0.18)\",\"border_radius\":{\"unit\":\"px\",\"size\":0},\"button_text_color\":\"#000000\",\"button_background_color\":\"#ffffff\",\"button_text_color_hover\":\"#000000\",\"button_background_color_hover\":\"#00ce1b\",\"icon_size\":{\"unit\":\"px\",\"size\":15},\"button_width\":{\"unit\":\"px\",\"size\":1},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"search-form\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7df48509\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\"},\"elements\":[{\"id\":\"1147078d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6b1f2df0\",\"elType\":\"widget\",\"settings\":{\"title\":\"LIVING STANDEES HAUNTING THEATERS\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.3,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"442ffb\",\"elType\":\"widget\",\"settings\":{\"title\":\"ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS\",\"header_size\":\"h5\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86cff8b\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a680ae8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h1>INSIDIOUS - THE LAST KEY<\\/h1>\\n<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"be59fa3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"e36fe5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[],\"isInner\":true},{\"id\":\"3c9b758\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b747fda\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":700},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":900},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7eab781\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"43661634\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our company is a collective of amazing people striving to build delightful products.\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.4},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70cc6d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.<\\/p>\",\"align\":\"center\",\"text_color\":\"#686868\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"615dfb3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1000},\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"6414755f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3bb26eed\",\"elType\":\"widget\",\"settings\":{\"text\":\"Read More\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3},\"button_text_color\":\"#ffffff\",\"background_color\":\"rgba(0,0,0,0)\",\"hover_color\":\"#00ce1b\",\"button_hover_border_color\":\"#00ce1b\",\"hover_animation\":\"grow\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(494,85,'_elementor_edit_mode','builder'),(495,85,'_elementor_elements_usage','a:7:{s:7:\"heading\";i:4;s:11:\"text-editor\";i:3;s:11:\"search-form\";i:1;s:6:\"column\";i:6;s:7:\"section\";i:5;s:7:\"divider\";i:1;s:6:\"button\";i:1;}'),(508,89,'_elementor_template_type','post'),(509,89,'_elementor_version','2.6.8'),(510,89,'_elementor_pro_version','2.6.5'),(511,89,'_wp_page_template','default'),(512,89,'_elementor_data','[{\"id\":\"55396f27\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":700},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_image\":{\"id\":50,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Theatrical_Display_V003C.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_range\":\"viewport\",\"motion_fx_motion_fx_scrolling\":\"yes\"},\"elements\":[{\"id\":\"59493b21\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"51a2493a\",\"elType\":\"widget\",\"settings\":{\"title\":\"#WHAT\'S COOL\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30},\"typography_font_weight\":\"400\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":40},\"typography_font_family\":\"Roboto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.4,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#ee7624\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3022c757\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<hr \\/><div id=\\\"Content\\\"><div class=\\\"boxed\\\"><div id=\\\"lipsum\\\"><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer maximus nulla a aliquet dignissim. Suspendisse potenti. Proin efficitur lacus vitae augue porta posuere.<\\/p><\\/div><\\/div><\\/div>\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"478bcc27\",\"elType\":\"widget\",\"settings\":{\"placeholder\":\"Search by name, education, family , etc....\",\"button_text\":\"Search\",\"input_typography_typography\":\"custom\",\"input_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"input_typography_font_weight\":\"300\",\"input_text_color\":\"#ffffff\",\"input_background_color\":\"rgba(255,255,255,0.18)\",\"border_radius\":{\"unit\":\"px\",\"size\":0},\"button_text_color\":\"#000000\",\"button_background_color\":\"#ffffff\",\"button_text_color_hover\":\"#000000\",\"button_background_color_hover\":\"#00ce1b\",\"icon_size\":{\"unit\":\"px\",\"size\":15},\"button_width\":{\"unit\":\"px\",\"size\":1},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"search-form\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7df48509\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\"},\"elements\":[{\"id\":\"1147078d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6b1f2df0\",\"elType\":\"widget\",\"settings\":{\"title\":\"LIVING STANDEES HAUNTING THEATERS\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.3,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"442ffb\",\"elType\":\"widget\",\"settings\":{\"title\":\"ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS\",\"header_size\":\"h5\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86cff8b\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a680ae8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h1>INSIDIOUS - THE LAST KEY<\\/h1>\\n<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"be59fa3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"e36fe5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"d4d2039\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2.jpg\",\"id\":88}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3c9b758\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"79e122a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2-1.jpg\",\"id\":87}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b747fda\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":700},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":900},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7eab781\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"43661634\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our company is a collective of amazing people striving to build delightful products.\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.4},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70cc6d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.<\\/p>\",\"align\":\"center\",\"text_color\":\"#686868\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"615dfb3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1000},\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"6414755f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3bb26eed\",\"elType\":\"widget\",\"settings\":{\"text\":\"Read More\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3},\"button_text_color\":\"#ffffff\",\"background_color\":\"rgba(0,0,0,0)\",\"hover_color\":\"#00ce1b\",\"button_hover_border_color\":\"#00ce1b\",\"hover_animation\":\"grow\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(504,87,'_wp_attached_file','2019/09/Insidious4_pic2-1.jpg'),(505,87,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:1333;s:4:\"file\";s:29:\"2019/09/Insidious4_pic2-1.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"Insidious4_pic2-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:29:\"Insidious4_pic2-1-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:30:\"Insidious4_pic2-1-768x1024.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:30:\"Insidious4_pic2-1-768x1024.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(506,88,'_wp_attached_file','2019/09/Insidious4_pic2.jpg'),(507,88,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:1333;s:4:\"file\";s:27:\"2019/09/Insidious4_pic2.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"Insidious4_pic2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"Insidious4_pic2-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:28:\"Insidious4_pic2-768x1024.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:28:\"Insidious4_pic2-768x1024.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(513,89,'_elementor_edit_mode','builder'),(514,89,'_elementor_elements_usage','a:8:{s:7:\"heading\";i:4;s:11:\"text-editor\";i:3;s:11:\"search-form\";i:1;s:6:\"column\";i:6;s:7:\"section\";i:5;s:7:\"divider\";i:1;s:5:\"image\";i:2;s:6:\"button\";i:1;}'),(515,90,'_elementor_template_type','post'),(516,90,'_elementor_version','2.6.8'),(517,90,'_elementor_pro_version','2.6.5'),(518,90,'_wp_page_template','default'),(519,90,'_elementor_data','[{\"id\":\"55396f27\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":700},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_image\":{\"id\":50,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Theatrical_Display_V003C.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_range\":\"viewport\",\"motion_fx_motion_fx_scrolling\":\"yes\"},\"elements\":[{\"id\":\"59493b21\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"51a2493a\",\"elType\":\"widget\",\"settings\":{\"title\":\"#WHAT\'S COOL\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30},\"typography_font_weight\":\"400\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":40},\"typography_font_family\":\"Roboto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.4,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#ee7624\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3022c757\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<hr \\/><div id=\\\"Content\\\"><div class=\\\"boxed\\\"><div id=\\\"lipsum\\\"><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer maximus nulla a aliquet dignissim. Suspendisse potenti. Proin efficitur lacus vitae augue porta posuere.<\\/p><\\/div><\\/div><\\/div>\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"478bcc27\",\"elType\":\"widget\",\"settings\":{\"placeholder\":\"Search by name, education, family , etc....\",\"button_text\":\"Search\",\"input_typography_typography\":\"custom\",\"input_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"input_typography_font_weight\":\"300\",\"input_text_color\":\"#ffffff\",\"input_background_color\":\"rgba(255,255,255,0.18)\",\"border_radius\":{\"unit\":\"px\",\"size\":0},\"button_text_color\":\"#000000\",\"button_background_color\":\"#ffffff\",\"button_text_color_hover\":\"#000000\",\"button_background_color_hover\":\"#00ce1b\",\"icon_size\":{\"unit\":\"px\",\"size\":15},\"button_width\":{\"unit\":\"px\",\"size\":1},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"search-form\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7df48509\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\"},\"elements\":[{\"id\":\"1147078d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6b1f2df0\",\"elType\":\"widget\",\"settings\":{\"title\":\"LIVING STANDEES HAUNTING THEATERS\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.3,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"442ffb\",\"elType\":\"widget\",\"settings\":{\"title\":\"ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS\",\"header_size\":\"h5\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86cff8b\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a680ae8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h1>INSIDIOUS - THE LAST KEY<\\/h1>\\n<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"be59fa3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"e36fe5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"d4d2039\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2.jpg\",\"id\":88},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3c9b758\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"79e122a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2-1.jpg\",\"id\":87}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b747fda\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":700},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":900},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7eab781\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"43661634\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our company is a collective of amazing people striving to build delightful products.\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.4},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70cc6d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.<\\/p>\",\"align\":\"center\",\"text_color\":\"#686868\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"615dfb3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1000},\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"6414755f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3bb26eed\",\"elType\":\"widget\",\"settings\":{\"text\":\"Read More\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3},\"button_text_color\":\"#ffffff\",\"background_color\":\"rgba(0,0,0,0)\",\"hover_color\":\"#00ce1b\",\"button_hover_border_color\":\"#00ce1b\",\"hover_animation\":\"grow\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(520,90,'_elementor_edit_mode','builder'),(521,90,'_elementor_elements_usage','a:8:{s:7:\"heading\";i:4;s:11:\"text-editor\";i:3;s:11:\"search-form\";i:1;s:6:\"column\";i:6;s:7:\"section\";i:5;s:7:\"divider\";i:1;s:5:\"image\";i:2;s:6:\"button\";i:1;}'),(531,92,'_elementor_pro_version','2.6.5'),(532,92,'_wp_page_template','default'),(533,92,'_elementor_data','[{\"id\":\"55396f27\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":700},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_image\":{\"id\":50,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Theatrical_Display_V003C.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_range\":\"viewport\",\"motion_fx_motion_fx_scrolling\":\"yes\"},\"elements\":[{\"id\":\"59493b21\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"51a2493a\",\"elType\":\"widget\",\"settings\":{\"title\":\"#WHAT\'S COOL\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30},\"typography_font_weight\":\"400\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":40},\"typography_font_family\":\"Roboto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.4,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#ee7624\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3022c757\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<hr \\/><div id=\\\"Content\\\"><div class=\\\"boxed\\\"><div id=\\\"lipsum\\\"><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer maximus nulla a aliquet dignissim. Suspendisse potenti. Proin efficitur lacus vitae augue porta posuere.<\\/p><\\/div><\\/div><\\/div>\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"478bcc27\",\"elType\":\"widget\",\"settings\":{\"placeholder\":\"Search by name, education, family , etc....\",\"button_text\":\"Search\",\"input_typography_typography\":\"custom\",\"input_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"input_typography_font_weight\":\"300\",\"input_text_color\":\"#ffffff\",\"input_background_color\":\"rgba(255,255,255,0.18)\",\"border_radius\":{\"unit\":\"px\",\"size\":0},\"button_text_color\":\"#000000\",\"button_background_color\":\"#ffffff\",\"button_text_color_hover\":\"#000000\",\"button_background_color_hover\":\"#00ce1b\",\"icon_size\":{\"unit\":\"px\",\"size\":15},\"button_width\":{\"unit\":\"px\",\"size\":1},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"search-form\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7df48509\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\"},\"elements\":[{\"id\":\"1147078d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6b1f2df0\",\"elType\":\"widget\",\"settings\":{\"title\":\"LIVING STANDEES HAUNTING THEATERS\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.3,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"442ffb\",\"elType\":\"widget\",\"settings\":{\"title\":\"ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS\",\"header_size\":\"h5\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86cff8b\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a680ae8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h1>INSIDIOUS - THE LAST KEY<\\/h1>\\n<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"be59fa3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"no\"},\"elements\":[{\"id\":\"e36fe5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"d4d2039\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2.jpg\",\"id\":88},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"18\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3c9b758\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"79e122a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2-1.jpg\",\"id\":87},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"18\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b747fda\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":700},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":900},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7eab781\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"43661634\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our company is a collective of amazing people striving to build delightful products.\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.4},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70cc6d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.<\\/p>\",\"align\":\"center\",\"text_color\":\"#686868\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"615dfb3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1000},\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"6414755f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3bb26eed\",\"elType\":\"widget\",\"settings\":{\"text\":\"Read More\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3},\"button_text_color\":\"#ffffff\",\"background_color\":\"rgba(0,0,0,0)\",\"hover_color\":\"#00ce1b\",\"button_hover_border_color\":\"#00ce1b\",\"hover_animation\":\"grow\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(530,92,'_elementor_version','2.6.8'),(529,92,'_elementor_template_type','post'),(534,92,'_elementor_edit_mode','builder'),(535,92,'_elementor_elements_usage','a:8:{s:7:\"heading\";i:4;s:11:\"text-editor\";i:3;s:11:\"search-form\";i:1;s:6:\"column\";i:6;s:7:\"section\";i:5;s:7:\"divider\";i:1;s:5:\"image\";i:2;s:6:\"button\";i:1;}'),(547,94,'_elementor_data','[{\"id\":\"55396f27\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":700},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_image\":{\"id\":50,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Theatrical_Display_V003C.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_range\":\"viewport\",\"motion_fx_motion_fx_scrolling\":\"yes\"},\"elements\":[{\"id\":\"59493b21\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"51a2493a\",\"elType\":\"widget\",\"settings\":{\"title\":\"#WHAT\'S COOL\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30},\"typography_font_weight\":\"400\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":40},\"typography_font_family\":\"Roboto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.4,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#ee7624\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3022c757\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<hr \\/><div id=\\\"Content\\\"><div class=\\\"boxed\\\"><div id=\\\"lipsum\\\"><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer maximus nulla a aliquet dignissim. Suspendisse potenti. Proin efficitur lacus vitae augue porta posuere.<\\/p><\\/div><\\/div><\\/div>\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"478bcc27\",\"elType\":\"widget\",\"settings\":{\"placeholder\":\"Search by name, education, family , etc....\",\"button_text\":\"Search\",\"input_typography_typography\":\"custom\",\"input_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"input_typography_font_weight\":\"300\",\"input_text_color\":\"#ffffff\",\"input_background_color\":\"rgba(255,255,255,0.18)\",\"border_radius\":{\"unit\":\"px\",\"size\":0},\"button_text_color\":\"#000000\",\"button_background_color\":\"#ffffff\",\"button_text_color_hover\":\"#000000\",\"button_background_color_hover\":\"#00ce1b\",\"icon_size\":{\"unit\":\"px\",\"size\":15},\"button_width\":{\"unit\":\"px\",\"size\":1},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"search-form\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7df48509\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\"},\"elements\":[{\"id\":\"1147078d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6b1f2df0\",\"elType\":\"widget\",\"settings\":{\"title\":\"LIVING STANDEES HAUNTING THEATERS\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.3,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"442ffb\",\"elType\":\"widget\",\"settings\":{\"title\":\"ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS\",\"header_size\":\"h5\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86cff8b\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a680ae8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h1>INSIDIOUS - THE LAST KEY<\\/h1>\\n<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"be59fa3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"no\"},\"elements\":[{\"id\":\"e36fe5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"d4d2039\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2.jpg\",\"id\":88},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"18\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3c9b758\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"79e122a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2-1.jpg\",\"id\":87},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"18\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3dc9df5\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"_margin\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b747fda\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":700},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":900},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7eab781\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"43661634\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our company is a collective of amazing people striving to build delightful products.\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.4},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70cc6d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.<\\/p>\",\"align\":\"center\",\"text_color\":\"#686868\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"615dfb3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1000},\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"6414755f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3bb26eed\",\"elType\":\"widget\",\"settings\":{\"text\":\"Read More\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3},\"button_text_color\":\"#ffffff\",\"background_color\":\"rgba(0,0,0,0)\",\"hover_color\":\"#00ce1b\",\"button_hover_border_color\":\"#00ce1b\",\"hover_animation\":\"grow\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(546,94,'_wp_page_template','default'),(596,100,'_elementor_template_type','post'),(597,100,'_elementor_version','2.6.8'),(598,100,'_elementor_pro_version','2.6.5'),(599,100,'_wp_page_template','default'),(600,100,'_elementor_data','[{\"id\":\"55396f27\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":50,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Theatrical_Display_V003C.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_range\":\"viewport\",\"motion_fx_motion_fx_scrolling\":\"yes\",\"layout\":\"full_width\"},\"elements\":[{\"id\":\"59493b21\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"b700365\",\"elType\":\"widget\",\"settings\":{\"title\":\"#WHAT\'S COOL\",\"title_color\":\"#ffffff\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7df48509\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\"},\"elements\":[{\"id\":\"1147078d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6b1f2df0\",\"elType\":\"widget\",\"settings\":{\"title\":\"LIVING STANDEES HAUNTING THEATERS\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.3,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"442ffb\",\"elType\":\"widget\",\"settings\":{\"title\":\"ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS\",\"header_size\":\"h5\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86cff8b\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a680ae8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h1>INSIDIOUS - THE LAST KEY<\\/h1>\\n<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"be59fa3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"no\"},\"elements\":[{\"id\":\"e36fe5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"d4d2039\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2.jpg\",\"id\":88},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"18\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3c9b758\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"79e122a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2-1.jpg\",\"id\":87},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"18\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3dc9df5\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"_margin\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"start\":0},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b747fda\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":700},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":900},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7eab781\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"43661634\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our company is a collective of amazing people striving to build delightful products.\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.4},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70cc6d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.<\\/p>\",\"align\":\"center\",\"text_color\":\"#686868\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"615dfb3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1000},\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"6414755f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3bb26eed\",\"elType\":\"widget\",\"settings\":{\"text\":\"Read More\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3},\"button_text_color\":\"#ffffff\",\"background_color\":\"rgba(0,0,0,0)\",\"hover_color\":\"#00ce1b\",\"button_hover_border_color\":\"#00ce1b\",\"hover_animation\":\"grow\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(543,94,'_elementor_template_type','post'),(544,94,'_elementor_version','2.6.8'),(545,94,'_elementor_pro_version','2.6.5'),(548,94,'_elementor_edit_mode','builder'),(549,94,'_elementor_elements_usage','a:9:{s:7:\"heading\";i:4;s:11:\"text-editor\";i:3;s:11:\"search-form\";i:1;s:6:\"column\";i:6;s:7:\"section\";i:5;s:7:\"divider\";i:1;s:5:\"image\";i:2;s:5:\"video\";i:1;s:6:\"button\";i:1;}'),(550,5,'_oembed_716ef4742e78124fc3af93f9a5adead9','<iframe title=\"vimeo placeholder\" src=\"https://player.vimeo.com/video/235215203?dnt=1&amp;app_id=122963\" width=\"1200\" height=\"675\" frameborder=\"0\" allow=\"autoplay; fullscreen\" allowfullscreen></iframe>'),(551,5,'_oembed_time_716ef4742e78124fc3af93f9a5adead9','1568415948'),(552,95,'_elementor_template_type','post'),(553,95,'_elementor_version','2.6.8'),(554,95,'_elementor_pro_version','2.6.5'),(555,95,'_wp_page_template','default'),(556,95,'_elementor_data','[{\"id\":\"55396f27\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":700},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_image\":{\"id\":50,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Theatrical_Display_V003C.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_range\":\"viewport\",\"motion_fx_motion_fx_scrolling\":\"yes\"},\"elements\":[{\"id\":\"59493b21\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"51a2493a\",\"elType\":\"widget\",\"settings\":{\"title\":\"#WHAT\'S COOL\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30},\"typography_font_weight\":\"400\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":40},\"typography_font_family\":\"Roboto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.4,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#ee7624\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3022c757\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<hr \\/><div id=\\\"Content\\\"><div class=\\\"boxed\\\"><div id=\\\"lipsum\\\"><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer maximus nulla a aliquet dignissim. Suspendisse potenti. Proin efficitur lacus vitae augue porta posuere.<\\/p><\\/div><\\/div><\\/div>\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"478bcc27\",\"elType\":\"widget\",\"settings\":{\"placeholder\":\"Search by name, education, family , etc....\",\"button_text\":\"Search\",\"input_typography_typography\":\"custom\",\"input_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"input_typography_font_weight\":\"300\",\"input_text_color\":\"#ffffff\",\"input_background_color\":\"rgba(255,255,255,0.18)\",\"border_radius\":{\"unit\":\"px\",\"size\":0},\"button_text_color\":\"#000000\",\"button_background_color\":\"#ffffff\",\"button_text_color_hover\":\"#000000\",\"button_background_color_hover\":\"#00ce1b\",\"icon_size\":{\"unit\":\"px\",\"size\":15},\"button_width\":{\"unit\":\"px\",\"size\":1},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"search-form\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7df48509\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\"},\"elements\":[{\"id\":\"1147078d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6b1f2df0\",\"elType\":\"widget\",\"settings\":{\"title\":\"LIVING STANDEES HAUNTING THEATERS\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.3,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"442ffb\",\"elType\":\"widget\",\"settings\":{\"title\":\"ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS\",\"header_size\":\"h5\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86cff8b\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a680ae8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h1>INSIDIOUS - THE LAST KEY<\\/h1>\\n<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"be59fa3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"no\"},\"elements\":[{\"id\":\"e36fe5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"d4d2039\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2.jpg\",\"id\":88},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"18\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3c9b758\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"79e122a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2-1.jpg\",\"id\":87},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"18\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3dc9df5\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"_margin\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"start\":0},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b747fda\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":700},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":900},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7eab781\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"43661634\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our company is a collective of amazing people striving to build delightful products.\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.4},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70cc6d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.<\\/p>\",\"align\":\"center\",\"text_color\":\"#686868\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"615dfb3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1000},\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"6414755f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3bb26eed\",\"elType\":\"widget\",\"settings\":{\"text\":\"Read More\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3},\"button_text_color\":\"#ffffff\",\"background_color\":\"rgba(0,0,0,0)\",\"hover_color\":\"#00ce1b\",\"button_hover_border_color\":\"#00ce1b\",\"hover_animation\":\"grow\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(557,95,'_elementor_edit_mode','builder'),(558,95,'_elementor_elements_usage','a:9:{s:7:\"heading\";i:4;s:11:\"text-editor\";i:3;s:11:\"search-form\";i:1;s:6:\"column\";i:6;s:7:\"section\";i:5;s:7:\"divider\";i:1;s:5:\"image\";i:2;s:5:\"video\";i:1;s:6:\"button\";i:1;}'),(559,5,'_oembed_e6d64697975779fabdc4f171c0e483ef','<iframe title=\"THE LAST KEYS\" src=\"https://player.vimeo.com/video/257088337?dnt=1&amp;app_id=122963\" width=\"1200\" height=\"675\" frameborder=\"0\" allow=\"autoplay; fullscreen\" allowfullscreen></iframe>'),(560,5,'_oembed_time_e6d64697975779fabdc4f171c0e483ef','1568416156'),(562,5,'_oembed_279ad5f32a0cbffcb010fb545e057300','<iframe title=\"THE LAST KEYS\" src=\"https://player.vimeo.com/video/257088337?dnt=1&amp;app_id=122963\" width=\"500\" height=\"281\" frameborder=\"0\" allow=\"autoplay; fullscreen\" allowfullscreen></iframe>'),(563,5,'_oembed_time_279ad5f32a0cbffcb010fb545e057300','1568417794'),(564,96,'_elementor_template_type','post'),(565,96,'_elementor_version','2.6.8'),(566,96,'_elementor_pro_version','2.6.5'),(567,96,'_wp_page_template','default'),(568,96,'_elementor_data','[{\"id\":\"55396f27\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":700},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_image\":{\"id\":50,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Theatrical_Display_V003C.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_range\":\"viewport\",\"motion_fx_motion_fx_scrolling\":\"yes\"},\"elements\":[{\"id\":\"59493b21\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"51a2493a\",\"elType\":\"widget\",\"settings\":{\"title\":\"#WHAT\'S COOL\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30},\"typography_font_weight\":\"400\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":40},\"typography_font_family\":\"Roboto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.4,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#ee7624\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3022c757\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<hr \\/><div id=\\\"Content\\\"><div class=\\\"boxed\\\"><div id=\\\"lipsum\\\"><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer maximus nulla a aliquet dignissim. Suspendisse potenti. Proin efficitur lacus vitae augue porta posuere.<\\/p><\\/div><\\/div><\\/div>\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"478bcc27\",\"elType\":\"widget\",\"settings\":{\"placeholder\":\"Search by name, education, family , etc....\",\"button_text\":\"Search\",\"input_typography_typography\":\"custom\",\"input_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"input_typography_font_weight\":\"300\",\"input_text_color\":\"#ffffff\",\"input_background_color\":\"rgba(255,255,255,0.18)\",\"border_radius\":{\"unit\":\"px\",\"size\":0},\"button_text_color\":\"#000000\",\"button_background_color\":\"#ffffff\",\"button_text_color_hover\":\"#000000\",\"button_background_color_hover\":\"#00ce1b\",\"icon_size\":{\"unit\":\"px\",\"size\":15},\"button_width\":{\"unit\":\"px\",\"size\":1},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"search-form\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7df48509\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\"},\"elements\":[{\"id\":\"1147078d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6b1f2df0\",\"elType\":\"widget\",\"settings\":{\"title\":\"LIVING STANDEES HAUNTING THEATERS\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.3,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"442ffb\",\"elType\":\"widget\",\"settings\":{\"title\":\"ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS\",\"header_size\":\"h5\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86cff8b\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a680ae8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h1>INSIDIOUS - THE LAST KEY<\\/h1>\\n<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"be59fa3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"no\"},\"elements\":[{\"id\":\"e36fe5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"d4d2039\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2.jpg\",\"id\":88},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"18\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3c9b758\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"79e122a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2-1.jpg\",\"id\":87},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"18\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3dc9df5\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"_margin\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"start\":0},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b747fda\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":700},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":900},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7eab781\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"43661634\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our company is a collective of amazing people striving to build delightful products.\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.4},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70cc6d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.<\\/p>\",\"align\":\"center\",\"text_color\":\"#686868\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"615dfb3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1000},\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"6414755f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3bb26eed\",\"elType\":\"widget\",\"settings\":{\"text\":\"Read More\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3},\"button_text_color\":\"#ffffff\",\"background_color\":\"rgba(0,0,0,0)\",\"hover_color\":\"#00ce1b\",\"button_hover_border_color\":\"#00ce1b\",\"hover_animation\":\"grow\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(569,96,'_elementor_edit_mode','builder'),(570,96,'_elementor_elements_usage','a:9:{s:7:\"heading\";i:4;s:11:\"text-editor\";i:3;s:11:\"search-form\";i:1;s:6:\"column\";i:6;s:7:\"section\";i:5;s:7:\"divider\";i:1;s:5:\"image\";i:2;s:5:\"video\";i:1;s:6:\"button\";i:1;}'),(572,25,'_elementor_css','a:5:{s:4:\"time\";i:1568419354;s:5:\"fonts\";a:1:{i:0;s:9:\"Catamaran\";}s:5:\"icons\";a:3:{i:0;s:0:\"\";i:1;s:8:\"fa-solid\";i:6;s:9:\"fa-brands\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(585,98,'_wp_page_template','default'),(586,98,'_elementor_data','[{\"id\":\"55396f27\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":700},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_image\":{\"id\":50,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Theatrical_Display_V003C.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_range\":\"viewport\",\"motion_fx_motion_fx_scrolling\":\"yes\"},\"elements\":[{\"id\":\"59493b21\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"51a2493a\",\"elType\":\"widget\",\"settings\":{\"title\":\"#WHAT\'S COOL\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2},\"typography_font_weight\":\"400\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":40},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#ee7624\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3022c757\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<hr \\/><div id=\\\"Content\\\"><div class=\\\"boxed\\\"><div id=\\\"lipsum\\\"><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer maximus nulla a aliquet dignissim. Suspendisse potenti. Proin efficitur lacus vitae augue porta posuere.<\\/p><\\/div><\\/div><\\/div>\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"478bcc27\",\"elType\":\"widget\",\"settings\":{\"placeholder\":\"Search by name, education, family , etc....\",\"button_text\":\"Search\",\"input_typography_typography\":\"custom\",\"input_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"input_typography_font_weight\":\"300\",\"input_text_color\":\"#ffffff\",\"input_background_color\":\"rgba(255,255,255,0.18)\",\"border_radius\":{\"unit\":\"px\",\"size\":0},\"button_text_color\":\"#000000\",\"button_background_color\":\"#ffffff\",\"button_text_color_hover\":\"#000000\",\"button_background_color_hover\":\"#00ce1b\",\"icon_size\":{\"unit\":\"px\",\"size\":15},\"button_width\":{\"unit\":\"px\",\"size\":1},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"search-form\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7df48509\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\"},\"elements\":[{\"id\":\"1147078d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6b1f2df0\",\"elType\":\"widget\",\"settings\":{\"title\":\"LIVING STANDEES HAUNTING THEATERS\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.3,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"442ffb\",\"elType\":\"widget\",\"settings\":{\"title\":\"ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS\",\"header_size\":\"h5\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86cff8b\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a680ae8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h1>INSIDIOUS - THE LAST KEY<\\/h1>\\n<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"be59fa3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"no\"},\"elements\":[{\"id\":\"e36fe5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"d4d2039\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2.jpg\",\"id\":88},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"18\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3c9b758\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"79e122a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2-1.jpg\",\"id\":87},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"18\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3dc9df5\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"_margin\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"start\":0},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b747fda\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":700},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":900},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7eab781\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"43661634\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our company is a collective of amazing people striving to build delightful products.\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.4},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70cc6d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.<\\/p>\",\"align\":\"center\",\"text_color\":\"#686868\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"615dfb3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1000},\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"6414755f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3bb26eed\",\"elType\":\"widget\",\"settings\":{\"text\":\"Read More\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3},\"button_text_color\":\"#ffffff\",\"background_color\":\"rgba(0,0,0,0)\",\"hover_color\":\"#00ce1b\",\"button_hover_border_color\":\"#00ce1b\",\"hover_animation\":\"grow\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(582,98,'_elementor_template_type','post'),(583,98,'_elementor_version','2.6.8'),(584,98,'_elementor_pro_version','2.6.5'),(601,100,'_elementor_edit_mode','builder'),(602,100,'_elementor_elements_usage','a:8:{s:7:\"heading\";i:4;s:6:\"column\";i:6;s:7:\"section\";i:5;s:7:\"divider\";i:1;s:11:\"text-editor\";i:2;s:5:\"image\";i:2;s:5:\"video\";i:1;s:6:\"button\";i:1;}'),(603,101,'_elementor_template_type','post'),(604,101,'_elementor_version','2.6.8'),(605,101,'_elementor_pro_version','2.6.5'),(606,101,'_wp_page_template','default'),(607,101,'_elementor_data','[{\"id\":\"55396f27\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":50,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Theatrical_Display_V003C.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_range\":\"viewport\",\"motion_fx_motion_fx_scrolling\":\"yes\",\"layout\":\"full_width\"},\"elements\":[{\"id\":\"59493b21\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"b700365\",\"elType\":\"widget\",\"settings\":{\"title\":\"#WHAT\'S COOL\",\"title_color\":\"#ffffff\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7df48509\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\"},\"elements\":[{\"id\":\"1147078d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6b1f2df0\",\"elType\":\"widget\",\"settings\":{\"title\":\"LIVING STANDEES HAUNTING THEATERS\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.3,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"442ffb\",\"elType\":\"widget\",\"settings\":{\"title\":\"ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS\",\"header_size\":\"h5\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86cff8b\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a680ae8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h1>INSIDIOUS - THE LAST KEY<\\/h1>\\n<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"be59fa3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"no\"},\"elements\":[{\"id\":\"e36fe5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"d4d2039\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2.jpg\",\"id\":88},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"18\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3c9b758\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"79e122a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2-1.jpg\",\"id\":87},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"18\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3dc9df5\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"_margin\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"start\":0},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b747fda\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":700},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":900},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7eab781\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"43661634\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our company is a collective of amazing people striving to build delightful products.\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.4},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70cc6d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.<\\/p>\",\"align\":\"center\",\"text_color\":\"#686868\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"615dfb3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1000},\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"6414755f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3bb26eed\",\"elType\":\"widget\",\"settings\":{\"text\":\"Read More\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3},\"button_text_color\":\"#ffffff\",\"background_color\":\"rgba(0,0,0,0)\",\"hover_color\":\"#00ce1b\",\"button_hover_border_color\":\"#00ce1b\",\"hover_animation\":\"grow\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(608,101,'_elementor_edit_mode','builder'),(609,101,'_elementor_elements_usage','a:8:{s:7:\"heading\";i:4;s:6:\"column\";i:6;s:7:\"section\";i:5;s:7:\"divider\";i:1;s:11:\"text-editor\";i:2;s:5:\"image\";i:2;s:5:\"video\";i:1;s:6:\"button\";i:1;}'),(610,102,'_elementor_template_type','post'),(611,102,'_elementor_version','2.6.8'),(612,102,'_elementor_pro_version','2.6.5'),(613,102,'_wp_page_template','default'),(614,102,'_elementor_data','[{\"id\":\"55396f27\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":50,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Theatrical_Display_V003C.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_range\":\"viewport\",\"motion_fx_motion_fx_scrolling\":\"yes\",\"layout\":\"full_width\"},\"elements\":[{\"id\":\"59493b21\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"b700365\",\"elType\":\"widget\",\"settings\":{\"title\":\"#WHAT\'S COOL\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7df48509\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\"},\"elements\":[{\"id\":\"1147078d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6b1f2df0\",\"elType\":\"widget\",\"settings\":{\"title\":\"LIVING STANDEES HAUNTING THEATERS\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.3,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"442ffb\",\"elType\":\"widget\",\"settings\":{\"title\":\"ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS\",\"header_size\":\"h5\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86cff8b\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a680ae8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h1>INSIDIOUS - THE LAST KEY<\\/h1>\\n<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"be59fa3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"no\"},\"elements\":[{\"id\":\"e36fe5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"d4d2039\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2.jpg\",\"id\":88},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"18\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3c9b758\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"79e122a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2-1.jpg\",\"id\":87},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"18\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3dc9df5\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"_margin\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"start\":0},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b747fda\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":700},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":900},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7eab781\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"43661634\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our company is a collective of amazing people striving to build delightful products.\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.4},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70cc6d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.<\\/p>\",\"align\":\"center\",\"text_color\":\"#686868\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"615dfb3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1000},\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"6414755f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3bb26eed\",\"elType\":\"widget\",\"settings\":{\"text\":\"Read More\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3},\"button_text_color\":\"#ffffff\",\"background_color\":\"rgba(0,0,0,0)\",\"hover_color\":\"#00ce1b\",\"button_hover_border_color\":\"#00ce1b\",\"hover_animation\":\"grow\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(615,102,'_elementor_edit_mode','builder'),(616,102,'_elementor_elements_usage','a:8:{s:7:\"heading\";i:4;s:6:\"column\";i:6;s:7:\"section\";i:5;s:7:\"divider\";i:1;s:11:\"text-editor\";i:2;s:5:\"image\";i:2;s:5:\"video\";i:1;s:6:\"button\";i:1;}'),(617,103,'_elementor_template_type','post'),(618,103,'_elementor_version','2.6.8'),(619,103,'_elementor_pro_version','2.6.5'),(620,103,'_wp_page_template','default'),(621,103,'_elementor_data','[{\"id\":\"55396f27\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":50,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Theatrical_Display_V003C.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_range\":\"viewport\",\"motion_fx_motion_fx_scrolling\":\"yes\",\"layout\":\"full_width\"},\"elements\":[{\"id\":\"59493b21\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"b700365\",\"elType\":\"widget\",\"settings\":{\"title\":\"#WHAT\'S COOL\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"custom_css\":\"orange-box-heading { \\n    display: none;}\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7df48509\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\"},\"elements\":[{\"id\":\"1147078d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6b1f2df0\",\"elType\":\"widget\",\"settings\":{\"title\":\"LIVING STANDEES HAUNTING THEATERS\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.3,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"442ffb\",\"elType\":\"widget\",\"settings\":{\"title\":\"ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS\",\"header_size\":\"h5\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86cff8b\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a680ae8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h1>INSIDIOUS - THE LAST KEY<\\/h1>\\n<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"be59fa3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"no\"},\"elements\":[{\"id\":\"e36fe5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"d4d2039\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2.jpg\",\"id\":88},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"18\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3c9b758\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"79e122a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2-1.jpg\",\"id\":87},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"18\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3dc9df5\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"_margin\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"start\":0},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b747fda\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":700},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":900},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7eab781\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"43661634\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our company is a collective of amazing people striving to build delightful products.\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.4},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70cc6d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.<\\/p>\",\"align\":\"center\",\"text_color\":\"#686868\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"615dfb3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1000},\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"6414755f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3bb26eed\",\"elType\":\"widget\",\"settings\":{\"text\":\"Read More\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3},\"button_text_color\":\"#ffffff\",\"background_color\":\"rgba(0,0,0,0)\",\"hover_color\":\"#00ce1b\",\"button_hover_border_color\":\"#00ce1b\",\"hover_animation\":\"grow\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(622,103,'_elementor_edit_mode','builder'),(623,103,'_elementor_elements_usage','a:8:{s:7:\"heading\";i:4;s:6:\"column\";i:6;s:7:\"section\";i:5;s:7:\"divider\";i:1;s:11:\"text-editor\";i:2;s:5:\"image\";i:2;s:5:\"video\";i:1;s:6:\"button\";i:1;}'),(624,104,'_elementor_template_type','post'),(625,104,'_elementor_version','2.6.8'),(626,104,'_elementor_pro_version','2.6.5'),(627,104,'_wp_page_template','default'),(628,104,'_elementor_data','[{\"id\":\"55396f27\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":50,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Theatrical_Display_V003C.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_range\":\"viewport\",\"motion_fx_motion_fx_scrolling\":\"yes\",\"layout\":\"full_width\"},\"elements\":[{\"id\":\"59493b21\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"b700365\",\"elType\":\"widget\",\"settings\":{\"title\":\"#WHAT\'S COOL\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"custom_css\":\"orange-box-heading { \\n    display: none !important;}\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7df48509\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\"},\"elements\":[{\"id\":\"1147078d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6b1f2df0\",\"elType\":\"widget\",\"settings\":{\"title\":\"LIVING STANDEES HAUNTING THEATERS\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.3,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"442ffb\",\"elType\":\"widget\",\"settings\":{\"title\":\"ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS\",\"header_size\":\"h5\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86cff8b\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a680ae8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h1>INSIDIOUS - THE LAST KEY<\\/h1>\\n<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"be59fa3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"no\"},\"elements\":[{\"id\":\"e36fe5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"d4d2039\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2.jpg\",\"id\":88},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"18\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3c9b758\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"79e122a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2-1.jpg\",\"id\":87},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"18\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3dc9df5\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"_margin\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"start\":0},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b747fda\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":700},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":900},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7eab781\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"43661634\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our company is a collective of amazing people striving to build delightful products.\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.4},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70cc6d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.<\\/p>\",\"align\":\"center\",\"text_color\":\"#686868\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"615dfb3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1000},\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"6414755f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3bb26eed\",\"elType\":\"widget\",\"settings\":{\"text\":\"Read More\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3},\"button_text_color\":\"#ffffff\",\"background_color\":\"rgba(0,0,0,0)\",\"hover_color\":\"#00ce1b\",\"button_hover_border_color\":\"#00ce1b\",\"hover_animation\":\"grow\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(629,104,'_elementor_edit_mode','builder'),(630,104,'_elementor_elements_usage','a:8:{s:7:\"heading\";i:4;s:6:\"column\";i:6;s:7:\"section\";i:5;s:7:\"divider\";i:1;s:11:\"text-editor\";i:2;s:5:\"image\";i:2;s:5:\"video\";i:1;s:6:\"button\";i:1;}'),(653,107,'_elementor_elements_usage','a:8:{s:7:\"heading\";i:4;s:6:\"column\";i:6;s:7:\"section\";i:5;s:7:\"divider\";i:1;s:11:\"text-editor\";i:2;s:5:\"image\";i:2;s:5:\"video\";i:1;s:6:\"button\";i:1;}'),(632,105,'_elementor_template_type','post'),(633,105,'_elementor_version','2.6.8'),(634,105,'_elementor_pro_version','2.6.5'),(635,105,'_wp_page_template','default'),(636,105,'_elementor_data','[{\"id\":\"55396f27\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":50,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Theatrical_Display_V003C.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_range\":\"viewport\",\"motion_fx_motion_fx_scrolling\":\"yes\",\"layout\":\"full_width\"},\"elements\":[{\"id\":\"59493b21\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"b700365\",\"elType\":\"widget\",\"settings\":{\"title\":\"#WHAT\'S COOL\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"custom_css\":\".orange-box-heading { \\n    display: none !important;}\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7df48509\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\"},\"elements\":[{\"id\":\"1147078d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6b1f2df0\",\"elType\":\"widget\",\"settings\":{\"title\":\"LIVING STANDEES HAUNTING THEATERS\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.3,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"442ffb\",\"elType\":\"widget\",\"settings\":{\"title\":\"ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS\",\"header_size\":\"h5\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86cff8b\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a680ae8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h1>INSIDIOUS - THE LAST KEY<\\/h1>\\n<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"be59fa3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"no\"},\"elements\":[{\"id\":\"e36fe5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"d4d2039\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2.jpg\",\"id\":88},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"18\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3c9b758\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"79e122a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2-1.jpg\",\"id\":87},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"18\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3dc9df5\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"_margin\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"start\":0},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b747fda\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":700},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":900},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7eab781\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"43661634\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our company is a collective of amazing people striving to build delightful products.\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.4},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70cc6d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.<\\/p>\",\"align\":\"center\",\"text_color\":\"#686868\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"615dfb3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1000},\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"6414755f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3bb26eed\",\"elType\":\"widget\",\"settings\":{\"text\":\"Read More\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3},\"button_text_color\":\"#ffffff\",\"background_color\":\"rgba(0,0,0,0)\",\"hover_color\":\"#00ce1b\",\"button_hover_border_color\":\"#00ce1b\",\"hover_animation\":\"grow\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(637,105,'_elementor_edit_mode','builder'),(638,105,'_elementor_elements_usage','a:8:{s:7:\"heading\";i:4;s:6:\"column\";i:6;s:7:\"section\";i:5;s:7:\"divider\";i:1;s:11:\"text-editor\";i:2;s:5:\"image\";i:2;s:5:\"video\";i:1;s:6:\"button\";i:1;}'),(639,105,'_elementor_css','a:5:{s:4:\"time\";i:1568421985;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:1:{i:0;s:0:\"\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(652,107,'_elementor_edit_mode','builder'),(651,107,'_elementor_data','[{\"id\":\"55396f27\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":50,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Theatrical_Display_V003C.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_range\":\"viewport\",\"motion_fx_motion_fx_scrolling\":\"yes\",\"layout\":\"full_width\"},\"elements\":[{\"id\":\"59493b21\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"b700365\",\"elType\":\"widget\",\"settings\":{\"title\":\"#WHAT\'S COOL\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"custom_css\":\".orange-box-heading { \\n}\",\"_css_classes\":\"orange-box-heading\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7df48509\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\"},\"elements\":[{\"id\":\"1147078d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6b1f2df0\",\"elType\":\"widget\",\"settings\":{\"title\":\"LIVING STANDEES HAUNTING THEATERS\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.3,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"442ffb\",\"elType\":\"widget\",\"settings\":{\"title\":\"ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS\",\"header_size\":\"h5\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86cff8b\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a680ae8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h1>INSIDIOUS - THE LAST KEY<\\/h1>\\n<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"be59fa3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"no\"},\"elements\":[{\"id\":\"e36fe5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"d4d2039\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2.jpg\",\"id\":88},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"18\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3c9b758\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"79e122a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2-1.jpg\",\"id\":87},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"18\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3dc9df5\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"_margin\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"start\":0},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b747fda\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":700},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":900},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7eab781\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"43661634\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our company is a collective of amazing people striving to build delightful products.\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.4},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70cc6d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.<\\/p>\",\"align\":\"center\",\"text_color\":\"#686868\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"615dfb3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1000},\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"6414755f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3bb26eed\",\"elType\":\"widget\",\"settings\":{\"text\":\"Read More\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3},\"button_text_color\":\"#ffffff\",\"background_color\":\"rgba(0,0,0,0)\",\"hover_color\":\"#00ce1b\",\"button_hover_border_color\":\"#00ce1b\",\"hover_animation\":\"grow\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(650,107,'_wp_page_template','default'),(654,108,'_elementor_template_type','post'),(647,107,'_elementor_template_type','post'),(648,107,'_elementor_version','2.6.8'),(649,107,'_elementor_pro_version','2.6.5'),(655,108,'_elementor_version','2.6.8'),(656,108,'_elementor_pro_version','2.6.5'),(657,108,'_wp_page_template','default'),(658,108,'_elementor_data','[{\"id\":\"55396f27\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":50,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Theatrical_Display_V003C.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_range\":\"viewport\",\"motion_fx_motion_fx_scrolling\":\"yes\",\"layout\":\"full_width\"},\"elements\":[{\"id\":\"59493b21\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"b700365\",\"elType\":\"widget\",\"settings\":{\"title\":\"#WHAT\'S COOL\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":true},\"_background_background\":\"classic\",\"custom_css\":\".orange-box-heading { \\n}\",\"_css_classes\":\"orange-box-heading\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7df48509\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\"},\"elements\":[{\"id\":\"1147078d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6b1f2df0\",\"elType\":\"widget\",\"settings\":{\"title\":\"LIVING STANDEES HAUNTING THEATERS\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.3,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"442ffb\",\"elType\":\"widget\",\"settings\":{\"title\":\"ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS\",\"header_size\":\"h5\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86cff8b\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a680ae8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h1>INSIDIOUS - THE LAST KEY<\\/h1>\\n<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"be59fa3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"no\"},\"elements\":[{\"id\":\"e36fe5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"d4d2039\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2.jpg\",\"id\":88},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"18\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3c9b758\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"79e122a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2-1.jpg\",\"id\":87},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"18\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3dc9df5\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"_margin\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"start\":0},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b747fda\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":700},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":900},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7eab781\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"43661634\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our company is a collective of amazing people striving to build delightful products.\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.4},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70cc6d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.<\\/p>\",\"align\":\"center\",\"text_color\":\"#686868\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"615dfb3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1000},\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"6414755f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3bb26eed\",\"elType\":\"widget\",\"settings\":{\"text\":\"Read More\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3},\"button_text_color\":\"#ffffff\",\"background_color\":\"rgba(0,0,0,0)\",\"hover_color\":\"#00ce1b\",\"button_hover_border_color\":\"#00ce1b\",\"hover_animation\":\"grow\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(659,108,'_elementor_edit_mode','builder'),(660,108,'_elementor_elements_usage','a:8:{s:7:\"heading\";i:4;s:6:\"column\";i:6;s:7:\"section\";i:5;s:7:\"divider\";i:1;s:11:\"text-editor\";i:2;s:5:\"image\";i:2;s:5:\"video\";i:1;s:6:\"button\";i:1;}'),(673,110,'_elementor_edit_mode','builder'),(671,110,'_wp_page_template','default'),(672,110,'_elementor_data','[{\"id\":\"55396f27\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":50,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Theatrical_Display_V003C.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_range\":\"viewport\",\"motion_fx_motion_fx_scrolling\":\"yes\",\"layout\":\"full_width\"},\"elements\":[{\"id\":\"59493b21\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"b700365\",\"elType\":\"widget\",\"settings\":{\"title\":\"#WHAT\'S COOL\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#23a455\",\"custom_css\":\".orange-box-heading { \\nheight: 200px;\\nwidth: 35px;}\",\"_css_classes\":\"orange-box-heading\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7df48509\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\"},\"elements\":[{\"id\":\"1147078d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6b1f2df0\",\"elType\":\"widget\",\"settings\":{\"title\":\"LIVING STANDEES HAUNTING THEATERS\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.3,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"442ffb\",\"elType\":\"widget\",\"settings\":{\"title\":\"ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS\",\"header_size\":\"h5\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86cff8b\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a680ae8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h1>INSIDIOUS - THE LAST KEY<\\/h1>\\n<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"be59fa3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"no\"},\"elements\":[{\"id\":\"e36fe5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"d4d2039\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2.jpg\",\"id\":88},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"18\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3c9b758\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"79e122a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2-1.jpg\",\"id\":87},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"18\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3dc9df5\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"_margin\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"start\":0},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b747fda\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":700},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":900},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7eab781\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"43661634\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our company is a collective of amazing people striving to build delightful products.\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.4},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70cc6d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.<\\/p>\",\"align\":\"center\",\"text_color\":\"#686868\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"615dfb3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1000},\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"6414755f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3bb26eed\",\"elType\":\"widget\",\"settings\":{\"text\":\"Read More\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3},\"button_text_color\":\"#ffffff\",\"background_color\":\"rgba(0,0,0,0)\",\"hover_color\":\"#00ce1b\",\"button_hover_border_color\":\"#00ce1b\",\"hover_animation\":\"grow\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(682,112,'_elementor_template_type','post'),(668,110,'_elementor_template_type','post'),(669,110,'_elementor_version','2.6.8'),(670,110,'_elementor_pro_version','2.6.5'),(674,110,'_elementor_elements_usage','a:8:{s:7:\"heading\";i:4;s:6:\"column\";i:6;s:7:\"section\";i:5;s:7:\"divider\";i:1;s:11:\"text-editor\";i:2;s:5:\"image\";i:2;s:5:\"video\";i:1;s:6:\"button\";i:1;}'),(675,111,'_elementor_template_type','post'),(676,111,'_elementor_version','2.6.8'),(677,111,'_elementor_pro_version','2.6.5'),(678,111,'_wp_page_template','default'),(679,111,'_elementor_data','[{\"id\":\"55396f27\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":50,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Theatrical_Display_V003C.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_range\":\"viewport\",\"motion_fx_motion_fx_scrolling\":\"yes\",\"layout\":\"full_width\"},\"elements\":[{\"id\":\"59493b21\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"b700365\",\"elType\":\"widget\",\"settings\":{\"title\":\"#WHAT\'S COOL\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#23a455\",\"custom_css\":\".orange-box-heading h2{ \\nbackground-color: blue;}\",\"_css_classes\":\"orange-box-heading\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7df48509\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\"},\"elements\":[{\"id\":\"1147078d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6b1f2df0\",\"elType\":\"widget\",\"settings\":{\"title\":\"LIVING STANDEES HAUNTING THEATERS\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.3,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"442ffb\",\"elType\":\"widget\",\"settings\":{\"title\":\"ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS\",\"header_size\":\"h5\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86cff8b\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a680ae8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h1>INSIDIOUS - THE LAST KEY<\\/h1>\\n<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"be59fa3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"no\"},\"elements\":[{\"id\":\"e36fe5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"d4d2039\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2.jpg\",\"id\":88},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"18\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3c9b758\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"79e122a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2-1.jpg\",\"id\":87},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"18\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3dc9df5\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"_margin\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"start\":0},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b747fda\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":700},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":900},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7eab781\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"43661634\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our company is a collective of amazing people striving to build delightful products.\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.4},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70cc6d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.<\\/p>\",\"align\":\"center\",\"text_color\":\"#686868\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"615dfb3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1000},\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"6414755f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3bb26eed\",\"elType\":\"widget\",\"settings\":{\"text\":\"Read More\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3},\"button_text_color\":\"#ffffff\",\"background_color\":\"rgba(0,0,0,0)\",\"hover_color\":\"#00ce1b\",\"button_hover_border_color\":\"#00ce1b\",\"hover_animation\":\"grow\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(680,111,'_elementor_edit_mode','builder'),(681,111,'_elementor_elements_usage','a:8:{s:7:\"heading\";i:4;s:6:\"column\";i:6;s:7:\"section\";i:5;s:7:\"divider\";i:1;s:11:\"text-editor\";i:2;s:5:\"image\";i:2;s:5:\"video\";i:1;s:6:\"button\";i:1;}'),(683,112,'_elementor_version','2.6.8'),(684,112,'_elementor_pro_version','2.6.5'),(685,112,'_wp_page_template','default'),(686,112,'_elementor_data','[{\"id\":\"55396f27\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":50,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Theatrical_Display_V003C.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_range\":\"viewport\",\"motion_fx_motion_fx_scrolling\":\"yes\",\"layout\":\"full_width\"},\"elements\":[{\"id\":\"59493b21\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"b700365\",\"elType\":\"widget\",\"settings\":{\"title\":\"#WHAT\'S COOL\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#23a455\",\"_css_classes\":\"orange-box-heading\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7df48509\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\"},\"elements\":[{\"id\":\"1147078d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6b1f2df0\",\"elType\":\"widget\",\"settings\":{\"title\":\"LIVING STANDEES HAUNTING THEATERS\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.3,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"442ffb\",\"elType\":\"widget\",\"settings\":{\"title\":\"ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS\",\"header_size\":\"h5\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86cff8b\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a680ae8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h1>INSIDIOUS - THE LAST KEY<\\/h1>\\n<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"be59fa3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"no\"},\"elements\":[{\"id\":\"e36fe5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"d4d2039\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2.jpg\",\"id\":88},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"18\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3c9b758\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"79e122a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2-1.jpg\",\"id\":87},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"18\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3dc9df5\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"_margin\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"start\":0},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b747fda\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":700},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":900},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7eab781\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"43661634\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our company is a collective of amazing people striving to build delightful products.\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.4},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70cc6d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.<\\/p>\",\"align\":\"center\",\"text_color\":\"#686868\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"615dfb3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1000},\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"6414755f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3bb26eed\",\"elType\":\"widget\",\"settings\":{\"text\":\"Read More\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3},\"button_text_color\":\"#ffffff\",\"background_color\":\"rgba(0,0,0,0)\",\"hover_color\":\"#00ce1b\",\"button_hover_border_color\":\"#00ce1b\",\"hover_animation\":\"grow\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(687,112,'_elementor_edit_mode','builder'),(688,112,'_elementor_elements_usage','a:8:{s:7:\"heading\";i:4;s:6:\"column\";i:6;s:7:\"section\";i:5;s:7:\"divider\";i:1;s:11:\"text-editor\";i:2;s:5:\"image\";i:2;s:5:\"video\";i:1;s:6:\"button\";i:1;}'),(689,113,'_elementor_template_type','post'),(690,113,'_elementor_version','2.6.8'),(691,113,'_elementor_pro_version','2.6.5'),(692,113,'_wp_page_template','default'),(693,113,'_elementor_data','[{\"id\":\"55396f27\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":50,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Theatrical_Display_V003C.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_range\":\"viewport\",\"motion_fx_motion_fx_scrolling\":\"yes\",\"layout\":\"full_width\"},\"elements\":[{\"id\":\"59493b21\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"bottom\",\"background_background\":\"classic\"},\"elements\":[{\"id\":\"b700365\",\"elType\":\"widget\",\"settings\":{\"title\":\"#WHAT\'S COOL\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#23a455\",\"_css_classes\":\"orange-box-heading\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7df48509\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\"},\"elements\":[{\"id\":\"1147078d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6b1f2df0\",\"elType\":\"widget\",\"settings\":{\"title\":\"LIVING STANDEES HAUNTING THEATERS\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.3,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"442ffb\",\"elType\":\"widget\",\"settings\":{\"title\":\"ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS\",\"header_size\":\"h5\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86cff8b\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a680ae8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h1>INSIDIOUS - THE LAST KEY<\\/h1>\\n<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"be59fa3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"no\"},\"elements\":[{\"id\":\"e36fe5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"d4d2039\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2.jpg\",\"id\":88},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"18\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3c9b758\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"79e122a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2-1.jpg\",\"id\":87},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"18\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3dc9df5\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"_margin\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"start\":0},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b747fda\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":700},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":900},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7eab781\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"43661634\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our company is a collective of amazing people striving to build delightful products.\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.4},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70cc6d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.<\\/p>\",\"align\":\"center\",\"text_color\":\"#686868\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"615dfb3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1000},\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"6414755f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3bb26eed\",\"elType\":\"widget\",\"settings\":{\"text\":\"Read More\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3},\"button_text_color\":\"#ffffff\",\"background_color\":\"rgba(0,0,0,0)\",\"hover_color\":\"#00ce1b\",\"button_hover_border_color\":\"#00ce1b\",\"hover_animation\":\"grow\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(694,113,'_elementor_edit_mode','builder'),(695,113,'_elementor_elements_usage','a:8:{s:7:\"heading\";i:4;s:6:\"column\";i:6;s:7:\"section\";i:5;s:7:\"divider\";i:1;s:11:\"text-editor\";i:2;s:5:\"image\";i:2;s:5:\"video\";i:1;s:6:\"button\";i:1;}'),(696,114,'_elementor_template_type','post'),(697,114,'_elementor_version','2.6.8'),(698,114,'_elementor_pro_version','2.6.5'),(699,114,'_wp_page_template','default'),(700,114,'_elementor_data','[{\"id\":\"55396f27\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":50,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Theatrical_Display_V003C.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_range\":\"viewport\",\"motion_fx_motion_fx_scrolling\":\"yes\",\"layout\":\"full_width\"},\"elements\":[{\"id\":\"59493b21\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"bottom\",\"background_background\":\"classic\"},\"elements\":[{\"id\":\"b700365\",\"elType\":\"widget\",\"settings\":{\"title\":\"#WHAT\'S COOL\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7df48509\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\"},\"elements\":[{\"id\":\"1147078d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6b1f2df0\",\"elType\":\"widget\",\"settings\":{\"title\":\"LIVING STANDEES HAUNTING THEATERS\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.3,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"442ffb\",\"elType\":\"widget\",\"settings\":{\"title\":\"ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS\",\"header_size\":\"h5\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86cff8b\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a680ae8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h1>INSIDIOUS - THE LAST KEY<\\/h1>\\n<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"be59fa3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"no\"},\"elements\":[{\"id\":\"e36fe5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"d4d2039\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2.jpg\",\"id\":88},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"18\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3c9b758\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"79e122a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2-1.jpg\",\"id\":87},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"18\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3dc9df5\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"_margin\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"start\":0},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b747fda\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":700},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":900},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7eab781\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"43661634\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our company is a collective of amazing people striving to build delightful products.\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.4},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70cc6d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.<\\/p>\",\"align\":\"center\",\"text_color\":\"#686868\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"615dfb3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1000},\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"6414755f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3bb26eed\",\"elType\":\"widget\",\"settings\":{\"text\":\"Read More\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3},\"button_text_color\":\"#ffffff\",\"background_color\":\"rgba(0,0,0,0)\",\"hover_color\":\"#00ce1b\",\"button_hover_border_color\":\"#00ce1b\",\"hover_animation\":\"grow\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(701,114,'_elementor_edit_mode','builder'),(702,114,'_elementor_elements_usage','a:8:{s:7:\"heading\";i:4;s:6:\"column\";i:6;s:7:\"section\";i:5;s:7:\"divider\";i:1;s:11:\"text-editor\";i:2;s:5:\"image\";i:2;s:5:\"video\";i:1;s:6:\"button\";i:1;}'),(703,115,'_elementor_template_type','post'),(704,115,'_elementor_version','2.6.8'),(705,115,'_elementor_pro_version','2.6.5'),(706,115,'_wp_page_template','default'),(707,115,'_elementor_data','[{\"id\":\"55396f27\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":50,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Theatrical_Display_V003C.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_range\":\"viewport\",\"motion_fx_motion_fx_scrolling\":\"yes\",\"layout\":\"full_width\"},\"elements\":[{\"id\":\"59493b21\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"b700365\",\"elType\":\"widget\",\"settings\":{\"title\":\"#WHAT\'S COOL\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7df48509\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\"},\"elements\":[{\"id\":\"1147078d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6b1f2df0\",\"elType\":\"widget\",\"settings\":{\"title\":\"LIVING STANDEES HAUNTING THEATERS\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.3,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"442ffb\",\"elType\":\"widget\",\"settings\":{\"title\":\"ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS\",\"header_size\":\"h5\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86cff8b\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a680ae8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h1>INSIDIOUS - THE LAST KEY<\\/h1>\\n<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"be59fa3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"no\"},\"elements\":[{\"id\":\"e36fe5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"d4d2039\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2.jpg\",\"id\":88},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"18\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3c9b758\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"79e122a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2-1.jpg\",\"id\":87},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"18\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3dc9df5\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"_margin\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"start\":0},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b747fda\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":700},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":900},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7eab781\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"43661634\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our company is a collective of amazing people striving to build delightful products.\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.4},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70cc6d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.<\\/p>\",\"align\":\"center\",\"text_color\":\"#686868\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"615dfb3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1000},\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"6414755f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3bb26eed\",\"elType\":\"widget\",\"settings\":{\"text\":\"Read More\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3},\"button_text_color\":\"#ffffff\",\"background_color\":\"rgba(0,0,0,0)\",\"hover_color\":\"#00ce1b\",\"button_hover_border_color\":\"#00ce1b\",\"hover_animation\":\"grow\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(708,115,'_elementor_edit_mode','builder'),(709,115,'_elementor_elements_usage','a:8:{s:7:\"heading\";i:4;s:6:\"column\";i:6;s:7:\"section\";i:5;s:7:\"divider\";i:1;s:11:\"text-editor\";i:2;s:5:\"image\";i:2;s:5:\"video\";i:1;s:6:\"button\";i:1;}'),(710,116,'_elementor_template_type','post'),(711,116,'_elementor_version','2.6.8'),(712,116,'_elementor_pro_version','2.6.5'),(713,116,'_wp_page_template','default'),(714,116,'_elementor_data','[{\"id\":\"55396f27\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":50,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Theatrical_Display_V003C.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_range\":\"viewport\",\"motion_fx_motion_fx_scrolling\":\"yes\",\"layout\":\"full_width\",\"column_position\":\"top\"},\"elements\":[{\"id\":\"59493b21\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b700365\",\"elType\":\"widget\",\"settings\":{\"title\":\"#WHAT\'S COOL\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7df48509\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\"},\"elements\":[{\"id\":\"1147078d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6b1f2df0\",\"elType\":\"widget\",\"settings\":{\"title\":\"LIVING STANDEES HAUNTING THEATERS\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.3,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"442ffb\",\"elType\":\"widget\",\"settings\":{\"title\":\"ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS\",\"header_size\":\"h5\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86cff8b\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a680ae8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h1>INSIDIOUS - THE LAST KEY<\\/h1>\\n<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"be59fa3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"no\"},\"elements\":[{\"id\":\"e36fe5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"d4d2039\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2.jpg\",\"id\":88},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"18\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3c9b758\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"79e122a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2-1.jpg\",\"id\":87},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"18\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3dc9df5\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"_margin\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"start\":0},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b747fda\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":700},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":900},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7eab781\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"43661634\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our company is a collective of amazing people striving to build delightful products.\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.4},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70cc6d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.<\\/p>\",\"align\":\"center\",\"text_color\":\"#686868\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"615dfb3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1000},\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"6414755f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3bb26eed\",\"elType\":\"widget\",\"settings\":{\"text\":\"Read More\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3},\"button_text_color\":\"#ffffff\",\"background_color\":\"rgba(0,0,0,0)\",\"hover_color\":\"#00ce1b\",\"button_hover_border_color\":\"#00ce1b\",\"hover_animation\":\"grow\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(715,116,'_elementor_edit_mode','builder'),(716,116,'_elementor_elements_usage','a:8:{s:7:\"heading\";i:4;s:6:\"column\";i:6;s:7:\"section\";i:5;s:7:\"divider\";i:1;s:11:\"text-editor\";i:2;s:5:\"image\";i:2;s:5:\"video\";i:1;s:6:\"button\";i:1;}'),(726,118,'_elementor_template_type','post'),(727,118,'_elementor_version','2.6.8'),(734,119,'_elementor_template_type','post'),(735,119,'_elementor_version','2.6.8'),(736,119,'_elementor_pro_version','2.6.5'),(737,119,'_wp_page_template','default'),(738,119,'_elementor_data','[{\"id\":\"55396f27\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":50,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Theatrical_Display_V003C.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_range\":\"viewport\",\"motion_fx_motion_fx_scrolling\":\"yes\",\"layout\":\"full_width\",\"column_position\":\"top\"},\"elements\":[{\"id\":\"59493b21\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b700365\",\"elType\":\"widget\",\"settings\":{\"title\":\"#WHAT\'S COOL\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"80c28d1\",\"elType\":\"section\",\"settings\":{\"structure\":\"00\"},\"elements\":[],\"isInner\":true},{\"id\":\"1de7598\",\"elType\":\"widget\",\"settings\":{\"title\":\"INNOVATIONS FROM ONDISPLAY CREATIVE\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7df48509\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\"},\"elements\":[{\"id\":\"1147078d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6b1f2df0\",\"elType\":\"widget\",\"settings\":{\"title\":\"LIVING STANDEES HAUNTING THEATERS\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.3,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"442ffb\",\"elType\":\"widget\",\"settings\":{\"title\":\"ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS\",\"header_size\":\"h5\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86cff8b\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a680ae8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h1>INSIDIOUS - THE LAST KEY<\\/h1>\\n<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"be59fa3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"no\"},\"elements\":[{\"id\":\"e36fe5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"d4d2039\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2.jpg\",\"id\":88},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"18\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3c9b758\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"79e122a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2-1.jpg\",\"id\":87},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"18\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3dc9df5\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"_margin\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"start\":0},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b747fda\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":700},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":900},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7eab781\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"43661634\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our company is a collective of amazing people striving to build delightful products.\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.4},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70cc6d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.<\\/p>\",\"align\":\"center\",\"text_color\":\"#686868\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"615dfb3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1000},\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"6414755f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3bb26eed\",\"elType\":\"widget\",\"settings\":{\"text\":\"Read More\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3},\"button_text_color\":\"#ffffff\",\"background_color\":\"rgba(0,0,0,0)\",\"hover_color\":\"#00ce1b\",\"button_hover_border_color\":\"#00ce1b\",\"hover_animation\":\"grow\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"123f6d1\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"25fcf2e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(728,118,'_elementor_pro_version','2.6.5'),(729,118,'_wp_page_template','default'),(730,118,'_elementor_data','[{\"id\":\"55396f27\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":50,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Theatrical_Display_V003C.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_range\":\"viewport\",\"motion_fx_motion_fx_scrolling\":\"yes\",\"layout\":\"full_width\",\"column_position\":\"top\"},\"elements\":[{\"id\":\"59493b21\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b700365\",\"elType\":\"widget\",\"settings\":{\"title\":\"#WHAT\'S COOL\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7df48509\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\"},\"elements\":[{\"id\":\"1147078d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6b1f2df0\",\"elType\":\"widget\",\"settings\":{\"title\":\"LIVING STANDEES HAUNTING THEATERS\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.3,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"442ffb\",\"elType\":\"widget\",\"settings\":{\"title\":\"ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS\",\"header_size\":\"h5\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86cff8b\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a680ae8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h1>INSIDIOUS - THE LAST KEY<\\/h1>\\n<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"be59fa3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"no\"},\"elements\":[{\"id\":\"e36fe5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"d4d2039\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2.jpg\",\"id\":88},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"18\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3c9b758\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"79e122a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2-1.jpg\",\"id\":87},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"18\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3dc9df5\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"_margin\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"start\":0},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b747fda\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":700},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":900},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7eab781\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"43661634\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our company is a collective of amazing people striving to build delightful products.\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.4},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70cc6d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.<\\/p>\",\"align\":\"center\",\"text_color\":\"#686868\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"615dfb3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1000},\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"6414755f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3bb26eed\",\"elType\":\"widget\",\"settings\":{\"text\":\"Read More\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3},\"button_text_color\":\"#ffffff\",\"background_color\":\"rgba(0,0,0,0)\",\"hover_color\":\"#00ce1b\",\"button_hover_border_color\":\"#00ce1b\",\"hover_animation\":\"grow\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(731,118,'_elementor_edit_mode','builder'),(732,118,'_elementor_elements_usage','a:8:{s:7:\"heading\";i:4;s:6:\"column\";i:6;s:7:\"section\";i:5;s:7:\"divider\";i:1;s:11:\"text-editor\";i:2;s:5:\"image\";i:2;s:5:\"video\";i:1;s:6:\"button\";i:1;}'),(742,120,'_elementor_template_type','post'),(743,120,'_elementor_version','2.6.8'),(739,119,'_elementor_edit_mode','builder'),(740,119,'_elementor_elements_usage','a:8:{s:7:\"heading\";i:5;s:7:\"section\";i:7;s:6:\"column\";i:7;s:7:\"divider\";i:1;s:11:\"text-editor\";i:2;s:5:\"image\";i:2;s:5:\"video\";i:1;s:6:\"button\";i:1;}'),(741,119,'_elementor_css','a:5:{s:4:\"time\";i:1568423278;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:1:{i:0;s:0:\"\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(744,120,'_elementor_pro_version','2.6.5'),(745,120,'_wp_page_template','default'),(746,120,'_elementor_data','[{\"id\":\"55396f27\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":50,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Theatrical_Display_V003C.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_range\":\"viewport\",\"motion_fx_motion_fx_scrolling\":\"yes\",\"layout\":\"full_width\",\"column_position\":\"top\"},\"elements\":[{\"id\":\"59493b21\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b700365\",\"elType\":\"widget\",\"settings\":{\"title\":\"#WHAT\'S COOL\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"80c28d1\",\"elType\":\"section\",\"settings\":{\"structure\":\"00\"},\"elements\":[],\"isInner\":true},{\"id\":\"1de7598\",\"elType\":\"widget\",\"settings\":{\"title\":\"INNOVATIONS FROM ONDISPLAY CREATIVE\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7df48509\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\"},\"elements\":[{\"id\":\"1147078d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6b1f2df0\",\"elType\":\"widget\",\"settings\":{\"title\":\"LIVING STANDEES HAUNTING THEATERS\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.3,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"442ffb\",\"elType\":\"widget\",\"settings\":{\"title\":\"ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS\",\"header_size\":\"h5\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86cff8b\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a680ae8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h1>INSIDIOUS - THE LAST KEY<\\/h1>\\n<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"be59fa3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"no\"},\"elements\":[{\"id\":\"e36fe5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"d4d2039\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2.jpg\",\"id\":88},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"18\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3c9b758\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"79e122a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2-1.jpg\",\"id\":87},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"18\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3dc9df5\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"_margin\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"start\":0},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b747fda\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":700},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":900},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7eab781\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"43661634\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our company is a collective of amazing people striving to build delightful products.\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.4},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70cc6d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.<\\/p>\",\"align\":\"center\",\"text_color\":\"#686868\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"615dfb3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1000},\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"6414755f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3bb26eed\",\"elType\":\"widget\",\"settings\":{\"text\":\"Read More\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3},\"button_text_color\":\"#ffffff\",\"background_color\":\"rgba(0,0,0,0)\",\"hover_color\":\"#00ce1b\",\"button_hover_border_color\":\"#00ce1b\",\"hover_animation\":\"grow\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"123f6d1\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"25fcf2e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(747,120,'_elementor_edit_mode','builder'),(748,120,'_elementor_elements_usage','a:8:{s:7:\"heading\";i:5;s:7:\"section\";i:7;s:6:\"column\";i:7;s:7:\"divider\";i:1;s:11:\"text-editor\";i:2;s:5:\"image\";i:2;s:5:\"video\";i:1;s:6:\"button\";i:1;}'),(762,122,'_elementor_elements_usage','a:8:{s:7:\"heading\";i:5;s:7:\"section\";i:7;s:6:\"column\";i:7;s:7:\"divider\";i:1;s:11:\"text-editor\";i:2;s:5:\"image\";i:2;s:5:\"video\";i:1;s:6:\"button\";i:1;}'),(761,122,'_elementor_edit_mode','builder'),(760,122,'_elementor_data','[{\"id\":\"55396f27\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":50,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Theatrical_Display_V003C.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_range\":\"viewport\",\"motion_fx_motion_fx_scrolling\":\"yes\",\"layout\":\"full_width\",\"column_position\":\"top\"},\"elements\":[{\"id\":\"59493b21\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b700365\",\"elType\":\"widget\",\"settings\":{\"title\":\"#WHAT\'S COOL\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"80c28d1\",\"elType\":\"section\",\"settings\":{\"structure\":\"00\"},\"elements\":[],\"isInner\":true},{\"id\":\"1de7598\",\"elType\":\"widget\",\"settings\":{\"title\":\"INNOVATIONS FROM ONDISPLAY CREATIVE\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7df48509\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\"},\"elements\":[{\"id\":\"1147078d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6b1f2df0\",\"elType\":\"widget\",\"settings\":{\"title\":\"LIVING STANDEES HAUNTING THEATERS\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":27},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.3,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"442ffb\",\"elType\":\"widget\",\"settings\":{\"title\":\"ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS\",\"header_size\":\"h5\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86cff8b\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a680ae8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>INSIDIOUS - THE LAST KEY<\\/h2>\\nMovie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!\",\"align\":\"left\",\"typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"be59fa3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"no\"},\"elements\":[{\"id\":\"e36fe5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"d4d2039\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2.jpg\",\"id\":88},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"18\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3c9b758\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"79e122a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2-1.jpg\",\"id\":87},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"18\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3dc9df5\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"_margin\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"start\":0},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b747fda\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":700},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":900},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7eab781\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"43661634\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our company is a collective of amazing people striving to build delightful products.\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.4},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70cc6d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.<\\/p>\",\"align\":\"center\",\"text_color\":\"#686868\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"615dfb3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1000},\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"6414755f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3bb26eed\",\"elType\":\"widget\",\"settings\":{\"text\":\"Read More\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3},\"button_text_color\":\"#ffffff\",\"background_color\":\"rgba(0,0,0,0)\",\"hover_color\":\"#00ce1b\",\"button_hover_border_color\":\"#00ce1b\",\"hover_animation\":\"grow\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"123f6d1\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"25fcf2e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(759,122,'_wp_page_template','default'),(756,122,'_elementor_template_type','post'),(757,122,'_elementor_version','2.6.8'),(758,122,'_elementor_pro_version','2.6.5'),(772,124,'_elementor_template_type','post'),(773,124,'_elementor_version','2.6.8'),(764,123,'_elementor_template_type','post'),(765,123,'_elementor_version','2.6.8'),(766,123,'_elementor_pro_version','2.6.5'),(767,123,'_wp_page_template','default'),(768,123,'_elementor_data','[{\"id\":\"55396f27\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":50,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Theatrical_Display_V003C.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_range\":\"viewport\",\"motion_fx_motion_fx_scrolling\":\"yes\",\"layout\":\"full_width\",\"column_position\":\"top\"},\"elements\":[{\"id\":\"59493b21\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b700365\",\"elType\":\"widget\",\"settings\":{\"title\":\"#WHAT\'S COOL\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"80c28d1\",\"elType\":\"section\",\"settings\":{\"structure\":\"00\"},\"elements\":[],\"isInner\":true},{\"id\":\"1de7598\",\"elType\":\"widget\",\"settings\":{\"title\":\"INNOVATIONS FROM ONDISPLAY CREATIVE\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7df48509\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\"},\"elements\":[{\"id\":\"1147078d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6b1f2df0\",\"elType\":\"widget\",\"settings\":{\"title\":\"LIVING STANDEES HAUNTING THEATERS\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":27},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.3,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"442ffb\",\"elType\":\"widget\",\"settings\":{\"title\":\"ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS\",\"header_size\":\"h5\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86cff8b\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"529dbcc\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS - THE LAST KEY\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.3},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a680ae8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"be59fa3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"no\"},\"elements\":[{\"id\":\"e36fe5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"d4d2039\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2.jpg\",\"id\":88},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"18\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3c9b758\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"79e122a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2-1.jpg\",\"id\":87},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"18\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3dc9df5\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"_margin\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"start\":0},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b747fda\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":700},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":900},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7eab781\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"43661634\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our company is a collective of amazing people striving to build delightful products.\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.4},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70cc6d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.<\\/p>\",\"align\":\"center\",\"text_color\":\"#686868\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"615dfb3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1000},\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"6414755f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3bb26eed\",\"elType\":\"widget\",\"settings\":{\"text\":\"Read More\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3},\"button_text_color\":\"#ffffff\",\"background_color\":\"rgba(0,0,0,0)\",\"hover_color\":\"#00ce1b\",\"button_hover_border_color\":\"#00ce1b\",\"hover_animation\":\"grow\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"123f6d1\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"25fcf2e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(769,123,'_elementor_edit_mode','builder'),(770,123,'_elementor_elements_usage','a:8:{s:7:\"heading\";i:6;s:7:\"section\";i:7;s:6:\"column\";i:7;s:7:\"divider\";i:1;s:11:\"text-editor\";i:2;s:5:\"image\";i:2;s:5:\"video\";i:1;s:6:\"button\";i:1;}'),(771,123,'_elementor_css','a:5:{s:4:\"time\";i:1568425182;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:1:{i:0;s:0:\"\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(774,124,'_elementor_pro_version','2.6.5'),(775,124,'_wp_page_template','default'),(776,124,'_elementor_data','[{\"id\":\"55396f27\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":50,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Theatrical_Display_V003C.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_range\":\"viewport\",\"motion_fx_motion_fx_scrolling\":\"yes\",\"layout\":\"full_width\",\"column_position\":\"top\"},\"elements\":[{\"id\":\"59493b21\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b700365\",\"elType\":\"widget\",\"settings\":{\"title\":\"#WHAT\'S COOL\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"80c28d1\",\"elType\":\"section\",\"settings\":{\"structure\":\"00\"},\"elements\":[],\"isInner\":true},{\"id\":\"1de7598\",\"elType\":\"widget\",\"settings\":{\"title\":\"INNOVATIONS FROM ONDISPLAY CREATIVE\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7df48509\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\"},\"elements\":[{\"id\":\"1147078d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6b1f2df0\",\"elType\":\"widget\",\"settings\":{\"title\":\"LIVING STANDEES HAUNTING THEATERS\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":27},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.3,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"442ffb\",\"elType\":\"widget\",\"settings\":{\"title\":\"ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS\",\"header_size\":\"h5\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86cff8b\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"529dbcc\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS - THE LAST KEY\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.3},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a680ae8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"be59fa3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"no\"},\"elements\":[{\"id\":\"e36fe5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"d4d2039\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2.jpg\",\"id\":88},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"18\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3c9b758\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"79e122a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2-1.jpg\",\"id\":87},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"18\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3dc9df5\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"_margin\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"start\":0},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b747fda\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":700},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":900},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7eab781\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"43661634\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our company is a collective of amazing people striving to build delightful products.\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.4},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70cc6d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.<\\/p>\",\"align\":\"center\",\"text_color\":\"#686868\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"615dfb3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1000},\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"6414755f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3bb26eed\",\"elType\":\"widget\",\"settings\":{\"text\":\"Read More\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3},\"button_text_color\":\"#ffffff\",\"background_color\":\"rgba(0,0,0,0)\",\"hover_color\":\"#00ce1b\",\"button_hover_border_color\":\"#00ce1b\",\"hover_animation\":\"grow\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"123f6d1\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"25fcf2e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(777,124,'_elementor_edit_mode','builder'),(778,124,'_elementor_elements_usage','a:8:{s:7:\"heading\";i:6;s:7:\"section\";i:7;s:6:\"column\";i:7;s:7:\"divider\";i:1;s:11:\"text-editor\";i:2;s:5:\"image\";i:2;s:5:\"video\";i:1;s:6:\"button\";i:1;}'),(955,156,'_elementor_version','2.6.8'),(956,156,'_elementor_pro_version','2.6.5'),(780,125,'_elementor_template_type','post'),(781,125,'_elementor_version','2.6.8'),(782,125,'_elementor_pro_version','2.6.5'),(783,125,'_wp_page_template','default'),(784,125,'_elementor_data','[{\"id\":\"55396f27\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":50,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Theatrical_Display_V003C.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_range\":\"viewport\",\"motion_fx_motion_fx_scrolling\":\"yes\",\"layout\":\"full_width\",\"column_position\":\"top\"},\"elements\":[{\"id\":\"59493b21\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b700365\",\"elType\":\"widget\",\"settings\":{\"title\":\"#WHAT\'S COOL\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"80c28d1\",\"elType\":\"section\",\"settings\":{\"structure\":\"00\"},\"elements\":[{\"id\":\"da9c6bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"9ed4503\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1de7598\",\"elType\":\"widget\",\"settings\":{\"title\":\"INNOVATIONS FROM ONDISPLAY CREATIVE\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7df48509\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\"},\"elements\":[{\"id\":\"1147078d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6b1f2df0\",\"elType\":\"widget\",\"settings\":{\"title\":\"LIVING STANDEES HAUNTING THEATERS\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":27},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.3,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"442ffb\",\"elType\":\"widget\",\"settings\":{\"title\":\"ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS\",\"header_size\":\"h5\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86cff8b\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"529dbcc\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS - THE LAST KEY\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.3},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a680ae8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"be59fa3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"no\"},\"elements\":[{\"id\":\"e36fe5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"d4d2039\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2.jpg\",\"id\":88},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"18\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3c9b758\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"79e122a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2-1.jpg\",\"id\":87},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"18\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3dc9df5\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"_margin\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"start\":0},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b747fda\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":700},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":900},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7eab781\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"43661634\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our company is a collective of amazing people striving to build delightful products.\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.4},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70cc6d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.<\\/p>\",\"align\":\"center\",\"text_color\":\"#686868\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"615dfb3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1000},\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"6414755f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3bb26eed\",\"elType\":\"widget\",\"settings\":{\"text\":\"Read More\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3},\"button_text_color\":\"#ffffff\",\"background_color\":\"rgba(0,0,0,0)\",\"hover_color\":\"#00ce1b\",\"button_hover_border_color\":\"#00ce1b\",\"hover_animation\":\"grow\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"123f6d1\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"25fcf2e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(785,125,'_elementor_edit_mode','builder'),(786,125,'_elementor_elements_usage','a:9:{s:7:\"heading\";i:6;s:6:\"spacer\";i:1;s:6:\"column\";i:8;s:7:\"section\";i:7;s:7:\"divider\";i:1;s:11:\"text-editor\";i:2;s:5:\"image\";i:2;s:5:\"video\";i:1;s:6:\"button\";i:1;}'),(787,125,'_elementor_css','a:5:{s:4:\"time\";i:1568426068;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:1:{i:0;s:0:\"\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(789,126,'_elementor_template_type','post'),(790,126,'_elementor_version','2.6.8'),(791,126,'_elementor_pro_version','2.6.5'),(792,126,'_wp_page_template','default'),(793,126,'_elementor_data','[{\"id\":\"55396f27\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":50,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Theatrical_Display_V003C.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_range\":\"viewport\",\"motion_fx_motion_fx_scrolling\":\"yes\",\"layout\":\"full_width\",\"column_position\":\"top\"},\"elements\":[{\"id\":\"59493b21\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b700365\",\"elType\":\"widget\",\"settings\":{\"title\":\"#WHAT\'S COOL\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"80c28d1\",\"elType\":\"section\",\"settings\":{\"structure\":\"00\"},\"elements\":[{\"id\":\"da9c6bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"9ed4503\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1de7598\",\"elType\":\"widget\",\"settings\":{\"title\":\"INNOVATIONS FROM ONDISPLAY CREATIVE\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7df48509\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\"},\"elements\":[{\"id\":\"1147078d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6b1f2df0\",\"elType\":\"widget\",\"settings\":{\"title\":\"LIVING STANDEES HAUNTING THEATERS\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":27},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.3,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"442ffb\",\"elType\":\"widget\",\"settings\":{\"title\":\"ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS\",\"header_size\":\"h5\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86cff8b\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"529dbcc\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS - THE LAST KEY\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.3},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a680ae8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"be59fa3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"no\"},\"elements\":[{\"id\":\"e36fe5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"d4d2039\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2.jpg\",\"id\":88},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"18\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3c9b758\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"79e122a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2-1.jpg\",\"id\":87},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"18\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3dc9df5\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"_margin\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"start\":0},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b747fda\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":700},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":900},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7eab781\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"43661634\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our company is a collective of amazing people striving to build delightful products.\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.4},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70cc6d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.<\\/p>\",\"align\":\"center\",\"text_color\":\"#686868\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"615dfb3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1000},\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"6414755f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3bb26eed\",\"elType\":\"widget\",\"settings\":{\"text\":\"Read More\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3},\"button_text_color\":\"#ffffff\",\"background_color\":\"rgba(0,0,0,0)\",\"hover_color\":\"#00ce1b\",\"button_hover_border_color\":\"#00ce1b\",\"hover_animation\":\"grow\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"123f6d1\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"25fcf2e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(794,126,'_elementor_edit_mode','builder'),(795,126,'_elementor_elements_usage','a:9:{s:7:\"heading\";i:6;s:6:\"spacer\";i:1;s:6:\"column\";i:8;s:7:\"section\";i:7;s:7:\"divider\";i:1;s:11:\"text-editor\";i:2;s:5:\"image\";i:2;s:5:\"video\";i:1;s:6:\"button\";i:1;}'),(796,126,'_elementor_css','a:5:{s:4:\"time\";i:1568426193;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:1:{i:0;s:0:\"\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(919,151,'_elementor_template_type','post'),(798,127,'_elementor_template_type','post'),(799,127,'_elementor_version','2.6.8'),(800,127,'_elementor_pro_version','2.6.5'),(801,127,'_wp_page_template','default'),(802,127,'_elementor_data','[{\"id\":\"55396f27\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":50,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Theatrical_Display_V003C.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_range\":\"viewport\",\"motion_fx_motion_fx_scrolling\":\"yes\",\"layout\":\"full_width\",\"column_position\":\"top\"},\"elements\":[{\"id\":\"59493b21\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b700365\",\"elType\":\"widget\",\"settings\":{\"title\":\"#WHAT\'S COOL\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"80c28d1\",\"elType\":\"section\",\"settings\":{\"structure\":\"00\"},\"elements\":[{\"id\":\"da9c6bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"9ed4503\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1de7598\",\"elType\":\"widget\",\"settings\":{\"title\":\"INNOVATIONS FROM ONDISPLAY CREATIVE\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7df48509\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\"},\"elements\":[{\"id\":\"1147078d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6b1f2df0\",\"elType\":\"widget\",\"settings\":{\"title\":\"LIVING STANDEES HAUNTING THEATERS\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":28},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"442ffb\",\"elType\":\"widget\",\"settings\":{\"title\":\"ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS\",\"header_size\":\"h5\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86cff8b\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"529dbcc\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS - THE LAST KEY\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.3},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a680ae8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"be59fa3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"no\"},\"elements\":[{\"id\":\"e36fe5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"d4d2039\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2.jpg\",\"id\":88},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"18\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3c9b758\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"79e122a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2-1.jpg\",\"id\":87},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"18\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3dc9df5\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"_margin\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"start\":0},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b747fda\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":700},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":900},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7eab781\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"43661634\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our company is a collective of amazing people striving to build delightful products.\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.4},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70cc6d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.<\\/p>\",\"align\":\"center\",\"text_color\":\"#686868\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"615dfb3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1000},\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"6414755f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3bb26eed\",\"elType\":\"widget\",\"settings\":{\"text\":\"Read More\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3},\"button_text_color\":\"#ffffff\",\"background_color\":\"rgba(0,0,0,0)\",\"hover_color\":\"#00ce1b\",\"button_hover_border_color\":\"#00ce1b\",\"hover_animation\":\"grow\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"123f6d1\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"25fcf2e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(803,127,'_elementor_edit_mode','builder'),(804,127,'_elementor_elements_usage','a:9:{s:7:\"heading\";i:6;s:6:\"spacer\";i:1;s:6:\"column\";i:8;s:7:\"section\";i:7;s:7:\"divider\";i:1;s:11:\"text-editor\";i:2;s:5:\"image\";i:2;s:5:\"video\";i:1;s:6:\"button\";i:1;}'),(805,127,'_elementor_css','a:5:{s:4:\"time\";i:1568426214;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:1:{i:0;s:0:\"\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(807,128,'_elementor_template_type','post'),(808,128,'_elementor_version','2.6.8'),(809,128,'_elementor_pro_version','2.6.5'),(810,128,'_wp_page_template','default'),(811,128,'_elementor_data','[{\"id\":\"55396f27\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":50,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Theatrical_Display_V003C.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_range\":\"viewport\",\"motion_fx_motion_fx_scrolling\":\"yes\",\"layout\":\"full_width\",\"column_position\":\"top\"},\"elements\":[{\"id\":\"59493b21\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b700365\",\"elType\":\"widget\",\"settings\":{\"title\":\"#WHAT\'S COOL\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"80c28d1\",\"elType\":\"section\",\"settings\":{\"structure\":\"00\"},\"elements\":[{\"id\":\"da9c6bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"9ed4503\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1de7598\",\"elType\":\"widget\",\"settings\":{\"title\":\"INNOVATIONS FROM ONDISPLAY CREATIVE\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7df48509\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\"},\"elements\":[{\"id\":\"1147078d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6b1f2df0\",\"elType\":\"widget\",\"settings\":{\"title\":\"LIVING STANDEES HAUNTING THEATERS\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":28},\"typography_font_weight\":\"900\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"442ffb\",\"elType\":\"widget\",\"settings\":{\"title\":\"ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS\",\"header_size\":\"h5\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86cff8b\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"529dbcc\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS - THE LAST KEY\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.3},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a680ae8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"be59fa3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"no\"},\"elements\":[{\"id\":\"e36fe5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"d4d2039\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2.jpg\",\"id\":88},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"18\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3c9b758\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"79e122a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2-1.jpg\",\"id\":87},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"18\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3dc9df5\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"_margin\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"start\":0},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b747fda\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":700},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":900},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7eab781\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"43661634\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our company is a collective of amazing people striving to build delightful products.\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.4},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70cc6d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.<\\/p>\",\"align\":\"center\",\"text_color\":\"#686868\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"615dfb3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1000},\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"6414755f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3bb26eed\",\"elType\":\"widget\",\"settings\":{\"text\":\"Read More\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3},\"button_text_color\":\"#ffffff\",\"background_color\":\"rgba(0,0,0,0)\",\"hover_color\":\"#00ce1b\",\"button_hover_border_color\":\"#00ce1b\",\"hover_animation\":\"grow\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"123f6d1\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"25fcf2e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(812,128,'_elementor_edit_mode','builder'),(813,128,'_elementor_elements_usage','a:9:{s:7:\"heading\";i:6;s:6:\"spacer\";i:1;s:6:\"column\";i:8;s:7:\"section\";i:7;s:7:\"divider\";i:1;s:11:\"text-editor\";i:2;s:5:\"image\";i:2;s:5:\"video\";i:1;s:6:\"button\";i:1;}'),(814,128,'_elementor_css','a:5:{s:4:\"time\";i:1568426477;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:1:{i:0;s:0:\"\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(816,129,'_elementor_template_type','post'),(817,129,'_elementor_version','2.6.8'),(818,129,'_elementor_pro_version','2.6.5'),(819,129,'_wp_page_template','default'),(820,129,'_elementor_data','[{\"id\":\"55396f27\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":50,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Theatrical_Display_V003C.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_range\":\"viewport\",\"motion_fx_motion_fx_scrolling\":\"yes\",\"layout\":\"full_width\",\"column_position\":\"top\"},\"elements\":[{\"id\":\"59493b21\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b700365\",\"elType\":\"widget\",\"settings\":{\"title\":\"#WHAT\'S COOL\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"80c28d1\",\"elType\":\"section\",\"settings\":{\"structure\":\"00\"},\"elements\":[{\"id\":\"da9c6bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"9ed4503\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1de7598\",\"elType\":\"widget\",\"settings\":{\"title\":\"INNOVATIONS FROM ONDISPLAY CREATIVE\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7df48509\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\"},\"elements\":[{\"id\":\"1147078d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6b1f2df0\",\"elType\":\"widget\",\"settings\":{\"title\":\"LIVING STANDEES HAUNTING THEATERS\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":28},\"typography_font_weight\":\"900\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"442ffb\",\"elType\":\"widget\",\"settings\":{\"title\":\"ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS\",\"header_size\":\"h5\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"900\",\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86cff8b\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"529dbcc\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS - THE LAST KEY\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.3},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a680ae8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"be59fa3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"no\"},\"elements\":[{\"id\":\"e36fe5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"d4d2039\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2.jpg\",\"id\":88},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"18\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3c9b758\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"79e122a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2-1.jpg\",\"id\":87},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"18\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3dc9df5\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"_margin\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"start\":0},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b747fda\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":700},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":900},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7eab781\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"43661634\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our company is a collective of amazing people striving to build delightful products.\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.4},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70cc6d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.<\\/p>\",\"align\":\"center\",\"text_color\":\"#686868\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"615dfb3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1000},\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"6414755f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3bb26eed\",\"elType\":\"widget\",\"settings\":{\"text\":\"Read More\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3},\"button_text_color\":\"#ffffff\",\"background_color\":\"rgba(0,0,0,0)\",\"hover_color\":\"#00ce1b\",\"button_hover_border_color\":\"#00ce1b\",\"hover_animation\":\"grow\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"123f6d1\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"25fcf2e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(821,129,'_elementor_edit_mode','builder'),(822,129,'_elementor_elements_usage','a:9:{s:7:\"heading\";i:6;s:6:\"spacer\";i:1;s:6:\"column\";i:8;s:7:\"section\";i:7;s:7:\"divider\";i:1;s:11:\"text-editor\";i:2;s:5:\"image\";i:2;s:5:\"video\";i:1;s:6:\"button\";i:1;}'),(823,129,'_elementor_css','a:5:{s:4:\"time\";i:1568426559;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:1:{i:0;s:0:\"\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(850,135,'_elementor_template_type','post'),(825,130,'_elementor_template_type','post'),(826,130,'_elementor_version','2.6.8'),(827,130,'_elementor_pro_version','2.6.5'),(828,130,'_wp_page_template','default'),(829,130,'_elementor_data','[{\"id\":\"55396f27\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":50,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Theatrical_Display_V003C.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_range\":\"viewport\",\"motion_fx_motion_fx_scrolling\":\"yes\",\"layout\":\"full_width\",\"column_position\":\"top\"},\"elements\":[{\"id\":\"59493b21\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b700365\",\"elType\":\"widget\",\"settings\":{\"title\":\"#WHAT\'S COOL\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"80c28d1\",\"elType\":\"section\",\"settings\":{\"structure\":\"00\"},\"elements\":[{\"id\":\"da9c6bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"9ed4503\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"1de7598\",\"elType\":\"widget\",\"settings\":{\"title\":\"INNOVATIONS FROM ONDISPLAY CREATIVE\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7df48509\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\"},\"elements\":[{\"id\":\"1147078d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6b1f2df0\",\"elType\":\"widget\",\"settings\":{\"title\":\"LIVING STANDEES HAUNTING THEATERS\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":28},\"typography_font_weight\":\"900\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"442ffb\",\"elType\":\"widget\",\"settings\":{\"title\":\"ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS\",\"header_size\":\"h5\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"900\",\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86cff8b\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"529dbcc\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS - THE LAST KEY\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.3},\"typography_font_weight\":\"900\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a680ae8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"be59fa3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"no\"},\"elements\":[{\"id\":\"e36fe5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"d4d2039\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2.jpg\",\"id\":88},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"18\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3c9b758\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"79e122a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2-1.jpg\",\"id\":87},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"18\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3dc9df5\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"_margin\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"start\":0},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b747fda\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":700},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":900},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7eab781\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"43661634\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our company is a collective of amazing people striving to build delightful products.\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.4},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70cc6d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.<\\/p>\",\"align\":\"center\",\"text_color\":\"#686868\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"615dfb3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1000},\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"6414755f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3bb26eed\",\"elType\":\"widget\",\"settings\":{\"text\":\"Read More\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3},\"button_text_color\":\"#ffffff\",\"background_color\":\"rgba(0,0,0,0)\",\"hover_color\":\"#00ce1b\",\"button_hover_border_color\":\"#00ce1b\",\"hover_animation\":\"grow\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"123f6d1\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"25fcf2e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(830,130,'_elementor_edit_mode','builder'),(831,130,'_elementor_elements_usage','a:9:{s:7:\"heading\";i:6;s:6:\"column\";i:8;s:7:\"section\";i:7;s:6:\"spacer\";i:1;s:7:\"divider\";i:1;s:11:\"text-editor\";i:2;s:5:\"image\";i:2;s:5:\"video\";i:1;s:6:\"button\";i:1;}'),(832,130,'_elementor_css','a:5:{s:4:\"time\";i:1568426582;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:1:{i:0;s:0:\"\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(834,131,'_elementor_template_type','post'),(835,131,'_elementor_version','2.6.8'),(836,131,'_elementor_pro_version','2.6.5'),(837,131,'_wp_page_template','default'),(838,131,'_elementor_data','[{\"id\":\"55396f27\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":50,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Theatrical_Display_V003C.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_range\":\"viewport\",\"motion_fx_motion_fx_scrolling\":\"yes\",\"layout\":\"full_width\",\"column_position\":\"top\"},\"elements\":[{\"id\":\"59493b21\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b700365\",\"elType\":\"widget\",\"settings\":{\"title\":\"#WHAT\'S COOL\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"80c28d1\",\"elType\":\"section\",\"settings\":{\"structure\":\"00\"},\"elements\":[{\"id\":\"da9c6bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"9ed4503\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"1de7598\",\"elType\":\"widget\",\"settings\":{\"title\":\"INNOVATIONS FROM ONDISPLAY CREATIVE\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7df48509\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\"},\"elements\":[{\"id\":\"1147078d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6b1f2df0\",\"elType\":\"widget\",\"settings\":{\"title\":\"LIVING STANDEES HAUNTING THEATERS\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":28},\"typography_font_weight\":\"900\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"442ffb\",\"elType\":\"widget\",\"settings\":{\"title\":\"ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS\",\"header_size\":\"h5\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"900\",\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86cff8b\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"529dbcc\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS - THE LAST KEY\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.3},\"typography_font_weight\":\"900\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a680ae8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"be59fa3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"no\"},\"elements\":[{\"id\":\"e36fe5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"d4d2039\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2.jpg\",\"id\":88},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"18\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3c9b758\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"79e122a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2-1.jpg\",\"id\":87},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"18\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3dc9df5\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"_margin\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"start\":0},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b747fda\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":700},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":900},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7eab781\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"43661634\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our company is a collective of amazing people striving to build delightful products.\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.4},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70cc6d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.<\\/p>\",\"align\":\"center\",\"text_color\":\"#686868\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"615dfb3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1000},\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"6414755f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3bb26eed\",\"elType\":\"widget\",\"settings\":{\"text\":\"Read More\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3},\"button_text_color\":\"#ffffff\",\"background_color\":\"rgba(0,0,0,0)\",\"hover_color\":\"#00ce1b\",\"button_hover_border_color\":\"#00ce1b\",\"hover_animation\":\"grow\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"123f6d1\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"25fcf2e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(839,131,'_elementor_edit_mode','builder'),(840,131,'_elementor_elements_usage','a:9:{s:7:\"heading\";i:6;s:6:\"column\";i:8;s:7:\"section\";i:7;s:6:\"spacer\";i:1;s:7:\"divider\";i:1;s:11:\"text-editor\";i:2;s:5:\"image\";i:2;s:5:\"video\";i:1;s:6:\"button\";i:1;}'),(841,131,'_elementor_css','a:5:{s:4:\"time\";i:1568426620;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:1:{i:0;s:0:\"\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(844,133,'_edit_lock','1568472001:1'),(845,133,'_wp_trash_meta_status','publish'),(846,133,'_wp_trash_meta_time','1568472001'),(847,134,'_edit_lock','1568472061:1'),(848,134,'_wp_trash_meta_status','publish'),(849,134,'_wp_trash_meta_time','1568472063'),(851,135,'_elementor_version','2.6.8'),(852,135,'_elementor_pro_version','2.6.5'),(853,135,'_wp_page_template','default'),(854,135,'_elementor_data','[{\"id\":\"55396f27\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":50,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Theatrical_Display_V003C.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_range\":\"viewport\",\"motion_fx_motion_fx_scrolling\":\"yes\",\"layout\":\"full_width\",\"column_position\":\"top\"},\"elements\":[{\"id\":\"59493b21\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b700365\",\"elType\":\"widget\",\"settings\":{\"title\":\"#WHAT\'S COOL\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"80c28d1\",\"elType\":\"section\",\"settings\":{\"structure\":\"00\"},\"elements\":[{\"id\":\"da9c6bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"9ed4503\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"1de7598\",\"elType\":\"widget\",\"settings\":{\"title\":\"INNOVATIONS FROM ONDISPLAY CREATIVE\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7df48509\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\"},\"elements\":[{\"id\":\"1147078d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6b1f2df0\",\"elType\":\"widget\",\"settings\":{\"title\":\"LIVING STANDEES HAUNTING THEATERS\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_font_size\":{\"unit\":\"px\",\"size\":28},\"typography_font_weight\":\"900\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"442ffb\",\"elType\":\"widget\",\"settings\":{\"title\":\"ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS\",\"header_size\":\"h5\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"900\",\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86cff8b\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"529dbcc\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS - THE LAST KEY\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.3},\"typography_font_weight\":\"900\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a680ae8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"be59fa3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"no\"},\"elements\":[{\"id\":\"e36fe5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"d4d2039\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2.jpg\",\"id\":88},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"18\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3c9b758\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"79e122a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2-1.jpg\",\"id\":87},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"18\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3dc9df5\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"_margin\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"start\":0},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b747fda\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":700},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":900},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7eab781\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"43661634\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our company is a collective of amazing people striving to build delightful products.\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.4},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70cc6d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.<\\/p>\",\"align\":\"center\",\"text_color\":\"#686868\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"615dfb3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1000},\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"6414755f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3bb26eed\",\"elType\":\"widget\",\"settings\":{\"text\":\"Read More\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3},\"button_text_color\":\"#ffffff\",\"background_color\":\"rgba(0,0,0,0)\",\"hover_color\":\"#00ce1b\",\"button_hover_border_color\":\"#00ce1b\",\"hover_animation\":\"grow\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"123f6d1\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"25fcf2e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(855,135,'_elementor_edit_mode','builder'),(856,135,'_elementor_elements_usage','a:9:{s:7:\"heading\";i:6;s:6:\"column\";i:8;s:7:\"section\";i:7;s:6:\"spacer\";i:1;s:7:\"divider\";i:1;s:11:\"text-editor\";i:2;s:5:\"image\";i:2;s:5:\"video\";i:1;s:6:\"button\";i:1;}'),(857,135,'_elementor_css','a:5:{s:4:\"time\";i:1568426620;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:1:{i:0;s:0:\"\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(859,136,'_wp_trash_meta_status','publish'),(860,136,'_wp_trash_meta_time','1568472267'),(869,73,'_wp_page_template','default'),(870,73,'_elementor_elements_usage','a:7:{s:7:\"heading\";i:2;s:6:\"column\";i:6;s:7:\"section\";i:6;s:13:\"image-gallery\";i:1;s:9:\"portfolio\";i:1;s:14:\"image-carousel\";i:1;s:8:\"nav-menu\";i:1;}'),(871,73,'_elementor_data','[{\"id\":\"45415a5\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c3ce638\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"d7be109\",\"elType\":\"widget\",\"settings\":{\"title\":\"PROXIMA NOVA h1\",\"header_size\":\"h1\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a322dec\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"5ea33df\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"9a2ea24\",\"elType\":\"widget\",\"settings\":{\"title\":\"PROXIMA NOVA h2\",\"title_color\":\"#000000\",\"typography_font_size\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8fe1bee\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"0d0052b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"f098f2c\",\"elType\":\"widget\",\"settings\":{\"wp_gallery\":[{\"id\":39,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/1c.png\"},{\"id\":40,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/1b.png\"},{\"id\":41,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/8522.png\"},{\"id\":35,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/4.png\"},{\"id\":36,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/profile2.png\"},{\"id\":37,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/divider-1.png\"},{\"id\":29,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/BG24.png\"},{\"id\":30,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/johannes-waibel-4298.png\"},{\"id\":32,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/markos-mant-228858.png\"},{\"id\":31,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/lukas-neasi-65748.png\"},{\"id\":33,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/mattias-olsson-160612.png\"},{\"id\":34,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/tomas-kodydek-7492.png\"}]},\"elements\":[],\"widgetType\":\"image-gallery\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"109d6af\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"3946b3b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"b717c62\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"portfolio\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"15f4c63\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"58a0d9e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"d802cda\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":39,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/1c.png\"},{\"id\":40,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/1b.png\"},{\"id\":33,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/mattias-olsson-160612.png\"},{\"id\":31,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/lukas-neasi-65748.png\"},{\"id\":32,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/markos-mant-228858.png\"},{\"id\":36,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/profile2.png\"}],\"caption_type\":\"title\"},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"72d2297\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"8ff4c5f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"dd29db4\",\"elType\":\"widget\",\"settings\":{\"menu\":\"main-menu\",\"align_items\":\"right\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false}],\"isInner\":false}]'),(872,139,'_elementor_edit_mode','builder'),(873,139,'_elementor_template_type','post'),(874,139,'_elementor_version','2.6.8'),(875,139,'_elementor_pro_version','2.6.5'),(876,139,'_wp_page_template','default'),(877,139,'_elementor_elements_usage','a:3:{s:7:\"heading\";i:1;s:6:\"column\";i:1;s:7:\"section\";i:1;}'),(878,139,'_elementor_data','[{\"id\":\"45415a5\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c3ce638\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"d7be109\",\"elType\":\"widget\",\"settings\":{\"title\":\"PROXIMA NOVA h1\",\"header_size\":\"h1\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]'),(879,140,'_elementor_edit_mode','builder'),(880,140,'_elementor_template_type','post'),(881,140,'_elementor_version','2.6.8'),(882,140,'_elementor_pro_version','2.6.5'),(883,140,'_wp_page_template','default'),(884,140,'_elementor_elements_usage','a:3:{s:7:\"heading\";i:2;s:6:\"column\";i:2;s:7:\"section\";i:2;}'),(885,140,'_elementor_data','[{\"id\":\"45415a5\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c3ce638\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"d7be109\",\"elType\":\"widget\",\"settings\":{\"title\":\"PROXIMA NOVA h1\",\"header_size\":\"h1\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a322dec\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"5ea33df\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"9a2ea24\",\"elType\":\"widget\",\"settings\":{\"title\":\"PROXIMA NOVA h2\",\"title_color\":\"#000000\",\"typography_font_size\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]'),(886,141,'_elementor_edit_mode','builder'),(887,141,'_elementor_template_type','post'),(888,141,'_elementor_version','2.6.8'),(889,141,'_elementor_pro_version','2.6.5'),(890,141,'_wp_page_template','default'),(891,141,'_elementor_elements_usage','a:3:{s:7:\"heading\";i:2;s:6:\"column\";i:2;s:7:\"section\";i:2;}'),(892,141,'_elementor_data','[{\"id\":\"45415a5\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c3ce638\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"d7be109\",\"elType\":\"widget\",\"settings\":{\"title\":\"PROXIMA NOVA h1\",\"header_size\":\"h1\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a322dec\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"5ea33df\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"9a2ea24\",\"elType\":\"widget\",\"settings\":{\"title\":\"PROXIMA NOVA h2\",\"title_color\":\"#000000\",\"typography_font_size\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]'),(894,142,'_wp_trash_meta_status','publish'),(895,142,'_wp_trash_meta_time','1568473822'),(896,143,'_wp_trash_meta_status','publish'),(897,143,'_wp_trash_meta_time','1568473839'),(898,144,'_wp_trash_meta_status','publish'),(899,144,'_wp_trash_meta_time','1568474270'),(900,145,'_edit_lock','1568474320:1'),(901,145,'_wp_trash_meta_status','publish'),(902,145,'_wp_trash_meta_time','1568474331'),(903,146,'_wp_trash_meta_status','publish'),(904,146,'_wp_trash_meta_time','1568474378'),(905,147,'_wp_trash_meta_status','publish'),(906,147,'_wp_trash_meta_time','1568474630'),(907,148,'_wp_trash_meta_status','publish'),(908,148,'_wp_trash_meta_time','1568474647'),(909,149,'_wp_trash_meta_status','publish'),(910,149,'_wp_trash_meta_time','1568474661'),(911,150,'_elementor_template_type','post'),(912,150,'_elementor_version','2.6.8'),(913,150,'_elementor_pro_version','2.6.5'),(914,150,'_wp_page_template','default'),(915,150,'_elementor_data','[{\"id\":\"55396f27\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":50,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Theatrical_Display_V003C.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_range\":\"viewport\",\"motion_fx_motion_fx_scrolling\":\"yes\",\"layout\":\"full_width\",\"column_position\":\"top\"},\"elements\":[{\"id\":\"59493b21\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b700365\",\"elType\":\"widget\",\"settings\":{\"title\":\"#WHAT\'S COOL\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"80c28d1\",\"elType\":\"section\",\"settings\":{\"structure\":\"00\"},\"elements\":[{\"id\":\"da9c6bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"9ed4503\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"1de7598\",\"elType\":\"widget\",\"settings\":{\"title\":\"INNOVATIONS FROM ONDISPLAY CREATIVE\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7df48509\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\"},\"elements\":[{\"id\":\"1147078d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6b1f2df0\",\"elType\":\"widget\",\"settings\":{\"title\":\"LIVING STANDEES HAUNTING THEATERS\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_font_size\":{\"unit\":\"px\",\"size\":28},\"typography_font_weight\":\"900\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"442ffb\",\"elType\":\"widget\",\"settings\":{\"title\":\"ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS\",\"header_size\":\"h5\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"900\",\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86cff8b\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"529dbcc\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS - THE LAST KEY\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.3},\"typography_font_weight\":\"900\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a680ae8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"be59fa3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"no\"},\"elements\":[{\"id\":\"e36fe5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"d4d2039\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2.jpg\",\"id\":88},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"18\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3c9b758\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"79e122a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2-1.jpg\",\"id\":87},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"18\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3dc9df5\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"_margin\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"start\":0},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b747fda\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":700},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":900},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7eab781\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"43661634\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our company is a collective of amazing people striving to build delightful products.\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.4},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70cc6d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.<\\/p>\",\"align\":\"center\",\"text_color\":\"#686868\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"615dfb3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1000},\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"6414755f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3bb26eed\",\"elType\":\"widget\",\"settings\":{\"text\":\"Read More\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3},\"button_text_color\":\"#ffffff\",\"background_color\":\"rgba(0,0,0,0)\",\"hover_color\":\"#00ce1b\",\"button_hover_border_color\":\"#00ce1b\",\"hover_animation\":\"grow\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"123f6d1\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"25fcf2e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(916,150,'_elementor_edit_mode','builder'),(917,150,'_elementor_elements_usage','a:9:{s:7:\"heading\";i:6;s:6:\"column\";i:8;s:7:\"section\";i:7;s:6:\"spacer\";i:1;s:7:\"divider\";i:1;s:11:\"text-editor\";i:2;s:5:\"image\";i:2;s:5:\"video\";i:1;s:6:\"button\";i:1;}'),(918,150,'_elementor_css','a:5:{s:4:\"time\";i:1568472190;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:1:{i:0;s:0:\"\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(920,151,'_elementor_version','2.6.8'),(921,151,'_elementor_pro_version','2.6.5'),(922,151,'_wp_page_template','default'),(923,151,'_elementor_data','[{\"id\":\"55396f27\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":50,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Theatrical_Display_V003C.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_range\":\"viewport\",\"motion_fx_motion_fx_scrolling\":\"yes\",\"layout\":\"full_width\",\"column_position\":\"top\"},\"elements\":[{\"id\":\"59493b21\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b700365\",\"elType\":\"widget\",\"settings\":{\"title\":\"#WHAT\'S COOL\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"80c28d1\",\"elType\":\"section\",\"settings\":{\"structure\":\"00\"},\"elements\":[{\"id\":\"da9c6bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"9ed4503\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"1de7598\",\"elType\":\"widget\",\"settings\":{\"title\":\"INNOVATIONS FROM ONDISPLAY CREATIVE\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7df48509\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\"},\"elements\":[{\"id\":\"1147078d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6b1f2df0\",\"elType\":\"widget\",\"settings\":{\"title\":\"LIVING STANDEES HAUNTING THEATERS\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_font_size\":{\"unit\":\"px\",\"size\":28},\"typography_font_weight\":\"900\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"442ffb\",\"elType\":\"widget\",\"settings\":{\"title\":\"ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"900\",\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86cff8b\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"529dbcc\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS - THE LAST KEY\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.3},\"typography_font_weight\":\"900\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a680ae8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"be59fa3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"no\"},\"elements\":[{\"id\":\"e36fe5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"d4d2039\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2.jpg\",\"id\":88},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"18\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3c9b758\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"79e122a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2-1.jpg\",\"id\":87},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"18\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3dc9df5\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"_margin\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"start\":0},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b747fda\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":700},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":900},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7eab781\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"43661634\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our company is a collective of amazing people striving to build delightful products.\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.4},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70cc6d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.<\\/p>\",\"align\":\"center\",\"text_color\":\"#686868\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"615dfb3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1000},\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"6414755f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3bb26eed\",\"elType\":\"widget\",\"settings\":{\"text\":\"Read More\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3},\"button_text_color\":\"#ffffff\",\"background_color\":\"rgba(0,0,0,0)\",\"hover_color\":\"#00ce1b\",\"button_hover_border_color\":\"#00ce1b\",\"hover_animation\":\"grow\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"123f6d1\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"25fcf2e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(924,151,'_elementor_edit_mode','builder'),(925,151,'_elementor_elements_usage','a:9:{s:7:\"heading\";i:6;s:6:\"column\";i:8;s:7:\"section\";i:7;s:6:\"spacer\";i:1;s:7:\"divider\";i:1;s:11:\"text-editor\";i:2;s:5:\"image\";i:2;s:5:\"video\";i:1;s:6:\"button\";i:1;}'),(926,151,'_elementor_css','a:5:{s:4:\"time\";i:1568472190;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:1:{i:0;s:0:\"\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(928,152,'_edit_lock','1568475138:1'),(929,152,'_wp_trash_meta_status','publish'),(930,152,'_wp_trash_meta_time','1568475161'),(931,153,'_elementor_template_type','post'),(932,153,'_elementor_version','2.6.8'),(933,153,'_elementor_pro_version','2.6.5'),(934,153,'_wp_page_template','default'),(935,153,'_elementor_data','[{\"id\":\"55396f27\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":50,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Theatrical_Display_V003C.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_range\":\"viewport\",\"motion_fx_motion_fx_scrolling\":\"yes\",\"layout\":\"full_width\",\"column_position\":\"top\"},\"elements\":[{\"id\":\"59493b21\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b700365\",\"elType\":\"widget\",\"settings\":{\"title\":\"#WHAT\'S COOL\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"80c28d1\",\"elType\":\"section\",\"settings\":{\"structure\":\"00\"},\"elements\":[{\"id\":\"da9c6bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"9ed4503\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"1de7598\",\"elType\":\"widget\",\"settings\":{\"title\":\"INNOVATIONS FROM ONDISPLAY CREATIVE\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7df48509\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\"},\"elements\":[{\"id\":\"1147078d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6b1f2df0\",\"elType\":\"widget\",\"settings\":{\"title\":\"LIVING STANDEES HAUNTING THEATERS\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_font_size\":{\"unit\":\"px\",\"size\":28},\"typography_font_weight\":\"900\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"442ffb\",\"elType\":\"widget\",\"settings\":{\"title\":\"ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"900\",\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86cff8b\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"529dbcc\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS - THE LAST KEY\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.3},\"typography_font_weight\":\"900\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a680ae8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"be59fa3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"no\"},\"elements\":[{\"id\":\"e36fe5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"d4d2039\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2.jpg\",\"id\":88},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"18\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3c9b758\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"79e122a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2-1.jpg\",\"id\":87},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"18\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3dc9df5\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"_margin\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"start\":0},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b747fda\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":700},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":900},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7eab781\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"43661634\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our company is a collective of amazing people striving to build delightful products.\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.4},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70cc6d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.<\\/p>\",\"align\":\"center\",\"text_color\":\"#686868\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"615dfb3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1000},\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"6414755f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3bb26eed\",\"elType\":\"widget\",\"settings\":{\"text\":\"Read More\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3},\"button_text_color\":\"#ffffff\",\"background_color\":\"rgba(0,0,0,0)\",\"hover_color\":\"#00ce1b\",\"button_hover_border_color\":\"#00ce1b\",\"hover_animation\":\"grow\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"123f6d1\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"25fcf2e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(936,153,'_elementor_edit_mode','builder'),(937,153,'_elementor_elements_usage','a:9:{s:7:\"heading\";i:6;s:6:\"column\";i:8;s:7:\"section\";i:7;s:6:\"spacer\";i:1;s:7:\"divider\";i:1;s:11:\"text-editor\";i:2;s:5:\"image\";i:2;s:5:\"video\";i:1;s:6:\"button\";i:1;}'),(938,153,'_elementor_css','a:5:{s:4:\"time\";i:1568474959;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:1:{i:0;s:0:\"\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(939,154,'_elementor_template_type','post'),(940,154,'_elementor_version','2.6.8'),(941,154,'_elementor_pro_version','2.6.5'),(942,154,'_wp_page_template','default'),(943,154,'_elementor_data','[{\"id\":\"55396f27\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":50,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Theatrical_Display_V003C.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_range\":\"viewport\",\"motion_fx_motion_fx_scrolling\":\"yes\",\"layout\":\"full_width\",\"column_position\":\"top\"},\"elements\":[{\"id\":\"59493b21\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b700365\",\"elType\":\"widget\",\"settings\":{\"title\":\"#WHAT\'S COOL\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"80c28d1\",\"elType\":\"section\",\"settings\":{\"structure\":\"00\"},\"elements\":[{\"id\":\"da9c6bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"9ed4503\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"1de7598\",\"elType\":\"widget\",\"settings\":{\"title\":\"INNOVATIONS FROM ONDISPLAY CREATIVE\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7df48509\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\"},\"elements\":[{\"id\":\"1147078d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6b1f2df0\",\"elType\":\"widget\",\"settings\":{\"title\":\"LIVING STANDEES HAUNTING THEATERS\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_font_size\":{\"unit\":\"px\",\"size\":28},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"442ffb\",\"elType\":\"widget\",\"settings\":{\"title\":\"ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86cff8b\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"529dbcc\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS - THE LAST KEY\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.3},\"typography_font_weight\":\"900\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a680ae8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"be59fa3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"no\"},\"elements\":[{\"id\":\"e36fe5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"d4d2039\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2.jpg\",\"id\":88},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"18\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3c9b758\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"79e122a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2-1.jpg\",\"id\":87},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"18\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3dc9df5\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"_margin\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"start\":0},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b747fda\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":700},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":900},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7eab781\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"43661634\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our company is a collective of amazing people striving to build delightful products.\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.4},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70cc6d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.<\\/p>\",\"align\":\"center\",\"text_color\":\"#686868\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"615dfb3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1000},\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"6414755f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3bb26eed\",\"elType\":\"widget\",\"settings\":{\"text\":\"Read More\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3},\"button_text_color\":\"#ffffff\",\"background_color\":\"rgba(0,0,0,0)\",\"hover_color\":\"#00ce1b\",\"button_hover_border_color\":\"#00ce1b\",\"hover_animation\":\"grow\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"123f6d1\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"25fcf2e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(944,154,'_elementor_edit_mode','builder'),(945,154,'_elementor_elements_usage','a:9:{s:7:\"heading\";i:6;s:6:\"column\";i:8;s:7:\"section\";i:7;s:6:\"spacer\";i:1;s:7:\"divider\";i:1;s:11:\"text-editor\";i:2;s:5:\"image\";i:2;s:5:\"video\";i:1;s:6:\"button\";i:1;}'),(946,154,'_elementor_css','a:5:{s:4:\"time\";i:1568474959;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:1:{i:0;s:0:\"\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(954,156,'_elementor_template_type','post'),(947,155,'_elementor_template_type','post'),(948,155,'_elementor_version','2.6.8'),(949,155,'_elementor_pro_version','2.6.5'),(950,155,'_wp_page_template','default'),(951,155,'_elementor_data','[{\"id\":\"55396f27\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":50,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Theatrical_Display_V003C.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_range\":\"viewport\",\"motion_fx_motion_fx_scrolling\":\"yes\",\"layout\":\"full_width\",\"column_position\":\"top\"},\"elements\":[{\"id\":\"59493b21\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b700365\",\"elType\":\"widget\",\"settings\":{\"title\":\"#WHAT\'S COOL\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"80c28d1\",\"elType\":\"section\",\"settings\":{\"structure\":\"00\"},\"elements\":[{\"id\":\"da9c6bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"9ed4503\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"1de7598\",\"elType\":\"widget\",\"settings\":{\"title\":\"INNOVATIONS FROM ONDISPLAY CREATIVE\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7df48509\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\"},\"elements\":[{\"id\":\"1147078d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6b1f2df0\",\"elType\":\"widget\",\"settings\":{\"title\":\"LIVING STANDEES HAUNTING THEATERS\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_font_size\":{\"unit\":\"px\",\"size\":28},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"442ffb\",\"elType\":\"widget\",\"settings\":{\"title\":\"ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"\"},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86cff8b\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"529dbcc\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS - THE LAST KEY\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.3},\"typography_font_weight\":\"900\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a680ae8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"404d51f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Add Your Heading Text Here\",\"header_size\":\"h3\",\"typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"be59fa3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"no\"},\"elements\":[{\"id\":\"e36fe5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"d4d2039\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2.jpg\",\"id\":88},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"18\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3c9b758\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"79e122a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2-1.jpg\",\"id\":87},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"18\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3dc9df5\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"_margin\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"start\":0},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b747fda\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":700},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":900},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7eab781\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"43661634\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our company is a collective of amazing people striving to build delightful products.\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.4},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70cc6d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.<\\/p>\",\"align\":\"center\",\"text_color\":\"#686868\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"615dfb3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1000},\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"6414755f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3bb26eed\",\"elType\":\"widget\",\"settings\":{\"text\":\"Read More\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3},\"button_text_color\":\"#ffffff\",\"background_color\":\"rgba(0,0,0,0)\",\"hover_color\":\"#00ce1b\",\"button_hover_border_color\":\"#00ce1b\",\"hover_animation\":\"grow\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"123f6d1\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"25fcf2e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(952,155,'_elementor_edit_mode','builder'),(953,155,'_elementor_elements_usage','a:9:{s:7:\"heading\";i:7;s:6:\"column\";i:8;s:7:\"section\";i:7;s:6:\"spacer\";i:1;s:7:\"divider\";i:1;s:11:\"text-editor\";i:2;s:5:\"image\";i:2;s:5:\"video\";i:1;s:6:\"button\";i:1;}'),(957,156,'_wp_page_template','default'),(958,156,'_elementor_data','[{\"id\":\"55396f27\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":50,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Theatrical_Display_V003C.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_range\":\"viewport\",\"motion_fx_motion_fx_scrolling\":\"yes\",\"layout\":\"full_width\",\"column_position\":\"top\"},\"elements\":[{\"id\":\"59493b21\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b700365\",\"elType\":\"widget\",\"settings\":{\"title\":\"#WHAT\'S COOL\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"80c28d1\",\"elType\":\"section\",\"settings\":{\"structure\":\"00\"},\"elements\":[{\"id\":\"da9c6bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"9ed4503\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"1de7598\",\"elType\":\"widget\",\"settings\":{\"title\":\"INNOVATIONS FROM ONDISPLAY CREATIVE\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7df48509\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\"},\"elements\":[{\"id\":\"1147078d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6b1f2df0\",\"elType\":\"widget\",\"settings\":{\"title\":\"LIVING STANDEES HAUNTING THEATERS\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_font_size\":{\"unit\":\"px\",\"size\":28},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"442ffb\",\"elType\":\"widget\",\"settings\":{\"title\":\"ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"\"},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86cff8b\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"529dbcc\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS - THE LAST KEY\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a680ae8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"be59fa3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"no\"},\"elements\":[{\"id\":\"e36fe5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"d4d2039\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2.jpg\",\"id\":88},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"18\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3c9b758\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"79e122a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2-1.jpg\",\"id\":87},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"18\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3dc9df5\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"_margin\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"start\":0},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b747fda\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":700},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":900},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7eab781\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"43661634\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our company is a collective of amazing people striving to build delightful products.\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.4},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70cc6d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.<\\/p>\",\"align\":\"center\",\"text_color\":\"#686868\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"615dfb3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1000},\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"6414755f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3bb26eed\",\"elType\":\"widget\",\"settings\":{\"text\":\"Read More\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3},\"button_text_color\":\"#ffffff\",\"background_color\":\"rgba(0,0,0,0)\",\"hover_color\":\"#00ce1b\",\"button_hover_border_color\":\"#00ce1b\",\"hover_animation\":\"grow\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"123f6d1\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"25fcf2e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(959,156,'_elementor_edit_mode','builder'),(960,156,'_elementor_elements_usage','a:9:{s:7:\"heading\";i:6;s:6:\"column\";i:8;s:7:\"section\";i:7;s:6:\"spacer\";i:1;s:7:\"divider\";i:1;s:11:\"text-editor\";i:2;s:5:\"image\";i:2;s:5:\"video\";i:1;s:6:\"button\";i:1;}'),(961,157,'_elementor_template_type','post'),(962,157,'_elementor_version','2.6.8'),(963,157,'_elementor_pro_version','2.6.5'),(964,157,'_wp_page_template','default'),(965,157,'_elementor_data','[{\"id\":\"55396f27\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":50,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Theatrical_Display_V003C.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_range\":\"viewport\",\"motion_fx_motion_fx_scrolling\":\"yes\",\"layout\":\"full_width\",\"column_position\":\"top\"},\"elements\":[{\"id\":\"59493b21\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b700365\",\"elType\":\"widget\",\"settings\":{\"title\":\"#WHAT\'S COOL\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"80c28d1\",\"elType\":\"section\",\"settings\":{\"structure\":\"00\"},\"elements\":[{\"id\":\"da9c6bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"9ed4503\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"1de7598\",\"elType\":\"widget\",\"settings\":{\"title\":\"INNOVATIONS FROM ONDISPLAY CREATIVE\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7df48509\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\"},\"elements\":[{\"id\":\"1147078d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6b1f2df0\",\"elType\":\"widget\",\"settings\":{\"title\":\"LIVING STANDEES HAUNTING THEATERS\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_font_size\":{\"unit\":\"px\",\"size\":28},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"442ffb\",\"elType\":\"widget\",\"settings\":{\"title\":\"ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"\"},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86cff8b\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"529dbcc\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS - THE LAST KEY\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a680ae8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"be59fa3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"no\"},\"elements\":[{\"id\":\"e36fe5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"d4d2039\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2.jpg\",\"id\":88},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"18\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3c9b758\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"79e122a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2-1.jpg\",\"id\":87},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"18\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3dc9df5\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"_margin\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"start\":0},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b747fda\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":700},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":900},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7eab781\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"43661634\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our company is a collective of amazing people striving to build delightful products.\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.4},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70cc6d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.<\\/p>\",\"align\":\"center\",\"text_color\":\"#686868\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"615dfb3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1000},\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"6414755f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3bb26eed\",\"elType\":\"widget\",\"settings\":{\"text\":\"Read More\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3},\"button_text_color\":\"#ffffff\",\"background_color\":\"rgba(0,0,0,0)\",\"hover_color\":\"#00ce1b\",\"button_hover_border_color\":\"#00ce1b\",\"hover_animation\":\"grow\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"123f6d1\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"25fcf2e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(966,157,'_elementor_edit_mode','builder'),(967,157,'_elementor_elements_usage','a:9:{s:7:\"heading\";i:6;s:6:\"column\";i:8;s:7:\"section\";i:7;s:6:\"spacer\";i:1;s:7:\"divider\";i:1;s:11:\"text-editor\";i:2;s:5:\"image\";i:2;s:5:\"video\";i:1;s:6:\"button\";i:1;}'),(987,161,'_elementor_template_type','post'),(988,161,'_elementor_version','2.6.8'),(969,158,'_wp_trash_meta_status','publish'),(970,158,'_wp_trash_meta_time','1568476220'),(971,159,'_elementor_template_type','post'),(972,159,'_elementor_version','2.6.8'),(973,159,'_elementor_pro_version','2.6.5'),(974,159,'_wp_page_template','default'),(975,159,'_elementor_data','[{\"id\":\"55396f27\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":50,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Theatrical_Display_V003C.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_range\":\"viewport\",\"motion_fx_motion_fx_scrolling\":\"yes\",\"layout\":\"full_width\",\"column_position\":\"top\"},\"elements\":[{\"id\":\"59493b21\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b700365\",\"elType\":\"widget\",\"settings\":{\"title\":\"#WHAT\'S COOL\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"80c28d1\",\"elType\":\"section\",\"settings\":{\"structure\":\"00\"},\"elements\":[{\"id\":\"da9c6bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"9ed4503\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"1de7598\",\"elType\":\"widget\",\"settings\":{\"title\":\"INNOVATIONS FROM ONDISPLAY CREATIVE\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7df48509\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\"},\"elements\":[{\"id\":\"1147078d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6b1f2df0\",\"elType\":\"widget\",\"settings\":{\"title\":\"LIVING STANDEES HAUNTING THEATERS\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_font_size\":{\"unit\":\"px\",\"size\":28},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"442ffb\",\"elType\":\"widget\",\"settings\":{\"title\":\"ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"\"},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86cff8b\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"529dbcc\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS - THE LAST KEY\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a680ae8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"be59fa3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"no\"},\"elements\":[{\"id\":\"e36fe5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"d4d2039\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2.jpg\",\"id\":88},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"18\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3c9b758\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"79e122a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2-1.jpg\",\"id\":87},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"18\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3dc9df5\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"_margin\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"start\":0},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b747fda\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":700},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":900},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7eab781\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"43661634\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our company is a collective of amazing people striving to build delightful products.\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.4},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70cc6d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.<\\/p>\",\"align\":\"center\",\"text_color\":\"#686868\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"615dfb3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1000},\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"6414755f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3bb26eed\",\"elType\":\"widget\",\"settings\":{\"text\":\"Read More\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3},\"button_text_color\":\"#ffffff\",\"background_color\":\"rgba(0,0,0,0)\",\"hover_color\":\"#00ce1b\",\"button_hover_border_color\":\"#00ce1b\",\"hover_animation\":\"grow\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"123f6d1\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"25fcf2e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(976,159,'_elementor_edit_mode','builder'),(977,159,'_elementor_elements_usage','a:9:{s:7:\"heading\";i:6;s:6:\"column\";i:8;s:7:\"section\";i:7;s:6:\"spacer\";i:1;s:7:\"divider\";i:1;s:11:\"text-editor\";i:2;s:5:\"image\";i:2;s:5:\"video\";i:1;s:6:\"button\";i:1;}'),(978,159,'_elementor_css','a:5:{s:4:\"time\";i:1568476112;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:1:{i:0;s:0:\"\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(979,160,'_elementor_template_type','post'),(980,160,'_elementor_version','2.6.8'),(981,160,'_elementor_pro_version','2.6.5'),(982,160,'_wp_page_template','default'),(983,160,'_elementor_data','[{\"id\":\"55396f27\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":50,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Theatrical_Display_V003C.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_range\":\"viewport\",\"motion_fx_motion_fx_scrolling\":\"yes\",\"layout\":\"full_width\",\"column_position\":\"top\"},\"elements\":[{\"id\":\"59493b21\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b700365\",\"elType\":\"widget\",\"settings\":{\"title\":\"#WHAT\'S COOL\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"80c28d1\",\"elType\":\"section\",\"settings\":{\"structure\":\"00\"},\"elements\":[{\"id\":\"da9c6bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"9ed4503\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"1de7598\",\"elType\":\"widget\",\"settings\":{\"title\":\"INNOVATIONS FROM ONDISPLAY CREATIVE\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7df48509\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\"},\"elements\":[{\"id\":\"1147078d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6b1f2df0\",\"elType\":\"widget\",\"settings\":{\"title\":\"LIVING STANDEES HAUNTING THEATERS\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_font_size\":{\"unit\":\"px\",\"size\":28},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"typography_typography\":\"custom\",\"header_size\":\"h1\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"442ffb\",\"elType\":\"widget\",\"settings\":{\"title\":\"ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"\"},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86cff8b\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"529dbcc\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS - THE LAST KEY\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a680ae8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"be59fa3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"no\"},\"elements\":[{\"id\":\"e36fe5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"d4d2039\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2.jpg\",\"id\":88},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"18\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3c9b758\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"79e122a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2-1.jpg\",\"id\":87},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"18\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3dc9df5\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"_margin\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"start\":0},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b747fda\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":700},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":900},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7eab781\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"43661634\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our company is a collective of amazing people striving to build delightful products.\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.4},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70cc6d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.<\\/p>\",\"align\":\"center\",\"text_color\":\"#686868\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"615dfb3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1000},\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"6414755f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3bb26eed\",\"elType\":\"widget\",\"settings\":{\"text\":\"Read More\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3},\"button_text_color\":\"#ffffff\",\"background_color\":\"rgba(0,0,0,0)\",\"hover_color\":\"#00ce1b\",\"button_hover_border_color\":\"#00ce1b\",\"hover_animation\":\"grow\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"123f6d1\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"25fcf2e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(984,160,'_elementor_edit_mode','builder'),(985,160,'_elementor_elements_usage','a:9:{s:7:\"heading\";i:6;s:6:\"column\";i:8;s:7:\"section\";i:7;s:6:\"spacer\";i:1;s:7:\"divider\";i:1;s:11:\"text-editor\";i:2;s:5:\"image\";i:2;s:5:\"video\";i:1;s:6:\"button\";i:1;}'),(986,160,'_elementor_css','a:5:{s:4:\"time\";i:1568476112;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:1:{i:0;s:0:\"\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(989,161,'_elementor_pro_version','2.6.5'),(990,161,'_wp_page_template','default'),(991,161,'_elementor_data','[{\"id\":\"55396f27\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":50,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Theatrical_Display_V003C.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_range\":\"viewport\",\"motion_fx_motion_fx_scrolling\":\"yes\",\"layout\":\"full_width\",\"column_position\":\"top\"},\"elements\":[{\"id\":\"59493b21\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b700365\",\"elType\":\"widget\",\"settings\":{\"title\":\"#WHAT\'S COOL\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"80c28d1\",\"elType\":\"section\",\"settings\":{\"structure\":\"00\"},\"elements\":[{\"id\":\"da9c6bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"9ed4503\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"1de7598\",\"elType\":\"widget\",\"settings\":{\"title\":\"INNOVATIONS FROM ONDISPLAY CREATIVE\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7df48509\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\"},\"elements\":[{\"id\":\"1147078d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6b1f2df0\",\"elType\":\"widget\",\"settings\":{\"title\":\"LIVING STANDEES HAUNTING THEATERS\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_font_size\":{\"unit\":\"px\",\"size\":28},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"typography_typography\":\"custom\",\"header_size\":\"h1\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"442ffb\",\"elType\":\"widget\",\"settings\":{\"title\":\"ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"\"},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86cff8b\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"529dbcc\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS - THE LAST KEY\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a680ae8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"be59fa3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"no\"},\"elements\":[{\"id\":\"e36fe5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"d4d2039\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2.jpg\",\"id\":88},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"18\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3c9b758\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"79e122a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2-1.jpg\",\"id\":87},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"18\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3dc9df5\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"_margin\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"start\":0},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b747fda\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":700},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":900},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7eab781\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"43661634\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our company is a collective of amazing people striving to build delightful products.\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.4},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70cc6d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.<\\/p>\",\"align\":\"center\",\"text_color\":\"#686868\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"615dfb3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1000},\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"6414755f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3bb26eed\",\"elType\":\"widget\",\"settings\":{\"text\":\"Read More\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3},\"button_text_color\":\"#ffffff\",\"background_color\":\"rgba(0,0,0,0)\",\"hover_color\":\"#00ce1b\",\"button_hover_border_color\":\"#00ce1b\",\"hover_animation\":\"grow\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"123f6d1\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"25fcf2e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(992,161,'_elementor_edit_mode','builder'),(993,161,'_elementor_elements_usage','a:9:{s:7:\"heading\";i:6;s:6:\"column\";i:8;s:7:\"section\";i:7;s:6:\"spacer\";i:1;s:7:\"divider\";i:1;s:11:\"text-editor\";i:2;s:5:\"image\";i:2;s:5:\"video\";i:1;s:6:\"button\";i:1;}'),(1013,165,'_elementor_template_type','post'),(1014,165,'_elementor_version','2.6.8'),(995,162,'_wp_trash_meta_status','publish'),(996,162,'_wp_trash_meta_time','1568476390'),(997,163,'_elementor_template_type','post'),(998,163,'_elementor_version','2.6.8'),(999,163,'_elementor_pro_version','2.6.5'),(1000,163,'_wp_page_template','default'),(1001,163,'_elementor_data','[{\"id\":\"55396f27\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":50,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Theatrical_Display_V003C.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_range\":\"viewport\",\"motion_fx_motion_fx_scrolling\":\"yes\",\"layout\":\"full_width\",\"column_position\":\"top\"},\"elements\":[{\"id\":\"59493b21\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b700365\",\"elType\":\"widget\",\"settings\":{\"title\":\"#WHAT\'S COOL\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"80c28d1\",\"elType\":\"section\",\"settings\":{\"structure\":\"00\"},\"elements\":[{\"id\":\"da9c6bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"9ed4503\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"1de7598\",\"elType\":\"widget\",\"settings\":{\"title\":\"INNOVATIONS FROM ONDISPLAY CREATIVE\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7df48509\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\"},\"elements\":[{\"id\":\"1147078d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6b1f2df0\",\"elType\":\"widget\",\"settings\":{\"title\":\"LIVING STANDEES HAUNTING THEATERS\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_font_size\":{\"unit\":\"px\",\"size\":28},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"typography_typography\":\"custom\",\"header_size\":\"h1\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"442ffb\",\"elType\":\"widget\",\"settings\":{\"title\":\"ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"\"},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86cff8b\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"529dbcc\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS - THE LAST KEY\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a680ae8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"be59fa3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"no\"},\"elements\":[{\"id\":\"e36fe5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"d4d2039\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2.jpg\",\"id\":88},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"18\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3c9b758\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"79e122a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2-1.jpg\",\"id\":87},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"18\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3dc9df5\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"_margin\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"start\":0},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b747fda\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":700},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":900},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7eab781\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"43661634\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our company is a collective of amazing people striving to build delightful products.\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.4},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70cc6d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.<\\/p>\",\"align\":\"center\",\"text_color\":\"#686868\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"615dfb3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1000},\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"6414755f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3bb26eed\",\"elType\":\"widget\",\"settings\":{\"text\":\"Read More\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3},\"button_text_color\":\"#ffffff\",\"background_color\":\"rgba(0,0,0,0)\",\"hover_color\":\"#00ce1b\",\"button_hover_border_color\":\"#00ce1b\",\"hover_animation\":\"grow\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"123f6d1\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"25fcf2e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(1002,163,'_elementor_edit_mode','builder'),(1003,163,'_elementor_elements_usage','a:9:{s:7:\"heading\";i:6;s:6:\"column\";i:8;s:7:\"section\";i:7;s:6:\"spacer\";i:1;s:7:\"divider\";i:1;s:11:\"text-editor\";i:2;s:5:\"image\";i:2;s:5:\"video\";i:1;s:6:\"button\";i:1;}'),(1004,163,'_elementor_css','a:5:{s:4:\"time\";i:1568476339;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:1:{i:0;s:0:\"\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(1005,164,'_elementor_template_type','post'),(1006,164,'_elementor_version','2.6.8'),(1007,164,'_elementor_pro_version','2.6.5'),(1008,164,'_wp_page_template','default'),(1009,164,'_elementor_data','[{\"id\":\"55396f27\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":50,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Theatrical_Display_V003C.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_range\":\"viewport\",\"motion_fx_motion_fx_scrolling\":\"yes\",\"layout\":\"full_width\",\"column_position\":\"top\"},\"elements\":[{\"id\":\"59493b21\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b700365\",\"elType\":\"widget\",\"settings\":{\"title\":\"#WHAT\'S COOL\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"80c28d1\",\"elType\":\"section\",\"settings\":{\"structure\":\"00\"},\"elements\":[{\"id\":\"da9c6bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"9ed4503\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"1de7598\",\"elType\":\"widget\",\"settings\":{\"title\":\"INNOVATIONS FROM ONDISPLAY CREATIVE\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7df48509\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\"},\"elements\":[{\"id\":\"1147078d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6b1f2df0\",\"elType\":\"widget\",\"settings\":{\"title\":\"LIVING STANDEES HAUNTING THEATERS\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_font_size\":{\"unit\":\"px\",\"size\":28},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"typography_typography\":\"custom\",\"header_size\":\"h1\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"442ffb\",\"elType\":\"widget\",\"settings\":{\"title\":\"ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"\"},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86cff8b\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"529dbcc\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS - THE LAST KEY\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a680ae8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"be59fa3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"no\"},\"elements\":[{\"id\":\"e36fe5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"d4d2039\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2.jpg\",\"id\":88},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"18\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3c9b758\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"79e122a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2-1.jpg\",\"id\":87},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"18\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3dc9df5\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"_margin\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"start\":0},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b747fda\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":700},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":900},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7eab781\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"43661634\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our company is a collective of amazing people striving to build delightful products.\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.4},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70cc6d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.<\\/p>\",\"align\":\"center\",\"text_color\":\"#686868\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"615dfb3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1000},\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"6414755f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3bb26eed\",\"elType\":\"widget\",\"settings\":{\"text\":\"Read More\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3},\"button_text_color\":\"#ffffff\",\"background_color\":\"rgba(0,0,0,0)\",\"hover_color\":\"#00ce1b\",\"button_hover_border_color\":\"#00ce1b\",\"hover_animation\":\"grow\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"123f6d1\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"25fcf2e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(1010,164,'_elementor_edit_mode','builder'),(1011,164,'_elementor_elements_usage','a:9:{s:7:\"heading\";i:6;s:6:\"column\";i:8;s:7:\"section\";i:7;s:6:\"spacer\";i:1;s:7:\"divider\";i:1;s:11:\"text-editor\";i:2;s:5:\"image\";i:2;s:5:\"video\";i:1;s:6:\"button\";i:1;}'),(1012,164,'_elementor_css','a:5:{s:4:\"time\";i:1568476339;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:1:{i:0;s:0:\"\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(1015,165,'_elementor_pro_version','2.6.5'),(1016,165,'_wp_page_template','default'),(1017,165,'_elementor_data','[{\"id\":\"55396f27\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":50,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Theatrical_Display_V003C.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_range\":\"viewport\",\"motion_fx_motion_fx_scrolling\":\"yes\",\"layout\":\"full_width\",\"column_position\":\"top\"},\"elements\":[{\"id\":\"59493b21\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b700365\",\"elType\":\"widget\",\"settings\":{\"title\":\"#WHAT\'S COOL\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"80c28d1\",\"elType\":\"section\",\"settings\":{\"structure\":\"00\"},\"elements\":[{\"id\":\"da9c6bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"9ed4503\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"1de7598\",\"elType\":\"widget\",\"settings\":{\"title\":\"INNOVATIONS FROM ONDISPLAY CREATIVE\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7df48509\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\"},\"elements\":[{\"id\":\"1147078d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6b1f2df0\",\"elType\":\"widget\",\"settings\":{\"title\":\"LIVING STANDEES HAUNTING THEATERS\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_font_size\":{\"unit\":\"px\",\"size\":28},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"typography_typography\":\"custom\",\"header_size\":\"h1\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"442ffb\",\"elType\":\"widget\",\"settings\":{\"title\":\"ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"\"},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86cff8b\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"529dbcc\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS - THE LAST KEY\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.6,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a680ae8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"be59fa3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"no\"},\"elements\":[{\"id\":\"e36fe5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"d4d2039\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2.jpg\",\"id\":88},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"18\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3c9b758\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"79e122a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2-1.jpg\",\"id\":87},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"18\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3dc9df5\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"_margin\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"start\":0},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b747fda\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":700},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":900},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7eab781\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"43661634\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our company is a collective of amazing people striving to build delightful products.\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.4},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70cc6d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.<\\/p>\",\"align\":\"center\",\"text_color\":\"#686868\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"615dfb3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1000},\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"6414755f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3bb26eed\",\"elType\":\"widget\",\"settings\":{\"text\":\"Read More\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3},\"button_text_color\":\"#ffffff\",\"background_color\":\"rgba(0,0,0,0)\",\"hover_color\":\"#00ce1b\",\"button_hover_border_color\":\"#00ce1b\",\"hover_animation\":\"grow\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"123f6d1\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"25fcf2e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(1018,165,'_elementor_edit_mode','builder'),(1019,165,'_elementor_elements_usage','a:9:{s:7:\"heading\";i:6;s:6:\"column\";i:8;s:7:\"section\";i:7;s:6:\"spacer\";i:1;s:7:\"divider\";i:1;s:11:\"text-editor\";i:2;s:5:\"image\";i:2;s:5:\"video\";i:1;s:6:\"button\";i:1;}'),(1020,166,'_elementor_template_type','post'),(1021,166,'_elementor_version','2.6.8'),(1022,166,'_elementor_pro_version','2.6.5'),(1023,166,'_wp_page_template','default'),(1024,166,'_elementor_data','[{\"id\":\"55396f27\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":50,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Theatrical_Display_V003C.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_range\":\"viewport\",\"motion_fx_motion_fx_scrolling\":\"yes\",\"layout\":\"full_width\",\"column_position\":\"top\"},\"elements\":[{\"id\":\"59493b21\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b700365\",\"elType\":\"widget\",\"settings\":{\"title\":\"#WHAT\'S COOL\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"80c28d1\",\"elType\":\"section\",\"settings\":{\"structure\":\"00\"},\"elements\":[{\"id\":\"da9c6bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"9ed4503\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"1de7598\",\"elType\":\"widget\",\"settings\":{\"title\":\"INNOVATIONS FROM ONDISPLAY CREATIVE\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7df48509\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\"},\"elements\":[{\"id\":\"1147078d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6b1f2df0\",\"elType\":\"widget\",\"settings\":{\"title\":\"LIVING STANDEES HAUNTING THEATERS\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_font_size\":{\"unit\":\"px\",\"size\":28},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"typography_typography\":\"custom\",\"header_size\":\"h1\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"442ffb\",\"elType\":\"widget\",\"settings\":{\"title\":\"ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"\"},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86cff8b\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"529dbcc\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS - THE LAST KEY\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a680ae8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"be59fa3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"no\"},\"elements\":[{\"id\":\"e36fe5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"d4d2039\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2.jpg\",\"id\":88},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"18\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3c9b758\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"79e122a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2-1.jpg\",\"id\":87},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"18\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3dc9df5\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"_margin\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"start\":0},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b747fda\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":700},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":900},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7eab781\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"43661634\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our company is a collective of amazing people striving to build delightful products.\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.4},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70cc6d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.<\\/p>\",\"align\":\"center\",\"text_color\":\"#686868\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"615dfb3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1000},\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"6414755f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3bb26eed\",\"elType\":\"widget\",\"settings\":{\"text\":\"Read More\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3},\"button_text_color\":\"#ffffff\",\"background_color\":\"rgba(0,0,0,0)\",\"hover_color\":\"#00ce1b\",\"button_hover_border_color\":\"#00ce1b\",\"hover_animation\":\"grow\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"123f6d1\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"25fcf2e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(1025,166,'_elementor_edit_mode','builder'),(1026,166,'_elementor_elements_usage','a:9:{s:7:\"heading\";i:6;s:6:\"column\";i:8;s:7:\"section\";i:7;s:6:\"spacer\";i:1;s:7:\"divider\";i:1;s:11:\"text-editor\";i:2;s:5:\"image\";i:2;s:5:\"video\";i:1;s:6:\"button\";i:1;}'),(1090,177,'_elementor_template_type','post'),(1091,177,'_elementor_version','2.6.8'),(1028,167,'_elementor_edit_mode','builder'),(1029,167,'_elementor_template_type','widget'),(1030,167,'_elementor_version','2.6.8'),(1031,167,'_elementor_pro_version','2.6.5'),(1032,168,'_elementor_edit_mode','builder'),(1033,168,'_elementor_template_type','widget'),(1034,168,'_elementor_version','2.6.8'),(1035,168,'_elementor_pro_version','2.6.5'),(1036,167,'_wp_page_template','default'),(1037,167,'_elementor_data','[{\"id\":\"6b1f2df0\",\"elType\":\"widget\",\"settings\":{\"title\":\"LIVING STANDEES HAUNTING THEATERS\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_font_size\":{\"unit\":\"px\",\"size\":28},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"typography_typography\":\"custom\",\"header_size\":\"h1\"},\"elements\":[],\"widgetType\":\"heading\"}]'),(1038,169,'_elementor_edit_mode','builder'),(1039,169,'_elementor_template_type','widget'),(1040,169,'_elementor_version','2.6.8'),(1041,169,'_elementor_pro_version','2.6.5'),(1042,169,'_wp_page_template','default'),(1043,169,'_elementor_data','[{\"id\":\"6b1f2df0\",\"elType\":\"widget\",\"settings\":{\"title\":\"LIVING STANDEES HAUNTING THEATERS\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_font_size\":{\"unit\":\"px\",\"size\":28},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"typography_typography\":\"custom\",\"header_size\":\"h1\"},\"elements\":[],\"widgetType\":\"heading\"}]'),(1044,167,'_elementor_template_widget_type','heading'),(1045,170,'_elementor_edit_mode','builder'),(1046,170,'_elementor_template_type','widget'),(1047,170,'_elementor_version','2.6.8'),(1048,170,'_elementor_pro_version','2.6.5'),(1049,171,'_elementor_edit_mode','builder'),(1050,171,'_elementor_template_type','widget'),(1051,171,'_elementor_version','2.6.8'),(1052,171,'_elementor_pro_version','2.6.5'),(1053,170,'_wp_page_template','default'),(1054,170,'_elementor_data','[{\"id\":\"529dbcc\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS - THE LAST KEY\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}]'),(1055,172,'_elementor_edit_mode','builder'),(1056,172,'_elementor_template_type','widget'),(1057,172,'_elementor_version','2.6.8'),(1058,172,'_elementor_pro_version','2.6.5'),(1059,172,'_wp_page_template','default'),(1060,172,'_elementor_data','[{\"id\":\"529dbcc\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS - THE LAST KEY\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}]'),(1061,170,'_elementor_template_widget_type','heading'),(1062,173,'_elementor_edit_mode','builder'),(1063,173,'_elementor_template_type','widget'),(1064,173,'_elementor_version','2.6.8'),(1065,173,'_elementor_pro_version','2.6.5'),(1066,174,'_elementor_edit_mode','builder'),(1067,174,'_elementor_template_type','widget'),(1068,174,'_elementor_version','2.6.8'),(1069,174,'_elementor_pro_version','2.6.5'),(1070,173,'_wp_page_template','default'),(1071,173,'_elementor_data','[{\"id\":\"442ffb\",\"elType\":\"widget\",\"settings\":{\"title\":\"ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"\"},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"heading\"}]'),(1072,175,'_elementor_edit_mode','builder'),(1073,175,'_elementor_template_type','widget'),(1074,175,'_elementor_version','2.6.8'),(1075,175,'_elementor_pro_version','2.6.5'),(1076,175,'_wp_page_template','default'),(1077,175,'_elementor_data','[{\"id\":\"442ffb\",\"elType\":\"widget\",\"settings\":{\"title\":\"ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"\"},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"heading\"}]'),(1078,173,'_elementor_template_widget_type','heading'),(1104,173,'_wp_trash_meta_status','publish'),(1105,173,'_wp_trash_meta_time','1568478452'),(1106,173,'_wp_desired_post_slug','h3-header'),(1107,178,'_elementor_edit_mode','builder'),(1108,178,'_elementor_template_type','widget'),(1109,178,'_elementor_version','2.6.8'),(1110,178,'_elementor_pro_version','2.6.5'),(1111,179,'_elementor_edit_mode','builder'),(1112,179,'_elementor_template_type','widget'),(1113,179,'_elementor_version','2.6.8'),(1114,179,'_elementor_pro_version','2.6.5'),(1115,178,'_wp_page_template','default'),(1116,178,'_elementor_data','[{\"id\":\"178\",\"elType\":\"widget\",\"settings\":{\"title\":\"LIVING STANDEES HAUNTING THEATERS\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":28},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}]'),(1117,180,'_elementor_edit_mode','builder'),(1118,180,'_elementor_template_type','widget'),(1119,180,'_elementor_version','2.6.8'),(1120,180,'_elementor_pro_version','2.6.5'),(1121,180,'_wp_page_template','default'),(1122,180,'_elementor_data','[{\"id\":\"6b1f2df0\",\"elType\":\"widget\",\"settings\":{\"title\":\"LIVING STANDEES HAUNTING THEATERS\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_font_size\":{\"unit\":\"px\",\"size\":28},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"typography_typography\":\"custom\",\"header_size\":\"h1\"},\"elements\":[],\"widgetType\":\"heading\"}]'),(1123,178,'_elementor_template_widget_type','heading'),(1124,181,'_elementor_edit_mode','builder'),(1125,181,'_elementor_template_type','widget'),(1126,181,'_elementor_version','2.6.8'),(1127,181,'_elementor_pro_version','2.6.5'),(1128,182,'_elementor_edit_mode','builder'),(1129,182,'_elementor_template_type','widget'),(1130,182,'_elementor_version','2.6.8'),(1131,182,'_elementor_pro_version','2.6.5'),(1132,181,'_wp_page_template','default'),(1133,181,'_elementor_data','[{\"id\":\"181\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS - THE LAST KEY\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}]'),(1134,183,'_elementor_edit_mode','builder'),(1135,183,'_elementor_template_type','widget'),(1136,183,'_elementor_version','2.6.8'),(1137,183,'_elementor_pro_version','2.6.5'),(1138,183,'_wp_page_template','default'),(1139,183,'_elementor_data','[{\"id\":\"529dbcc\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS - THE LAST KEY\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}]'),(1140,181,'_elementor_template_widget_type','heading'),(1141,184,'_elementor_edit_mode','builder'),(1142,184,'_elementor_template_type','widget'),(1143,184,'_elementor_version','2.6.8'),(1144,184,'_elementor_pro_version','2.6.5'),(1145,185,'_elementor_edit_mode','builder'),(1146,185,'_elementor_template_type','widget'),(1147,185,'_elementor_version','2.6.8'),(1148,185,'_elementor_pro_version','2.6.5'),(1149,184,'_wp_page_template','default'),(1150,184,'_elementor_data','[{\"id\":\"184\",\"elType\":\"widget\",\"settings\":{\"title\":\"ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"\"},\"typography_font_weight\":\"700\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}]'),(1151,186,'_elementor_edit_mode','builder'),(1152,186,'_elementor_template_type','widget'),(1153,186,'_elementor_version','2.6.8'),(1154,186,'_elementor_pro_version','2.6.5'),(1155,186,'_wp_page_template','default'),(1156,186,'_elementor_data','[{\"id\":\"442ffb\",\"elType\":\"widget\",\"settings\":{\"title\":\"ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"\"},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"heading\"}]'),(1157,184,'_elementor_template_widget_type','heading'),(1087,167,'_elementor_global_widget_included_posts','a:1:{i:176;b:1;}'),(1088,173,'_elementor_global_widget_included_posts','a:1:{i:176;b:1;}'),(1089,170,'_elementor_global_widget_included_posts','a:1:{i:176;b:1;}'),(1092,177,'_elementor_pro_version','2.6.5'),(1093,177,'_wp_page_template','default'),(1094,177,'_elementor_data','[{\"id\":\"55396f27\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":50,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Theatrical_Display_V003C.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_range\":\"viewport\",\"motion_fx_motion_fx_scrolling\":\"yes\",\"layout\":\"full_width\",\"column_position\":\"top\"},\"elements\":[{\"id\":\"59493b21\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b700365\",\"elType\":\"widget\",\"settings\":{\"title\":\"#WHAT\'S COOL\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"80c28d1\",\"elType\":\"section\",\"settings\":{\"structure\":\"00\"},\"elements\":[{\"id\":\"da9c6bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"9ed4503\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"1de7598\",\"elType\":\"widget\",\"settings\":{\"title\":\"INNOVATIONS FROM ONDISPLAY CREATIVE\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7df48509\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\"},\"elements\":[{\"id\":\"1147078d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6b1f2df0\",\"elType\":\"widget\",\"settings\":{\"title\":\"LIVING STANDEES HAUNTING THEATERS\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_font_size\":{\"unit\":\"px\",\"size\":28},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"typography_typography\":\"custom\",\"header_size\":\"h1\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"442ffb\",\"elType\":\"widget\",\"settings\":{\"title\":\"ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"\"},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86cff8b\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"529dbcc\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS - THE LAST KEY\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a680ae8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"be59fa3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"no\"},\"elements\":[{\"id\":\"e36fe5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"d4d2039\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2.jpg\",\"id\":88},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"18\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3c9b758\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"79e122a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2-1.jpg\",\"id\":87},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"18\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3dc9df5\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"_margin\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"start\":0},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b747fda\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":700},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":900},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7eab781\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"43661634\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our company is a collective of amazing people striving to build delightful products.\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.4},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70cc6d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.<\\/p>\",\"align\":\"center\",\"text_color\":\"#686868\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"615dfb3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1000},\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"6414755f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3bb26eed\",\"elType\":\"widget\",\"settings\":{\"text\":\"Read More\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3},\"button_text_color\":\"#ffffff\",\"background_color\":\"rgba(0,0,0,0)\",\"hover_color\":\"#00ce1b\",\"button_hover_border_color\":\"#00ce1b\",\"hover_animation\":\"grow\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"123f6d1\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"25fcf2e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(1103,170,'_wp_desired_post_slug','h2-header'),(1100,167,'_wp_desired_post_slug','h1-header'),(1101,170,'_wp_trash_meta_status','publish'),(1102,170,'_wp_trash_meta_time','1568478441'),(1098,167,'_wp_trash_meta_status','publish'),(1099,167,'_wp_trash_meta_time','1568478438'),(1095,177,'_elementor_edit_mode','builder'),(1096,177,'_elementor_elements_usage','a:9:{s:7:\"heading\";i:6;s:6:\"column\";i:8;s:7:\"section\";i:7;s:6:\"spacer\";i:1;s:7:\"divider\";i:1;s:11:\"text-editor\";i:2;s:5:\"image\";i:2;s:5:\"video\";i:1;s:6:\"button\";i:1;}'),(1169,188,'_elementor_edit_mode','builder'),(1170,188,'_elementor_template_type','widget'),(1207,193,'_elementor_template_type','post'),(1208,193,'_elementor_version','2.6.8'),(1209,193,'_elementor_pro_version','2.6.5'),(1210,193,'_wp_page_template','default'),(1211,193,'_elementor_data','[{\"id\":\"55396f27\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":50,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Theatrical_Display_V003C.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_range\":\"viewport\",\"motion_fx_motion_fx_scrolling\":\"yes\",\"layout\":\"full_width\",\"column_position\":\"top\"},\"elements\":[{\"id\":\"59493b21\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b700365\",\"elType\":\"widget\",\"settings\":{\"title\":\"#WHAT\'S COOL\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"80c28d1\",\"elType\":\"section\",\"settings\":{\"structure\":\"00\"},\"elements\":[{\"id\":\"da9c6bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"9ed4503\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"1de7598\",\"elType\":\"widget\",\"settings\":{\"title\":\"INNOVATIONS FROM ONDISPLAY CREATIVE\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7df48509\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\"},\"elements\":[{\"id\":\"1147078d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"554b895\",\"elType\":\"widget\",\"elements\":[],\"widgetType\":\"global\",\"templateID\":178},{\"id\":\"a1de375\",\"elType\":\"widget\",\"elements\":[],\"widgetType\":\"global\",\"templateID\":184},{\"id\":\"86cff8b\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"889beae\",\"elType\":\"widget\",\"elements\":[],\"widgetType\":\"global\",\"templateID\":181},{\"id\":\"a680ae8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"be59fa3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"no\"},\"elements\":[{\"id\":\"e36fe5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"d4d2039\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2.jpg\",\"id\":88},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"18\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3c9b758\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"79e122a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2-1.jpg\",\"id\":87},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"18\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3dc9df5\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"_margin\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"start\":0},\"elements\":[],\"widgetType\":\"video\"},{\"id\":\"8f63560\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"786aa61\",\"elType\":\"widget\",\"elements\":[],\"widgetType\":\"global\",\"templateID\":181},{\"id\":\"a0e612c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7e77f5a\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\"},\"elements\":[{\"id\":\"7eb5a21\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":45.332},\"elements\":[{\"id\":\"ae25867\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"24c773b\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":54},\"elements\":[{\"id\":\"93ad602\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b747fda\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":700},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":900},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7eab781\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"43661634\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our company is a collective of amazing people striving to build delightful products.\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.4},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70cc6d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.<\\/p>\",\"align\":\"center\",\"text_color\":\"#686868\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"615dfb3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1000},\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"6414755f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3bb26eed\",\"elType\":\"widget\",\"settings\":{\"text\":\"Read More\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3},\"button_text_color\":\"#ffffff\",\"background_color\":\"rgba(0,0,0,0)\",\"hover_color\":\"#00ce1b\",\"button_hover_border_color\":\"#00ce1b\",\"hover_animation\":\"grow\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"123f6d1\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"25fcf2e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"64f593f\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"596f429\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(1166,178,'_elementor_global_widget_included_posts','a:3:{i:187;b:1;i:5;b:1;i:205;b:1;}'),(1167,184,'_elementor_global_widget_included_posts','a:3:{i:187;b:1;i:5;b:1;i:205;b:1;}'),(1168,181,'_elementor_global_widget_included_posts','a:3:{i:187;b:1;i:5;b:1;i:205;b:1;}'),(1171,188,'_elementor_version','2.6.8'),(1172,188,'_elementor_pro_version','2.6.5'),(1173,188,'_wp_page_template','default'),(1174,188,'_elementor_data','[{\"id\":178,\"elType\":\"widget\",\"settings\":{\"title\":\"LIVING STANDEES HAUNTING THEATERS\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_font_size\":{\"unit\":\"px\",\"size\":28},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"typography_typography\":\"custom\",\"header_size\":\"h1\"},\"elements\":[],\"widgetType\":\"heading\"}]'),(1175,188,'_elementor_template_widget_type','heading'),(1176,188,'_elementor_global_widget_included_posts','a:1:{i:187;b:1;}'),(1177,189,'_elementor_edit_mode','builder'),(1178,189,'_elementor_template_type','widget'),(1179,189,'_elementor_version','2.6.8'),(1180,189,'_elementor_pro_version','2.6.5'),(1181,189,'_wp_page_template','default'),(1182,189,'_elementor_data','[{\"id\":181,\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS - THE LAST KEY\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}]'),(1183,189,'_elementor_template_widget_type','heading'),(1184,189,'_elementor_global_widget_included_posts','a:1:{i:187;b:1;}'),(1185,190,'_elementor_edit_mode','builder'),(1186,190,'_elementor_template_type','widget'),(1187,190,'_elementor_version','2.6.8'),(1188,190,'_elementor_pro_version','2.6.5'),(1189,190,'_wp_page_template','default'),(1190,190,'_elementor_data','[{\"id\":184,\"elType\":\"widget\",\"settings\":{\"title\":\"ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"\"},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"heading\"}]'),(1191,190,'_elementor_template_widget_type','heading'),(1192,190,'_elementor_global_widget_included_posts','a:1:{i:187;b:1;}'),(1193,191,'_elementor_template_type','post'),(1194,191,'_elementor_version','2.6.8'),(1195,191,'_elementor_pro_version','2.6.5'),(1196,191,'_wp_page_template','default'),(1197,191,'_elementor_data','[{\"id\":\"55396f27\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":50,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Theatrical_Display_V003C.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_range\":\"viewport\",\"motion_fx_motion_fx_scrolling\":\"yes\",\"layout\":\"full_width\",\"column_position\":\"top\"},\"elements\":[{\"id\":\"59493b21\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b700365\",\"elType\":\"widget\",\"settings\":{\"title\":\"#WHAT\'S COOL\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"80c28d1\",\"elType\":\"section\",\"settings\":{\"structure\":\"00\"},\"elements\":[{\"id\":\"da9c6bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"9ed4503\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"1de7598\",\"elType\":\"widget\",\"settings\":{\"title\":\"INNOVATIONS FROM ONDISPLAY CREATIVE\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7df48509\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\"},\"elements\":[{\"id\":\"1147078d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6b1f2df0\",\"elType\":\"widget\",\"settings\":{\"title\":\"LIVING STANDEES HAUNTING THEATERS\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_font_size\":{\"unit\":\"px\",\"size\":28},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"typography_typography\":\"custom\",\"header_size\":\"h1\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"442ffb\",\"elType\":\"widget\",\"settings\":{\"title\":\"ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"\"},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86cff8b\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"529dbcc\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS - THE LAST KEY\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a680ae8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"be59fa3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"no\"},\"elements\":[{\"id\":\"e36fe5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"d4d2039\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2.jpg\",\"id\":88},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"18\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3c9b758\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"79e122a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2-1.jpg\",\"id\":87},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"18\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3dc9df5\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"_margin\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"start\":0},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b747fda\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":700},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":900},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7eab781\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"43661634\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our company is a collective of amazing people striving to build delightful products.\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.4},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70cc6d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.<\\/p>\",\"align\":\"center\",\"text_color\":\"#686868\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"615dfb3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1000},\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"6414755f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3bb26eed\",\"elType\":\"widget\",\"settings\":{\"text\":\"Read More\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3},\"button_text_color\":\"#ffffff\",\"background_color\":\"rgba(0,0,0,0)\",\"hover_color\":\"#00ce1b\",\"button_hover_border_color\":\"#00ce1b\",\"hover_animation\":\"grow\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"123f6d1\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"25fcf2e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(1198,191,'_elementor_edit_mode','builder'),(1199,191,'_elementor_elements_usage','a:9:{s:7:\"heading\";i:6;s:6:\"column\";i:8;s:7:\"section\";i:7;s:6:\"spacer\";i:1;s:7:\"divider\";i:1;s:11:\"text-editor\";i:2;s:5:\"image\";i:2;s:5:\"video\";i:1;s:6:\"button\";i:1;}'),(1200,192,'_elementor_template_type','post'),(1201,192,'_elementor_version','2.6.8'),(1202,192,'_elementor_pro_version','2.6.5'),(1203,192,'_wp_page_template','default'),(1204,192,'_elementor_data','[{\"id\":\"55396f27\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":50,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Theatrical_Display_V003C.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_range\":\"viewport\",\"motion_fx_motion_fx_scrolling\":\"yes\",\"layout\":\"full_width\",\"column_position\":\"top\"},\"elements\":[{\"id\":\"59493b21\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b700365\",\"elType\":\"widget\",\"settings\":{\"title\":\"#WHAT\'S COOL\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"80c28d1\",\"elType\":\"section\",\"settings\":{\"structure\":\"00\"},\"elements\":[{\"id\":\"da9c6bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"9ed4503\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"1de7598\",\"elType\":\"widget\",\"settings\":{\"title\":\"INNOVATIONS FROM ONDISPLAY CREATIVE\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7df48509\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\"},\"elements\":[{\"id\":\"1147078d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6b1f2df0\",\"elType\":\"widget\",\"settings\":{\"title\":\"LIVING STANDEES HAUNTING THEATERS\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_font_size\":{\"unit\":\"px\",\"size\":28},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"typography_typography\":\"custom\",\"header_size\":\"h1\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"442ffb\",\"elType\":\"widget\",\"settings\":{\"title\":\"ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"\"},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86cff8b\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"529dbcc\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS - THE LAST KEY\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a680ae8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"be59fa3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"no\"},\"elements\":[{\"id\":\"e36fe5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"d4d2039\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2.jpg\",\"id\":88},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"18\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3c9b758\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"79e122a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2-1.jpg\",\"id\":87},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"18\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3dc9df5\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"_margin\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"start\":0},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b747fda\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":700},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":900},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7eab781\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"43661634\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our company is a collective of amazing people striving to build delightful products.\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.4},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70cc6d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.<\\/p>\",\"align\":\"center\",\"text_color\":\"#686868\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"615dfb3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1000},\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"6414755f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3bb26eed\",\"elType\":\"widget\",\"settings\":{\"text\":\"Read More\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3},\"button_text_color\":\"#ffffff\",\"background_color\":\"rgba(0,0,0,0)\",\"hover_color\":\"#00ce1b\",\"button_hover_border_color\":\"#00ce1b\",\"hover_animation\":\"grow\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"123f6d1\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"25fcf2e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(1205,192,'_elementor_edit_mode','builder'),(1206,192,'_elementor_elements_usage','a:9:{s:7:\"heading\";i:6;s:6:\"column\";i:8;s:7:\"section\";i:7;s:6:\"spacer\";i:1;s:7:\"divider\";i:1;s:11:\"text-editor\";i:2;s:5:\"image\";i:2;s:5:\"video\";i:1;s:6:\"button\";i:1;}'),(1212,193,'_elementor_edit_mode','builder'),(1213,193,'_elementor_elements_usage','a:10:{s:7:\"heading\";i:3;s:6:\"column\";i:11;s:7:\"section\";i:9;s:6:\"spacer\";i:1;s:6:\"global\";i:4;s:7:\"divider\";i:2;s:11:\"text-editor\";i:3;s:5:\"image\";i:3;s:5:\"video\";i:2;s:6:\"button\";i:1;}'),(1214,194,'_elementor_template_type','post'),(1215,194,'_elementor_version','2.6.8'),(1216,194,'_elementor_pro_version','2.6.5'),(1217,194,'_wp_page_template','default'),(1218,194,'_elementor_data','[{\"id\":\"55396f27\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":50,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Theatrical_Display_V003C.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_range\":\"viewport\",\"motion_fx_motion_fx_scrolling\":\"yes\",\"layout\":\"full_width\",\"column_position\":\"top\"},\"elements\":[{\"id\":\"59493b21\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b700365\",\"elType\":\"widget\",\"settings\":{\"title\":\"#WHAT\'S COOL\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"80c28d1\",\"elType\":\"section\",\"settings\":{\"structure\":\"00\"},\"elements\":[{\"id\":\"da9c6bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"9ed4503\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"1de7598\",\"elType\":\"widget\",\"settings\":{\"title\":\"INNOVATIONS FROM ONDISPLAY CREATIVE\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7df48509\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\"},\"elements\":[{\"id\":\"1147078d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"554b895\",\"elType\":\"widget\",\"elements\":[],\"widgetType\":\"global\",\"templateID\":178},{\"id\":\"a1de375\",\"elType\":\"widget\",\"elements\":[],\"widgetType\":\"global\",\"templateID\":184},{\"id\":\"86cff8b\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"889beae\",\"elType\":\"widget\",\"elements\":[],\"widgetType\":\"global\",\"templateID\":181},{\"id\":\"a680ae8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"be59fa3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"no\"},\"elements\":[{\"id\":\"e36fe5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"d4d2039\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2.jpg\",\"id\":88},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"18\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3c9b758\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"79e122a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2-1.jpg\",\"id\":87},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"18\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3dc9df5\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"_margin\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"start\":0},\"elements\":[],\"widgetType\":\"video\"},{\"id\":\"8f63560\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"08c588a\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS CHAPTER 3\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0e612c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7e77f5a\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\"},\"elements\":[{\"id\":\"7eb5a21\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":45.332},\"elements\":[{\"id\":\"ae25867\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"24c773b\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":54},\"elements\":[{\"id\":\"93ad602\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b747fda\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":700},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":900},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7eab781\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"43661634\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our company is a collective of amazing people striving to build delightful products.\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.4},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70cc6d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.<\\/p>\",\"align\":\"center\",\"text_color\":\"#686868\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"615dfb3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1000},\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"6414755f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3bb26eed\",\"elType\":\"widget\",\"settings\":{\"text\":\"Read More\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3},\"button_text_color\":\"#ffffff\",\"background_color\":\"rgba(0,0,0,0)\",\"hover_color\":\"#00ce1b\",\"button_hover_border_color\":\"#00ce1b\",\"hover_animation\":\"grow\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"123f6d1\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"25fcf2e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"64f593f\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"596f429\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(1219,194,'_elementor_edit_mode','builder'),(1220,194,'_elementor_elements_usage','a:10:{s:7:\"heading\";i:4;s:6:\"column\";i:11;s:7:\"section\";i:9;s:6:\"spacer\";i:1;s:6:\"global\";i:3;s:7:\"divider\";i:2;s:11:\"text-editor\";i:3;s:5:\"image\";i:3;s:5:\"video\";i:2;s:6:\"button\";i:1;}'),(1221,195,'_elementor_template_type','post'),(1222,195,'_elementor_version','2.6.8'),(1223,195,'_elementor_pro_version','2.6.5'),(1224,195,'_wp_page_template','default'),(1225,195,'_elementor_data','[{\"id\":\"55396f27\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":50,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Theatrical_Display_V003C.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_range\":\"viewport\",\"motion_fx_motion_fx_scrolling\":\"yes\",\"layout\":\"full_width\",\"column_position\":\"top\"},\"elements\":[{\"id\":\"59493b21\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b700365\",\"elType\":\"widget\",\"settings\":{\"title\":\"#WHAT\'S COOL\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"80c28d1\",\"elType\":\"section\",\"settings\":{\"structure\":\"00\"},\"elements\":[{\"id\":\"da9c6bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"9ed4503\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"1de7598\",\"elType\":\"widget\",\"settings\":{\"title\":\"INNOVATIONS FROM ONDISPLAY CREATIVE\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7df48509\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\"},\"elements\":[{\"id\":\"1147078d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"554b895\",\"elType\":\"widget\",\"elements\":[],\"widgetType\":\"global\",\"templateID\":178},{\"id\":\"a1de375\",\"elType\":\"widget\",\"elements\":[],\"widgetType\":\"global\",\"templateID\":184},{\"id\":\"86cff8b\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"889beae\",\"elType\":\"widget\",\"elements\":[],\"widgetType\":\"global\",\"templateID\":181},{\"id\":\"a680ae8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"be59fa3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"no\"},\"elements\":[{\"id\":\"e36fe5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"d4d2039\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2.jpg\",\"id\":88},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"18\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3c9b758\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"79e122a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2-1.jpg\",\"id\":87},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"18\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3dc9df5\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"_margin\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"start\":0},\"elements\":[],\"widgetType\":\"video\"},{\"id\":\"8f63560\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"08c588a\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS CHAPTER 3\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0e612c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>OnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe.Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7e77f5a\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\"},\"elements\":[{\"id\":\"7eb5a21\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":45.332},\"elements\":[{\"id\":\"ae25867\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"24c773b\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":54},\"elements\":[{\"id\":\"93ad602\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b747fda\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":700},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":900},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7eab781\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"43661634\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our company is a collective of amazing people striving to build delightful products.\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.4},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70cc6d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.<\\/p>\",\"align\":\"center\",\"text_color\":\"#686868\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"615dfb3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1000},\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"6414755f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3bb26eed\",\"elType\":\"widget\",\"settings\":{\"text\":\"Read More\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3},\"button_text_color\":\"#ffffff\",\"background_color\":\"rgba(0,0,0,0)\",\"hover_color\":\"#00ce1b\",\"button_hover_border_color\":\"#00ce1b\",\"hover_animation\":\"grow\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"123f6d1\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"25fcf2e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"64f593f\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"596f429\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(1226,195,'_elementor_edit_mode','builder'),(1227,195,'_elementor_elements_usage','a:10:{s:7:\"heading\";i:4;s:6:\"column\";i:11;s:7:\"section\";i:9;s:6:\"spacer\";i:1;s:6:\"global\";i:3;s:7:\"divider\";i:2;s:11:\"text-editor\";i:3;s:5:\"image\";i:3;s:5:\"video\";i:2;s:6:\"button\";i:1;}'),(1228,196,'_wp_attached_file','2019/09/image-asset.jpeg'),(1229,196,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:800;s:4:\"file\";s:24:\"2019/09/image-asset.jpeg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"image-asset-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"image-asset-300x240.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:24:\"image-asset-768x614.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:614;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(1230,197,'_elementor_template_type','post'),(1231,197,'_elementor_version','2.6.8'),(1232,197,'_elementor_pro_version','2.6.5'),(1233,197,'_wp_page_template','default'),(1234,197,'_elementor_data','[{\"id\":\"55396f27\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":50,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Theatrical_Display_V003C.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_range\":\"viewport\",\"motion_fx_motion_fx_scrolling\":\"yes\",\"layout\":\"full_width\",\"column_position\":\"top\"},\"elements\":[{\"id\":\"59493b21\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b700365\",\"elType\":\"widget\",\"settings\":{\"title\":\"#WHAT\'S COOL\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"80c28d1\",\"elType\":\"section\",\"settings\":{\"structure\":\"00\"},\"elements\":[{\"id\":\"da9c6bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"9ed4503\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"1de7598\",\"elType\":\"widget\",\"settings\":{\"title\":\"INNOVATIONS FROM ONDISPLAY CREATIVE\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7df48509\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\"},\"elements\":[{\"id\":\"1147078d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"554b895\",\"elType\":\"widget\",\"elements\":[],\"widgetType\":\"global\",\"templateID\":178},{\"id\":\"a1de375\",\"elType\":\"widget\",\"elements\":[],\"widgetType\":\"global\",\"templateID\":184},{\"id\":\"86cff8b\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"889beae\",\"elType\":\"widget\",\"elements\":[],\"widgetType\":\"global\",\"templateID\":181},{\"id\":\"a680ae8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"be59fa3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"no\"},\"elements\":[{\"id\":\"e36fe5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"d4d2039\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2.jpg\",\"id\":88},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"18\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3c9b758\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"79e122a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2-1.jpg\",\"id\":87},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"18\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3dc9df5\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"_margin\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"start\":0},\"elements\":[],\"widgetType\":\"video\"},{\"id\":\"8f63560\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"08c588a\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS CHAPTER 3\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0e612c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>OnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7e77f5a\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\"},\"elements\":[{\"id\":\"7eb5a21\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":45.332},\"elements\":[{\"id\":\"ae25867\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/image-asset.jpeg\",\"id\":196}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"24c773b\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":54},\"elements\":[{\"id\":\"93ad602\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b747fda\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":700},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":900},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7eab781\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"43661634\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our company is a collective of amazing people striving to build delightful products.\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.4},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70cc6d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.<\\/p>\",\"align\":\"center\",\"text_color\":\"#686868\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"615dfb3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1000},\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"6414755f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3bb26eed\",\"elType\":\"widget\",\"settings\":{\"text\":\"Read More\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3},\"button_text_color\":\"#ffffff\",\"background_color\":\"rgba(0,0,0,0)\",\"hover_color\":\"#00ce1b\",\"button_hover_border_color\":\"#00ce1b\",\"hover_animation\":\"grow\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"123f6d1\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"25fcf2e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"64f593f\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"596f429\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(1235,197,'_elementor_edit_mode','builder'),(1236,197,'_elementor_elements_usage','a:10:{s:7:\"heading\";i:4;s:6:\"column\";i:11;s:7:\"section\";i:9;s:6:\"spacer\";i:1;s:6:\"global\";i:3;s:7:\"divider\";i:2;s:11:\"text-editor\";i:3;s:5:\"image\";i:3;s:5:\"video\";i:2;s:6:\"button\";i:1;}'),(1237,198,'_elementor_template_type','post'),(1238,198,'_elementor_version','2.6.8'),(1239,198,'_elementor_pro_version','2.6.5'),(1240,198,'_wp_page_template','default'),(1241,198,'_elementor_data','[{\"id\":\"55396f27\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":50,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Theatrical_Display_V003C.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_range\":\"viewport\",\"motion_fx_motion_fx_scrolling\":\"yes\",\"layout\":\"full_width\",\"column_position\":\"top\"},\"elements\":[{\"id\":\"59493b21\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b700365\",\"elType\":\"widget\",\"settings\":{\"title\":\"#WHAT\'S COOL\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"80c28d1\",\"elType\":\"section\",\"settings\":{\"structure\":\"00\"},\"elements\":[{\"id\":\"da9c6bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"9ed4503\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"1de7598\",\"elType\":\"widget\",\"settings\":{\"title\":\"INNOVATIONS FROM ONDISPLAY CREATIVE\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7df48509\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\"},\"elements\":[{\"id\":\"1147078d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"554b895\",\"elType\":\"widget\",\"elements\":[],\"widgetType\":\"global\",\"templateID\":178},{\"id\":\"a1de375\",\"elType\":\"widget\",\"elements\":[],\"widgetType\":\"global\",\"templateID\":184},{\"id\":\"86cff8b\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"889beae\",\"elType\":\"widget\",\"elements\":[],\"widgetType\":\"global\",\"templateID\":181},{\"id\":\"a680ae8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"be59fa3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"no\"},\"elements\":[{\"id\":\"e36fe5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"d4d2039\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2.jpg\",\"id\":88},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"18\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3c9b758\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"79e122a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2-1.jpg\",\"id\":87},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"18\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3dc9df5\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"_margin\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"start\":0},\"elements\":[],\"widgetType\":\"video\"},{\"id\":\"8f63560\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"08c588a\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS CHAPTER 3\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0e612c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>OnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7e77f5a\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\"},\"elements\":[{\"id\":\"7eb5a21\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":45.332},\"elements\":[{\"id\":\"ae25867\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/image-asset.jpeg\",\"id\":196}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"24c773b\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":54},\"elements\":[{\"id\":\"93ad602\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/130807026\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b747fda\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":700},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":900},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7eab781\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"43661634\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our company is a collective of amazing people striving to build delightful products.\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.4},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70cc6d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.<\\/p>\",\"align\":\"center\",\"text_color\":\"#686868\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"615dfb3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1000},\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"6414755f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3bb26eed\",\"elType\":\"widget\",\"settings\":{\"text\":\"Read More\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3},\"button_text_color\":\"#ffffff\",\"background_color\":\"rgba(0,0,0,0)\",\"hover_color\":\"#00ce1b\",\"button_hover_border_color\":\"#00ce1b\",\"hover_animation\":\"grow\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"123f6d1\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"25fcf2e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"64f593f\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"596f429\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(1242,198,'_elementor_edit_mode','builder'),(1243,198,'_elementor_elements_usage','a:10:{s:7:\"heading\";i:4;s:6:\"column\";i:11;s:7:\"section\";i:9;s:6:\"spacer\";i:1;s:6:\"global\";i:3;s:7:\"divider\";i:2;s:11:\"text-editor\";i:3;s:5:\"image\";i:3;s:5:\"video\";i:2;s:6:\"button\";i:1;}'),(1244,199,'_elementor_template_type','post'),(1245,199,'_elementor_version','2.6.8'),(1246,199,'_elementor_pro_version','2.6.5'),(1247,199,'_wp_page_template','default'),(1248,199,'_elementor_data','[{\"id\":\"55396f27\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":50,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Theatrical_Display_V003C.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_range\":\"viewport\",\"motion_fx_motion_fx_scrolling\":\"yes\",\"layout\":\"full_width\",\"column_position\":\"top\"},\"elements\":[{\"id\":\"59493b21\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b700365\",\"elType\":\"widget\",\"settings\":{\"title\":\"#WHAT\'S COOL\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"80c28d1\",\"elType\":\"section\",\"settings\":{\"structure\":\"00\"},\"elements\":[{\"id\":\"da9c6bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"9ed4503\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"1de7598\",\"elType\":\"widget\",\"settings\":{\"title\":\"INNOVATIONS FROM ONDISPLAY CREATIVE\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7df48509\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\"},\"elements\":[{\"id\":\"1147078d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"554b895\",\"elType\":\"widget\",\"elements\":[],\"widgetType\":\"global\",\"templateID\":178},{\"id\":\"a1de375\",\"elType\":\"widget\",\"elements\":[],\"widgetType\":\"global\",\"templateID\":184},{\"id\":\"86cff8b\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"889beae\",\"elType\":\"widget\",\"elements\":[],\"widgetType\":\"global\",\"templateID\":181},{\"id\":\"a680ae8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"be59fa3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"no\"},\"elements\":[{\"id\":\"e36fe5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"d4d2039\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2.jpg\",\"id\":88},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"18\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3c9b758\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"79e122a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2-1.jpg\",\"id\":87},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"18\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3dc9df5\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"_margin\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"start\":0},\"elements\":[],\"widgetType\":\"video\"},{\"id\":\"8f63560\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"08c588a\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS CHAPTER 3\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0e612c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>OnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7e77f5a\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"7eb5a21\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.332},\"elements\":[{\"id\":\"ae25867\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/image-asset.jpeg\",\"id\":196},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"24c773b\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":58},\"elements\":[{\"id\":\"93ad602\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/130807026\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b747fda\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":700},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":900},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7eab781\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"43661634\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our company is a collective of amazing people striving to build delightful products.\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.4},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70cc6d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.<\\/p>\",\"align\":\"center\",\"text_color\":\"#686868\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"615dfb3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1000},\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"6414755f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3bb26eed\",\"elType\":\"widget\",\"settings\":{\"text\":\"Read More\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3},\"button_text_color\":\"#ffffff\",\"background_color\":\"rgba(0,0,0,0)\",\"hover_color\":\"#00ce1b\",\"button_hover_border_color\":\"#00ce1b\",\"hover_animation\":\"grow\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"123f6d1\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"25fcf2e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"64f593f\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"596f429\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(1249,199,'_elementor_edit_mode','builder'),(1250,199,'_elementor_elements_usage','a:10:{s:7:\"heading\";i:4;s:6:\"column\";i:11;s:7:\"section\";i:9;s:6:\"spacer\";i:1;s:6:\"global\";i:3;s:7:\"divider\";i:2;s:11:\"text-editor\";i:3;s:5:\"image\";i:3;s:5:\"video\";i:2;s:6:\"button\";i:1;}'),(1254,200,'_elementor_template_type','post'),(1252,5,'_oembed_e13e37e158f1a96aa51308acb0afc6e0','<iframe title=\"INSIDIOUS 3 - LIVING STANDEE\" src=\"https://player.vimeo.com/video/130807026?dnt=1&amp;app_id=122963\" width=\"640\" height=\"362\" frameborder=\"0\" allow=\"autoplay; fullscreen\" allowfullscreen></iframe>'),(1253,5,'_oembed_time_e13e37e158f1a96aa51308acb0afc6e0','1568479205'),(1255,200,'_elementor_version','2.6.8'),(1256,200,'_elementor_pro_version','2.6.5'),(1257,200,'_wp_page_template','default'),(1258,200,'_elementor_data','[{\"id\":\"55396f27\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":50,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Theatrical_Display_V003C.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_range\":\"viewport\",\"motion_fx_motion_fx_scrolling\":\"yes\",\"layout\":\"full_width\",\"column_position\":\"top\"},\"elements\":[{\"id\":\"59493b21\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b700365\",\"elType\":\"widget\",\"settings\":{\"title\":\"#WHAT\'S COOL\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"80c28d1\",\"elType\":\"section\",\"settings\":{\"structure\":\"00\"},\"elements\":[{\"id\":\"da9c6bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"9ed4503\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"1de7598\",\"elType\":\"widget\",\"settings\":{\"title\":\"INNOVATIONS FROM ONDISPLAY CREATIVE\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7df48509\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\"},\"elements\":[{\"id\":\"1147078d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"554b895\",\"elType\":\"widget\",\"elements\":[],\"widgetType\":\"global\",\"templateID\":178},{\"id\":\"a1de375\",\"elType\":\"widget\",\"elements\":[],\"widgetType\":\"global\",\"templateID\":184},{\"id\":\"86cff8b\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"889beae\",\"elType\":\"widget\",\"elements\":[],\"widgetType\":\"global\",\"templateID\":181},{\"id\":\"a680ae8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"be59fa3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"no\"},\"elements\":[{\"id\":\"e36fe5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"d4d2039\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2.jpg\",\"id\":88},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"18\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3c9b758\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"79e122a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2-1.jpg\",\"id\":87},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"18\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3dc9df5\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"_margin\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"start\":0},\"elements\":[],\"widgetType\":\"video\"},{\"id\":\"b61a90b\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"8f63560\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"08c588a\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS CHAPTER 3\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0e612c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>OnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7e77f5a\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"7eb5a21\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.332},\"elements\":[{\"id\":\"ae25867\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/image-asset.jpeg\",\"id\":196},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"24c773b\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":58},\"elements\":[{\"id\":\"93ad602\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/130807026\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b747fda\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":700},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":900},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7eab781\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"43661634\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our company is a collective of amazing people striving to build delightful products.\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.4},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70cc6d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.<\\/p>\",\"align\":\"center\",\"text_color\":\"#686868\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"615dfb3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1000},\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"6414755f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3bb26eed\",\"elType\":\"widget\",\"settings\":{\"text\":\"Read More\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3},\"button_text_color\":\"#ffffff\",\"background_color\":\"rgba(0,0,0,0)\",\"hover_color\":\"#00ce1b\",\"button_hover_border_color\":\"#00ce1b\",\"hover_animation\":\"grow\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"123f6d1\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"25fcf2e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"64f593f\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"596f429\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(1259,200,'_elementor_edit_mode','builder'),(1260,200,'_elementor_elements_usage','a:10:{s:7:\"heading\";i:4;s:6:\"column\";i:11;s:7:\"section\";i:9;s:6:\"spacer\";i:2;s:6:\"global\";i:3;s:7:\"divider\";i:2;s:11:\"text-editor\";i:3;s:5:\"image\";i:3;s:5:\"video\";i:2;s:6:\"button\";i:1;}'),(1262,201,'_elementor_template_type','post'),(1263,201,'_elementor_version','2.6.8'),(1264,201,'_elementor_pro_version','2.6.5'),(1265,201,'_wp_page_template','default'),(1266,201,'_elementor_data','[{\"id\":\"55396f27\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":50,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Theatrical_Display_V003C.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_range\":\"viewport\",\"motion_fx_motion_fx_scrolling\":\"yes\",\"layout\":\"full_width\",\"column_position\":\"top\"},\"elements\":[{\"id\":\"59493b21\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b700365\",\"elType\":\"widget\",\"settings\":{\"title\":\"#WHAT\'S COOL\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"80c28d1\",\"elType\":\"section\",\"settings\":{\"structure\":\"00\"},\"elements\":[{\"id\":\"da9c6bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"9ed4503\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"1de7598\",\"elType\":\"widget\",\"settings\":{\"title\":\"INNOVATIONS FROM ONDISPLAY CREATIVE\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7df48509\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\"},\"elements\":[{\"id\":\"1147078d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"554b895\",\"elType\":\"widget\",\"elements\":[],\"widgetType\":\"global\",\"templateID\":178},{\"id\":\"a1de375\",\"elType\":\"widget\",\"elements\":[],\"widgetType\":\"global\",\"templateID\":184},{\"id\":\"86cff8b\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"889beae\",\"elType\":\"widget\",\"elements\":[],\"widgetType\":\"global\",\"templateID\":181},{\"id\":\"a680ae8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"be59fa3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"no\"},\"elements\":[{\"id\":\"e36fe5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"d4d2039\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2.jpg\",\"id\":88},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"18\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3c9b758\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"79e122a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2-1.jpg\",\"id\":87},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"18\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3dc9df5\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"_margin\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"start\":0},\"elements\":[],\"widgetType\":\"video\"},{\"id\":\"b61a90b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"8f63560\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"08c588a\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS CHAPTER 3\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0e612c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>OnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7e77f5a\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"7eb5a21\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.332},\"elements\":[{\"id\":\"ae25867\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/image-asset.jpeg\",\"id\":196},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"24c773b\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":58},\"elements\":[{\"id\":\"93ad602\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/130807026\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b747fda\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":700},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":900},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7eab781\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"43661634\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our company is a collective of amazing people striving to build delightful products.\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.4},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70cc6d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.<\\/p>\",\"align\":\"center\",\"text_color\":\"#686868\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"615dfb3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1000},\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"6414755f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3bb26eed\",\"elType\":\"widget\",\"settings\":{\"text\":\"Read More\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3},\"button_text_color\":\"#ffffff\",\"background_color\":\"rgba(0,0,0,0)\",\"hover_color\":\"#00ce1b\",\"button_hover_border_color\":\"#00ce1b\",\"hover_animation\":\"grow\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"123f6d1\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"25fcf2e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"64f593f\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"596f429\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(1267,201,'_elementor_edit_mode','builder'),(1268,201,'_elementor_elements_usage','a:10:{s:7:\"heading\";i:4;s:6:\"column\";i:11;s:7:\"section\";i:9;s:6:\"spacer\";i:2;s:6:\"global\";i:3;s:7:\"divider\";i:2;s:11:\"text-editor\";i:3;s:5:\"image\";i:3;s:5:\"video\";i:2;s:6:\"button\";i:1;}'),(1270,202,'_elementor_template_type','post'),(1271,202,'_elementor_version','2.6.8'),(1272,202,'_elementor_pro_version','2.6.5'),(1273,202,'_wp_page_template','default'),(1274,202,'_elementor_data','[{\"id\":\"55396f27\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":50,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Theatrical_Display_V003C.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_range\":\"viewport\",\"motion_fx_motion_fx_scrolling\":\"yes\",\"layout\":\"full_width\",\"column_position\":\"top\"},\"elements\":[{\"id\":\"59493b21\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b700365\",\"elType\":\"widget\",\"settings\":{\"title\":\"#WHAT\'S COOL\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"80c28d1\",\"elType\":\"section\",\"settings\":{\"structure\":\"00\"},\"elements\":[{\"id\":\"da9c6bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"9ed4503\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"1de7598\",\"elType\":\"widget\",\"settings\":{\"title\":\"INNOVATIONS FROM ONDISPLAY CREATIVE\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7df48509\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\"},\"elements\":[{\"id\":\"1147078d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"554b895\",\"elType\":\"widget\",\"elements\":[],\"widgetType\":\"global\",\"templateID\":178},{\"id\":\"a1de375\",\"elType\":\"widget\",\"elements\":[],\"widgetType\":\"global\",\"templateID\":184},{\"id\":\"86cff8b\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"889beae\",\"elType\":\"widget\",\"elements\":[],\"widgetType\":\"global\",\"templateID\":181},{\"id\":\"a680ae8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"be59fa3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"no\"},\"elements\":[{\"id\":\"e36fe5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"d4d2039\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2.jpg\",\"id\":88},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"18\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3c9b758\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"79e122a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2-1.jpg\",\"id\":87},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"18\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3dc9df5\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"_margin\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"start\":0},\"elements\":[],\"widgetType\":\"video\"},{\"id\":\"b61a90b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"8f63560\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"08c588a\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS CHAPTER 3\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0e612c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>OnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7e77f5a\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"7eb5a21\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.332},\"elements\":[{\"id\":\"ae25867\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/image-asset.jpeg\",\"id\":196},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"24c773b\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":58},\"elements\":[{\"id\":\"93ad602\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/130807026\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b747fda\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":700},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":900},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7eab781\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"43661634\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our company is a collective of amazing people striving to build delightful products.\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.4},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70cc6d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.<\\/p>\",\"align\":\"center\",\"text_color\":\"#686868\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"615dfb3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1000},\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"6414755f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3bb26eed\",\"elType\":\"widget\",\"settings\":{\"text\":\"Read More\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3},\"button_text_color\":\"#ffffff\",\"background_color\":\"rgba(0,0,0,0)\",\"hover_color\":\"#00ce1b\",\"button_hover_border_color\":\"#00ce1b\",\"hover_animation\":\"grow\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"123f6d1\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"25fcf2e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"64f593f\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"596f429\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(1275,202,'_elementor_edit_mode','builder'),(1276,202,'_elementor_elements_usage','a:10:{s:7:\"heading\";i:4;s:6:\"column\";i:11;s:7:\"section\";i:9;s:6:\"spacer\";i:2;s:6:\"global\";i:3;s:7:\"divider\";i:2;s:11:\"text-editor\";i:3;s:5:\"image\";i:3;s:5:\"video\";i:2;s:6:\"button\";i:1;}'),(1278,203,'_elementor_template_type','post'),(1279,203,'_elementor_version','2.6.8'),(1280,203,'_elementor_pro_version','2.6.5'),(1281,203,'_wp_page_template','default'),(1282,203,'_elementor_data','[{\"id\":\"55396f27\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":50,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Theatrical_Display_V003C.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_range\":\"viewport\",\"motion_fx_motion_fx_scrolling\":\"yes\",\"layout\":\"full_width\",\"column_position\":\"top\"},\"elements\":[{\"id\":\"59493b21\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b700365\",\"elType\":\"widget\",\"settings\":{\"title\":\"#WHAT\'S COOL\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"80c28d1\",\"elType\":\"section\",\"settings\":{\"structure\":\"00\"},\"elements\":[{\"id\":\"da9c6bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"9ed4503\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"1de7598\",\"elType\":\"widget\",\"settings\":{\"title\":\"INNOVATIONS FROM ONDISPLAY CREATIVE\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7df48509\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\"},\"elements\":[{\"id\":\"1147078d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"554b895\",\"elType\":\"widget\",\"elements\":[],\"widgetType\":\"global\",\"templateID\":178},{\"id\":\"a1de375\",\"elType\":\"widget\",\"elements\":[],\"widgetType\":\"global\",\"templateID\":184},{\"id\":\"86cff8b\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"889beae\",\"elType\":\"widget\",\"elements\":[],\"widgetType\":\"global\",\"templateID\":181},{\"id\":\"a680ae8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"be59fa3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"no\"},\"elements\":[{\"id\":\"e36fe5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"d4d2039\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2.jpg\",\"id\":88},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3c9b758\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"79e122a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2-1.jpg\",\"id\":87},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3dc9df5\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"_margin\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"start\":0},\"elements\":[],\"widgetType\":\"video\"},{\"id\":\"b61a90b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"8f63560\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"08c588a\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS CHAPTER 3\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0e612c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>OnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7e77f5a\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"7eb5a21\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.332},\"elements\":[{\"id\":\"ae25867\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/image-asset.jpeg\",\"id\":196},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"24c773b\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":58},\"elements\":[{\"id\":\"93ad602\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/130807026\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b747fda\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":700},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":900},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7eab781\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"43661634\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our company is a collective of amazing people striving to build delightful products.\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.4},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70cc6d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.<\\/p>\",\"align\":\"center\",\"text_color\":\"#686868\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"615dfb3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1000},\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"6414755f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3bb26eed\",\"elType\":\"widget\",\"settings\":{\"text\":\"Read More\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3},\"button_text_color\":\"#ffffff\",\"background_color\":\"rgba(0,0,0,0)\",\"hover_color\":\"#00ce1b\",\"button_hover_border_color\":\"#00ce1b\",\"hover_animation\":\"grow\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"123f6d1\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"25fcf2e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"64f593f\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"596f429\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(1283,203,'_elementor_edit_mode','builder'),(1284,203,'_elementor_elements_usage','a:10:{s:7:\"heading\";i:4;s:6:\"column\";i:11;s:7:\"section\";i:9;s:6:\"spacer\";i:2;s:6:\"global\";i:3;s:7:\"divider\";i:2;s:11:\"text-editor\";i:3;s:5:\"image\";i:3;s:5:\"video\";i:2;s:6:\"button\";i:1;}'),(1286,204,'_elementor_template_type','post'),(1287,204,'_elementor_version','2.6.8'),(1288,204,'_elementor_pro_version','2.6.5'),(1289,204,'_wp_page_template','default'),(1290,204,'_elementor_data','[{\"id\":\"55396f27\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":50,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Theatrical_Display_V003C.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_range\":\"viewport\",\"motion_fx_motion_fx_scrolling\":\"yes\",\"layout\":\"full_width\",\"column_position\":\"top\"},\"elements\":[{\"id\":\"59493b21\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b700365\",\"elType\":\"widget\",\"settings\":{\"title\":\"#WHAT\'S COOL\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"80c28d1\",\"elType\":\"section\",\"settings\":{\"structure\":\"00\"},\"elements\":[{\"id\":\"da9c6bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"9ed4503\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"1de7598\",\"elType\":\"widget\",\"settings\":{\"title\":\"INNOVATIONS FROM ONDISPLAY CREATIVE\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7df48509\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\"},\"elements\":[{\"id\":\"1147078d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"554b895\",\"elType\":\"widget\",\"elements\":[],\"widgetType\":\"global\",\"templateID\":178},{\"id\":\"a1de375\",\"elType\":\"widget\",\"elements\":[],\"widgetType\":\"global\",\"templateID\":184},{\"id\":\"86cff8b\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"889beae\",\"elType\":\"widget\",\"elements\":[],\"widgetType\":\"global\",\"templateID\":181},{\"id\":\"a680ae8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"be59fa3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\"},\"elements\":[{\"id\":\"e36fe5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"d4d2039\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2.jpg\",\"id\":88},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3c9b758\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"79e122a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2-1.jpg\",\"id\":87},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3dc9df5\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"_margin\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"start\":0},\"elements\":[],\"widgetType\":\"video\"},{\"id\":\"b61a90b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"8f63560\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"08c588a\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS CHAPTER 3\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0e612c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>OnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7e77f5a\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"7eb5a21\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.332},\"elements\":[{\"id\":\"ae25867\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/image-asset.jpeg\",\"id\":196},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"24c773b\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":58},\"elements\":[{\"id\":\"93ad602\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/130807026\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b747fda\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":700},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":900},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7eab781\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"43661634\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our company is a collective of amazing people striving to build delightful products.\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.4},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70cc6d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.<\\/p>\",\"align\":\"center\",\"text_color\":\"#686868\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"615dfb3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1000},\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"6414755f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3bb26eed\",\"elType\":\"widget\",\"settings\":{\"text\":\"Read More\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3},\"button_text_color\":\"#ffffff\",\"background_color\":\"rgba(0,0,0,0)\",\"hover_color\":\"#00ce1b\",\"button_hover_border_color\":\"#00ce1b\",\"hover_animation\":\"grow\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"123f6d1\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"25fcf2e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"64f593f\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"596f429\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(1291,204,'_elementor_edit_mode','builder'),(1292,204,'_elementor_elements_usage','a:10:{s:7:\"heading\";i:4;s:6:\"column\";i:11;s:7:\"section\";i:9;s:6:\"spacer\";i:2;s:6:\"global\";i:3;s:7:\"divider\";i:2;s:11:\"text-editor\";i:3;s:5:\"image\";i:3;s:5:\"video\";i:2;s:6:\"button\";i:1;}'),(1309,206,'_elementor_elements_usage','a:10:{s:7:\"heading\";i:4;s:6:\"column\";i:11;s:7:\"section\";i:9;s:6:\"spacer\";i:2;s:6:\"global\";i:3;s:7:\"divider\";i:2;s:11:\"text-editor\";i:3;s:5:\"image\";i:3;s:5:\"video\";i:2;s:6:\"button\";i:1;}'),(1308,206,'_elementor_edit_mode','builder'),(1304,206,'_elementor_version','2.6.8'),(1305,206,'_elementor_pro_version','2.6.5'),(1306,206,'_wp_page_template','default'),(1307,206,'_elementor_data','[{\"id\":\"55396f27\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":50,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Theatrical_Display_V003C.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_range\":\"viewport\",\"motion_fx_motion_fx_scrolling\":\"yes\",\"layout\":\"full_width\",\"column_position\":\"top\"},\"elements\":[{\"id\":\"59493b21\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b700365\",\"elType\":\"widget\",\"settings\":{\"title\":\"#WHAT\'S COOL\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"80c28d1\",\"elType\":\"section\",\"settings\":{\"structure\":\"00\"},\"elements\":[{\"id\":\"da9c6bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"9ed4503\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"1de7598\",\"elType\":\"widget\",\"settings\":{\"title\":\"INNOVATIONS FROM ONDISPLAY CREATIVE\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7df48509\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\"},\"elements\":[{\"id\":\"1147078d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"554b895\",\"elType\":\"widget\",\"elements\":[],\"widgetType\":\"global\",\"templateID\":178},{\"id\":\"a1de375\",\"elType\":\"widget\",\"elements\":[],\"widgetType\":\"global\",\"templateID\":184},{\"id\":\"86cff8b\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"889beae\",\"elType\":\"widget\",\"elements\":[],\"widgetType\":\"global\",\"templateID\":181},{\"id\":\"a680ae8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"be59fa3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e36fe5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"d4d2039\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2.jpg\",\"id\":88},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3c9b758\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"79e122a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2-1.jpg\",\"id\":87},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3dc9df5\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"start\":0},\"elements\":[],\"widgetType\":\"video\"},{\"id\":\"b61a90b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"8f63560\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"08c588a\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS CHAPTER 3\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0e612c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>OnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7e77f5a\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"7eb5a21\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.332},\"elements\":[{\"id\":\"ae25867\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/image-asset.jpeg\",\"id\":196},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"24c773b\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":58},\"elements\":[{\"id\":\"93ad602\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/130807026\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b747fda\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":700},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":900},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7eab781\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"43661634\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our company is a collective of amazing people striving to build delightful products.\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.4},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70cc6d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.<\\/p>\",\"align\":\"center\",\"text_color\":\"#686868\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"615dfb3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1000},\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"6414755f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3bb26eed\",\"elType\":\"widget\",\"settings\":{\"text\":\"Read More\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3},\"button_text_color\":\"#ffffff\",\"background_color\":\"rgba(0,0,0,0)\",\"hover_color\":\"#00ce1b\",\"button_hover_border_color\":\"#00ce1b\",\"hover_animation\":\"grow\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"123f6d1\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"25fcf2e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"64f593f\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"596f429\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(1303,206,'_elementor_template_type','post'),(1330,209,'_elementor_edit_mode','builder'),(1331,209,'_elementor_template_type','widget'),(1312,5,'_oembed_54d24d33cdea7e3fdd01357656b94060','<iframe title=\"INSIDIOUS 3 - LIVING STANDEE\" src=\"https://player.vimeo.com/video/130807026?dnt=1&amp;app_id=122963\" width=\"500\" height=\"283\" frameborder=\"0\" allow=\"autoplay; fullscreen\" allowfullscreen></iframe>'),(1313,5,'_oembed_time_54d24d33cdea7e3fdd01357656b94060','1568480131'),(1314,207,'_elementor_template_type','post'),(1315,207,'_elementor_version','2.6.8'),(1316,207,'_elementor_pro_version','2.6.5'),(1317,207,'_wp_page_template','default'),(1318,207,'_elementor_data','[{\"id\":\"55396f27\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":50,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Theatrical_Display_V003C.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_range\":\"viewport\",\"motion_fx_motion_fx_scrolling\":\"yes\",\"layout\":\"full_width\",\"column_position\":\"top\"},\"elements\":[{\"id\":\"59493b21\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b700365\",\"elType\":\"widget\",\"settings\":{\"title\":\"#WHAT\'S COOL\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"80c28d1\",\"elType\":\"section\",\"settings\":{\"structure\":\"00\"},\"elements\":[{\"id\":\"da9c6bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"9ed4503\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"1de7598\",\"elType\":\"widget\",\"settings\":{\"title\":\"INNOVATIONS FROM ONDISPLAY CREATIVE\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7df48509\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\"},\"elements\":[{\"id\":\"1147078d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"554b895\",\"elType\":\"widget\",\"elements\":[],\"widgetType\":\"global\",\"templateID\":178},{\"id\":\"a1de375\",\"elType\":\"widget\",\"elements\":[],\"widgetType\":\"global\",\"templateID\":184},{\"id\":\"86cff8b\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"889beae\",\"elType\":\"widget\",\"elements\":[],\"widgetType\":\"global\",\"templateID\":181},{\"id\":\"a680ae8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"be59fa3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e36fe5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"d4d2039\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2.jpg\",\"id\":88},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3c9b758\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"79e122a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2-1.jpg\",\"id\":87},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3dc9df5\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"start\":0},\"elements\":[],\"widgetType\":\"video\"},{\"id\":\"b61a90b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"8f63560\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"08c588a\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS CHAPTER 3\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0e612c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>OnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7e77f5a\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"7eb5a21\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.332},\"elements\":[{\"id\":\"ae25867\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/image-asset.jpeg\",\"id\":196},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"24c773b\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":58},\"elements\":[{\"id\":\"93ad602\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/130807026\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b747fda\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":700},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":900},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7eab781\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"43661634\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our company is a collective of amazing people striving to build delightful products.\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.4},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70cc6d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.<\\/p>\",\"align\":\"center\",\"text_color\":\"#686868\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"615dfb3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1000},\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"6414755f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3bb26eed\",\"elType\":\"widget\",\"settings\":{\"text\":\"Read More\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3},\"button_text_color\":\"#ffffff\",\"background_color\":\"rgba(0,0,0,0)\",\"hover_color\":\"#00ce1b\",\"button_hover_border_color\":\"#00ce1b\",\"hover_animation\":\"grow\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"123f6d1\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"25fcf2e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"64f593f\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"596f429\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(1319,207,'_elementor_edit_mode','builder'),(1320,207,'_elementor_elements_usage','a:10:{s:7:\"heading\";i:4;s:6:\"column\";i:11;s:7:\"section\";i:9;s:6:\"spacer\";i:2;s:6:\"global\";i:3;s:7:\"divider\";i:2;s:11:\"text-editor\";i:3;s:5:\"image\";i:3;s:5:\"video\";i:2;s:6:\"button\";i:1;}'),(1321,207,'_elementor_css','a:5:{s:4:\"time\";i:1568479934;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:1:{i:0;s:0:\"\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(1322,208,'_elementor_edit_mode','builder'),(1323,208,'_elementor_template_type','widget'),(1324,208,'_elementor_version','2.6.8'),(1325,208,'_elementor_pro_version','2.6.5'),(1326,208,'_wp_page_template','default'),(1327,208,'_elementor_data','[{\"id\":\"178\",\"elType\":\"widget\",\"settings\":{\"title\":\"LIVING STANDEES HAUNTING THEATERS\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":28},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}]'),(1328,208,'_elementor_template_widget_type','heading'),(1329,208,'_elementor_global_widget_included_posts','a:3:{i:187;b:1;i:5;b:1;i:205;b:1;}'),(1332,209,'_elementor_version','2.6.8'),(1333,209,'_elementor_pro_version','2.6.5'),(1334,209,'_wp_page_template','default'),(1335,209,'_elementor_data','[{\"id\":\"181\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS - THE LAST KEY\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}]'),(1336,209,'_elementor_template_widget_type','heading'),(1337,209,'_elementor_global_widget_included_posts','a:3:{i:187;b:1;i:5;b:1;i:205;b:1;}'),(1338,210,'_elementor_edit_mode','builder'),(1339,210,'_elementor_template_type','widget'),(1340,210,'_elementor_version','2.6.8'),(1341,210,'_elementor_pro_version','2.6.5'),(1342,210,'_wp_page_template','default'),(1343,210,'_elementor_data','[{\"id\":\"184\",\"elType\":\"widget\",\"settings\":{\"title\":\"ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"\"},\"typography_font_weight\":\"700\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}]'),(1344,210,'_elementor_template_widget_type','heading'),(1345,210,'_elementor_global_widget_included_posts','a:3:{i:187;b:1;i:5;b:1;i:205;b:1;}'),(1346,211,'_elementor_template_type','post'),(1347,211,'_elementor_version','2.6.8'),(1348,211,'_elementor_pro_version','2.6.5'),(1349,211,'_wp_page_template','default'),(1350,211,'_elementor_data','[{\"id\":\"55396f27\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":50,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Theatrical_Display_V003C.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_range\":\"viewport\",\"motion_fx_motion_fx_scrolling\":\"yes\",\"layout\":\"full_width\",\"column_position\":\"top\"},\"elements\":[{\"id\":\"59493b21\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b700365\",\"elType\":\"widget\",\"settings\":{\"title\":\"#WHAT\'S COOL\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"80c28d1\",\"elType\":\"section\",\"settings\":{\"structure\":\"00\"},\"elements\":[{\"id\":\"da9c6bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"9ed4503\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"1de7598\",\"elType\":\"widget\",\"settings\":{\"title\":\"INNOVATIONS FROM ONDISPLAY CREATIVE\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7df48509\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\"},\"elements\":[{\"id\":\"1147078d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"554b895\",\"elType\":\"widget\",\"elements\":[],\"widgetType\":\"global\",\"templateID\":178},{\"id\":\"a1de375\",\"elType\":\"widget\",\"elements\":[],\"widgetType\":\"global\",\"templateID\":184},{\"id\":\"86cff8b\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"889beae\",\"elType\":\"widget\",\"elements\":[],\"widgetType\":\"global\",\"templateID\":181},{\"id\":\"a680ae8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"be59fa3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e36fe5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"d4d2039\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2.jpg\",\"id\":88},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3c9b758\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"79e122a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2-1.jpg\",\"id\":87},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3dc9df5\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"start\":0},\"elements\":[],\"widgetType\":\"video\"},{\"id\":\"b61a90b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"8f63560\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"08c588a\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS CHAPTER 3\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0e612c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>OnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7e77f5a\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"7eb5a21\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.332},\"elements\":[{\"id\":\"ae25867\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/image-asset.jpeg\",\"id\":196},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"24c773b\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":58},\"elements\":[{\"id\":\"93ad602\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/130807026\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b747fda\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":700},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":900},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7eab781\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"43661634\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our company is a collective of amazing people striving to build delightful products.\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.4},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70cc6d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.<\\/p>\",\"align\":\"center\",\"text_color\":\"#686868\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"615dfb3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1000},\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"6414755f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3bb26eed\",\"elType\":\"widget\",\"settings\":{\"text\":\"Read More\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3},\"button_text_color\":\"#ffffff\",\"background_color\":\"rgba(0,0,0,0)\",\"hover_color\":\"#00ce1b\",\"button_hover_border_color\":\"#00ce1b\",\"hover_animation\":\"grow\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"123f6d1\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"25fcf2e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"64f593f\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"596f429\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(1351,211,'_elementor_edit_mode','builder'),(1352,211,'_elementor_elements_usage','a:10:{s:7:\"heading\";i:4;s:6:\"column\";i:11;s:7:\"section\";i:9;s:6:\"spacer\";i:2;s:6:\"global\";i:3;s:7:\"divider\";i:2;s:11:\"text-editor\";i:3;s:5:\"image\";i:3;s:5:\"video\";i:2;s:6:\"button\";i:1;}'),(1353,212,'_elementor_template_type','post'),(1354,212,'_elementor_version','2.6.8'),(1355,212,'_elementor_pro_version','2.6.5'),(1356,212,'_wp_page_template','default'),(1357,212,'_elementor_data','[{\"id\":\"55396f27\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":50,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Theatrical_Display_V003C.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_range\":\"viewport\",\"motion_fx_motion_fx_scrolling\":\"yes\",\"layout\":\"full_width\",\"column_position\":\"top\"},\"elements\":[{\"id\":\"59493b21\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b700365\",\"elType\":\"widget\",\"settings\":{\"title\":\"#WHAT\'S COOL\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"80c28d1\",\"elType\":\"section\",\"settings\":{\"structure\":\"00\"},\"elements\":[{\"id\":\"da9c6bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"9ed4503\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"1de7598\",\"elType\":\"widget\",\"settings\":{\"title\":\"INNOVATIONS FROM ONDISPLAY CREATIVE\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7df48509\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\"},\"elements\":[{\"id\":\"1147078d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"554b895\",\"elType\":\"widget\",\"elements\":[],\"widgetType\":\"global\",\"templateID\":178},{\"id\":\"a1de375\",\"elType\":\"widget\",\"elements\":[],\"widgetType\":\"global\",\"templateID\":184},{\"id\":\"86cff8b\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"889beae\",\"elType\":\"widget\",\"elements\":[],\"widgetType\":\"global\",\"templateID\":181},{\"id\":\"a680ae8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"be59fa3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e36fe5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"d4d2039\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2.jpg\",\"id\":88},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3c9b758\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"79e122a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2-1.jpg\",\"id\":87},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3dc9df5\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"start\":0},\"elements\":[],\"widgetType\":\"video\"},{\"id\":\"b61a90b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"8f63560\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"08c588a\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS CHAPTER 3\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0e612c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>OnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7e77f5a\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"7eb5a21\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.332},\"elements\":[{\"id\":\"ae25867\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/image-asset.jpeg\",\"id\":196},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"24c773b\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":58},\"elements\":[{\"id\":\"93ad602\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/130807026\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b747fda\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":700},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":900},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7eab781\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"43661634\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our company is a collective of amazing people striving to build delightful products.\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.4},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70cc6d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.<\\/p>\",\"align\":\"center\",\"text_color\":\"#686868\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"615dfb3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1000},\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"6414755f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3bb26eed\",\"elType\":\"widget\",\"settings\":{\"text\":\"Read More\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3},\"button_text_color\":\"#ffffff\",\"background_color\":\"rgba(0,0,0,0)\",\"hover_color\":\"#00ce1b\",\"button_hover_border_color\":\"#00ce1b\",\"hover_animation\":\"grow\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"123f6d1\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"25fcf2e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"64f593f\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"596f429\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(1358,212,'_elementor_edit_mode','builder'),(1359,212,'_elementor_elements_usage','a:10:{s:7:\"heading\";i:4;s:6:\"column\";i:11;s:7:\"section\";i:9;s:6:\"spacer\";i:2;s:6:\"global\";i:3;s:7:\"divider\";i:2;s:11:\"text-editor\";i:3;s:5:\"image\";i:3;s:5:\"video\";i:2;s:6:\"button\";i:1;}'),(1360,213,'_elementor_template_type','post'),(1361,213,'_elementor_version','2.6.8'),(1362,213,'_elementor_pro_version','2.6.5'),(1363,213,'_wp_page_template','default'),(1364,213,'_elementor_data','[{\"id\":\"55396f27\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":50,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Theatrical_Display_V003C.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_range\":\"viewport\",\"motion_fx_motion_fx_scrolling\":\"yes\",\"layout\":\"full_width\",\"column_position\":\"top\"},\"elements\":[{\"id\":\"59493b21\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b700365\",\"elType\":\"widget\",\"settings\":{\"title\":\"#WHAT\'S COOL\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"80c28d1\",\"elType\":\"section\",\"settings\":{\"structure\":\"00\"},\"elements\":[{\"id\":\"da9c6bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"9ed4503\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"1de7598\",\"elType\":\"widget\",\"settings\":{\"title\":\"INNOVATIONS FROM ONDISPLAY CREATIVE\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7df48509\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\"},\"elements\":[{\"id\":\"1147078d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"554b895\",\"elType\":\"widget\",\"elements\":[],\"widgetType\":\"global\",\"templateID\":178},{\"id\":\"a1de375\",\"elType\":\"widget\",\"elements\":[],\"widgetType\":\"global\",\"templateID\":184},{\"id\":\"86cff8b\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"889beae\",\"elType\":\"widget\",\"elements\":[],\"widgetType\":\"global\",\"templateID\":181},{\"id\":\"a680ae8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"be59fa3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e36fe5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"d4d2039\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2.jpg\",\"id\":88},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3c9b758\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"79e122a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2-1.jpg\",\"id\":87},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3dc9df5\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"start\":0},\"elements\":[],\"widgetType\":\"video\"},{\"id\":\"b61a90b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"8f63560\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"08c588a\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS CHAPTER 3\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0e612c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>OnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7e77f5a\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"7eb5a21\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.332},\"elements\":[{\"id\":\"ae25867\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/image-asset.jpeg\",\"id\":196},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"24c773b\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":58},\"elements\":[{\"id\":\"93ad602\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/130807026\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b747fda\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":700},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":900},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7eab781\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"43661634\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our company is a collective of amazing people striving to build delightful products.\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.4},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70cc6d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.<\\/p>\",\"align\":\"center\",\"text_color\":\"#686868\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"615dfb3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1000},\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"6414755f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3bb26eed\",\"elType\":\"widget\",\"settings\":{\"text\":\"Read More\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3},\"button_text_color\":\"#ffffff\",\"background_color\":\"rgba(0,0,0,0)\",\"hover_color\":\"#00ce1b\",\"button_hover_border_color\":\"#00ce1b\",\"hover_animation\":\"grow\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"123f6d1\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"25fcf2e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"64f593f\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"596f429\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(1365,213,'_elementor_edit_mode','builder'),(1366,213,'_elementor_elements_usage','a:10:{s:7:\"heading\";i:4;s:6:\"column\";i:11;s:7:\"section\";i:9;s:6:\"spacer\";i:2;s:6:\"global\";i:3;s:7:\"divider\";i:2;s:11:\"text-editor\";i:3;s:5:\"image\";i:3;s:5:\"video\";i:2;s:6:\"button\";i:1;}'),(1368,184,'_wp_trash_meta_status','publish'),(1369,184,'_wp_trash_meta_time','1568500973'),(1370,184,'_wp_desired_post_slug','h3-headline'),(1371,181,'_wp_trash_meta_status','publish'),(1372,181,'_wp_trash_meta_time','1568500976'),(1373,181,'_wp_desired_post_slug','h2-headline'),(1374,178,'_elementor_css','a:5:{s:4:\"time\";i:1568500979;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(1375,178,'_wp_trash_meta_status','publish'),(1376,178,'_wp_trash_meta_time','1568500990'),(1377,178,'_wp_desired_post_slug','h1-headline'),(1378,214,'_elementor_template_type','post'),(1379,214,'_elementor_version','2.6.8'),(1380,214,'_elementor_pro_version','2.6.5'),(1381,214,'_wp_page_template','default'),(1382,214,'_elementor_data','[{\"id\":\"55396f27\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":50,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Theatrical_Display_V003C.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_range\":\"viewport\",\"motion_fx_motion_fx_scrolling\":\"yes\",\"layout\":\"full_width\",\"column_position\":\"top\"},\"elements\":[{\"id\":\"59493b21\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b700365\",\"elType\":\"widget\",\"settings\":{\"title\":\"#WHAT\'S COOL\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"80c28d1\",\"elType\":\"section\",\"settings\":{\"structure\":\"00\"},\"elements\":[{\"id\":\"da9c6bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"9ed4503\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"1de7598\",\"elType\":\"widget\",\"settings\":{\"title\":\"INNOVATIONS FROM ONDISPLAY CREATIVE\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7df48509\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\"},\"elements\":[{\"id\":\"1147078d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"554b895\",\"elType\":\"widget\",\"elements\":[],\"widgetType\":\"global\",\"templateID\":178},{\"id\":\"a1de375\",\"elType\":\"widget\",\"elements\":[],\"widgetType\":\"global\",\"templateID\":184},{\"id\":\"86cff8b\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"889beae\",\"elType\":\"widget\",\"elements\":[],\"widgetType\":\"global\",\"templateID\":181},{\"id\":\"a680ae8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"be59fa3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e36fe5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"d4d2039\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2.jpg\",\"id\":88},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3c9b758\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"79e122a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2-1.jpg\",\"id\":87},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3dc9df5\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"start\":0},\"elements\":[],\"widgetType\":\"video\"},{\"id\":\"b61a90b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"8f63560\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"08c588a\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS CHAPTER 3\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0e612c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>OnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7e77f5a\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"7eb5a21\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.332},\"elements\":[{\"id\":\"ae25867\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/image-asset.jpeg\",\"id\":196},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"24c773b\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":58},\"elements\":[{\"id\":\"93ad602\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/130807026\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b747fda\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":700},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":900},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7eab781\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"43661634\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our company is a collective of amazing people striving to build delightful products.\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.4},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70cc6d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.<\\/p>\",\"align\":\"center\",\"text_color\":\"#686868\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"615dfb3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1000},\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"6414755f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3bb26eed\",\"elType\":\"widget\",\"settings\":{\"text\":\"Read More\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3},\"button_text_color\":\"#ffffff\",\"background_color\":\"rgba(0,0,0,0)\",\"hover_color\":\"#00ce1b\",\"button_hover_border_color\":\"#00ce1b\",\"hover_animation\":\"grow\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"123f6d1\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"25fcf2e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"64f593f\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"596f429\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(1383,214,'_elementor_edit_mode','builder'),(1384,214,'_elementor_elements_usage','a:10:{s:7:\"heading\";i:4;s:6:\"column\";i:11;s:7:\"section\";i:9;s:6:\"spacer\";i:2;s:6:\"global\";i:3;s:7:\"divider\";i:2;s:11:\"text-editor\";i:3;s:5:\"image\";i:3;s:5:\"video\";i:2;s:6:\"button\";i:1;}'),(1385,214,'_elementor_css','a:5:{s:4:\"time\";i:1568480328;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:1:{i:0;s:0:\"\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(1386,215,'_elementor_template_type','post'),(1387,215,'_elementor_version','2.6.8'),(1388,215,'_elementor_pro_version','2.6.5'),(1389,215,'_wp_page_template','default'),(1390,215,'_elementor_data','[{\"id\":\"55396f27\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":50,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Theatrical_Display_V003C.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_range\":\"viewport\",\"motion_fx_motion_fx_scrolling\":\"yes\",\"layout\":\"full_width\",\"column_position\":\"top\"},\"elements\":[{\"id\":\"59493b21\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b700365\",\"elType\":\"widget\",\"settings\":{\"title\":\"#WHAT\'S COOL\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"80c28d1\",\"elType\":\"section\",\"settings\":{\"structure\":\"00\"},\"elements\":[{\"id\":\"da9c6bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"9ed4503\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"1de7598\",\"elType\":\"widget\",\"settings\":{\"title\":\"INNOVATIONS FROM ONDISPLAY CREATIVE\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7df48509\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\"},\"elements\":[{\"id\":\"1147078d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"23bbc68\",\"elType\":\"widget\",\"settings\":{\"title\":\"LIVING STANDEES HAUNTING THEATERS\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86cff8b\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a680ae8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"be59fa3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e36fe5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"d4d2039\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2.jpg\",\"id\":88},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3c9b758\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"79e122a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2-1.jpg\",\"id\":87},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3dc9df5\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"start\":0},\"elements\":[],\"widgetType\":\"video\"},{\"id\":\"b61a90b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"8f63560\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"08c588a\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS CHAPTER 3\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0e612c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>OnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7e77f5a\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"7eb5a21\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.332},\"elements\":[{\"id\":\"ae25867\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/image-asset.jpeg\",\"id\":196},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"24c773b\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":58},\"elements\":[{\"id\":\"93ad602\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/130807026\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b747fda\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":700},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":900},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7eab781\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"43661634\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our company is a collective of amazing people striving to build delightful products.\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.4},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70cc6d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.<\\/p>\",\"align\":\"center\",\"text_color\":\"#686868\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"615dfb3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1000},\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"6414755f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3bb26eed\",\"elType\":\"widget\",\"settings\":{\"text\":\"Read More\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3},\"button_text_color\":\"#ffffff\",\"background_color\":\"rgba(0,0,0,0)\",\"hover_color\":\"#00ce1b\",\"button_hover_border_color\":\"#00ce1b\",\"hover_animation\":\"grow\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"123f6d1\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"25fcf2e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"64f593f\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"596f429\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(1391,215,'_elementor_edit_mode','builder'),(1392,215,'_elementor_elements_usage','a:9:{s:7:\"heading\";i:5;s:6:\"column\";i:11;s:7:\"section\";i:9;s:6:\"spacer\";i:2;s:7:\"divider\";i:2;s:11:\"text-editor\";i:3;s:5:\"image\";i:3;s:5:\"video\";i:2;s:6:\"button\";i:1;}'),(1393,215,'_elementor_css','a:5:{s:4:\"time\";i:1568480328;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:1:{i:0;s:0:\"\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(1394,216,'_elementor_template_type','post'),(1395,216,'_elementor_version','2.6.8'),(1396,216,'_elementor_pro_version','2.6.5'),(1397,216,'_wp_page_template','default'),(1398,216,'_elementor_data','[{\"id\":\"55396f27\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":50,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Theatrical_Display_V003C.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_range\":\"viewport\",\"motion_fx_motion_fx_scrolling\":\"yes\",\"layout\":\"full_width\",\"column_position\":\"top\"},\"elements\":[{\"id\":\"59493b21\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b700365\",\"elType\":\"widget\",\"settings\":{\"title\":\"#WHAT\'S COOL\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"80c28d1\",\"elType\":\"section\",\"settings\":{\"structure\":\"00\"},\"elements\":[{\"id\":\"da9c6bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"9ed4503\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"1de7598\",\"elType\":\"widget\",\"settings\":{\"title\":\"INNOVATIONS FROM ONDISPLAY CREATIVE\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7df48509\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\"},\"elements\":[{\"id\":\"1147078d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"23bbc68\",\"elType\":\"widget\",\"settings\":{\"title\":\"LIVING STANDEES HAUNTING THEATERS\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b40d155\",\"elType\":\"widget\",\"settings\":{\"title\":\"ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"700\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86cff8b\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a680ae8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"be59fa3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e36fe5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"d4d2039\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2.jpg\",\"id\":88},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3c9b758\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"79e122a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2-1.jpg\",\"id\":87},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3dc9df5\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"start\":0},\"elements\":[],\"widgetType\":\"video\"},{\"id\":\"b61a90b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"8f63560\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"08c588a\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS CHAPTER 3\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0e612c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>OnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7e77f5a\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"7eb5a21\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.332},\"elements\":[{\"id\":\"ae25867\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/image-asset.jpeg\",\"id\":196},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"24c773b\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":58},\"elements\":[{\"id\":\"93ad602\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/130807026\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b747fda\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":700},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":900},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7eab781\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"43661634\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our company is a collective of amazing people striving to build delightful products.\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.4},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70cc6d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.<\\/p>\",\"align\":\"center\",\"text_color\":\"#686868\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"615dfb3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1000},\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"6414755f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3bb26eed\",\"elType\":\"widget\",\"settings\":{\"text\":\"Read More\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3},\"button_text_color\":\"#ffffff\",\"background_color\":\"rgba(0,0,0,0)\",\"hover_color\":\"#00ce1b\",\"button_hover_border_color\":\"#00ce1b\",\"hover_animation\":\"grow\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"123f6d1\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"25fcf2e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"64f593f\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"596f429\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false}]');
INSERT INTO `wp_postmeta` VALUES (1399,216,'_elementor_edit_mode','builder'),(1400,216,'_elementor_elements_usage','a:9:{s:7:\"heading\";i:6;s:6:\"column\";i:11;s:7:\"section\";i:9;s:6:\"spacer\";i:2;s:7:\"divider\";i:2;s:11:\"text-editor\";i:3;s:5:\"image\";i:3;s:5:\"video\";i:2;s:6:\"button\";i:1;}'),(1402,217,'_edit_lock','1568501630:1'),(1403,217,'_wp_trash_meta_status','publish'),(1404,217,'_wp_trash_meta_time','1568501643'),(1405,218,'_elementor_template_type','post'),(1406,218,'_elementor_version','2.6.8'),(1407,218,'_elementor_pro_version','2.6.5'),(1408,218,'_wp_page_template','default'),(1409,218,'_elementor_data','[{\"id\":\"55396f27\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":50,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Theatrical_Display_V003C.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_range\":\"viewport\",\"motion_fx_motion_fx_scrolling\":\"yes\",\"layout\":\"full_width\",\"column_position\":\"top\"},\"elements\":[{\"id\":\"59493b21\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b700365\",\"elType\":\"widget\",\"settings\":{\"title\":\"#WHAT\'S COOL\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"80c28d1\",\"elType\":\"section\",\"settings\":{\"structure\":\"00\"},\"elements\":[{\"id\":\"da9c6bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"9ed4503\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"1de7598\",\"elType\":\"widget\",\"settings\":{\"title\":\"INNOVATIONS FROM ONDISPLAY CREATIVE\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7df48509\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\"},\"elements\":[{\"id\":\"1147078d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"23bbc68\",\"elType\":\"widget\",\"settings\":{\"title\":\"LIVING STANDEES HAUNTING THEATERS\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b40d155\",\"elType\":\"widget\",\"settings\":{\"title\":\"ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"700\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86cff8b\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a680ae8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"be59fa3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e36fe5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"d4d2039\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2.jpg\",\"id\":88},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3c9b758\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"79e122a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2-1.jpg\",\"id\":87},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3dc9df5\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"start\":0},\"elements\":[],\"widgetType\":\"video\"},{\"id\":\"b61a90b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"8f63560\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"08c588a\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS CHAPTER 3\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0e612c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>OnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7e77f5a\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"7eb5a21\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.332},\"elements\":[{\"id\":\"ae25867\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/image-asset.jpeg\",\"id\":196},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"24c773b\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":58},\"elements\":[{\"id\":\"93ad602\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/130807026\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b747fda\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":700},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":900},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7eab781\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"43661634\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our company is a collective of amazing people striving to build delightful products.\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.4},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70cc6d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.<\\/p>\",\"align\":\"center\",\"text_color\":\"#686868\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"615dfb3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1000},\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"6414755f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3bb26eed\",\"elType\":\"widget\",\"settings\":{\"text\":\"Read More\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3},\"button_text_color\":\"#ffffff\",\"background_color\":\"rgba(0,0,0,0)\",\"hover_color\":\"#00ce1b\",\"button_hover_border_color\":\"#00ce1b\",\"hover_animation\":\"grow\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"123f6d1\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"25fcf2e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"64f593f\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"596f429\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(1410,218,'_elementor_edit_mode','builder'),(1411,218,'_elementor_elements_usage','a:9:{s:7:\"heading\";i:6;s:6:\"column\";i:11;s:7:\"section\";i:9;s:6:\"spacer\";i:2;s:7:\"divider\";i:2;s:11:\"text-editor\";i:3;s:5:\"image\";i:3;s:5:\"video\";i:2;s:6:\"button\";i:1;}'),(1412,218,'_elementor_css','a:5:{s:4:\"time\";i:1568501431;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:1:{i:0;s:0:\"\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(1413,219,'_elementor_template_type','post'),(1414,219,'_elementor_version','2.6.8'),(1415,219,'_elementor_pro_version','2.6.5'),(1416,219,'_wp_page_template','default'),(1417,219,'_elementor_data','[{\"id\":\"55396f27\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":50,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Theatrical_Display_V003C.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_range\":\"viewport\",\"motion_fx_motion_fx_scrolling\":\"yes\",\"layout\":\"full_width\",\"column_position\":\"top\"},\"elements\":[{\"id\":\"59493b21\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b700365\",\"elType\":\"widget\",\"settings\":{\"title\":\"#WHAT\'S COOL\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"80c28d1\",\"elType\":\"section\",\"settings\":{\"structure\":\"00\"},\"elements\":[{\"id\":\"da9c6bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"9ed4503\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"1de7598\",\"elType\":\"widget\",\"settings\":{\"title\":\"INNOVATIONS FROM ONDISPLAY CREATIVE\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7df48509\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\"},\"elements\":[{\"id\":\"1147078d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"23bbc68\",\"elType\":\"widget\",\"settings\":{\"title\":\"LIVING STANDEES HAUNTING THEATERS\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b40d155\",\"elType\":\"widget\",\"settings\":{\"title\":\"ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"700\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86cff8b\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a680ae8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"be59fa3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e36fe5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"d4d2039\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2.jpg\",\"id\":88},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3c9b758\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"79e122a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2-1.jpg\",\"id\":87},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3dc9df5\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"start\":0},\"elements\":[],\"widgetType\":\"video\"},{\"id\":\"b61a90b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"8f63560\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"08c588a\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS CHAPTER 3\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0e612c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>OnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7e77f5a\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"7eb5a21\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.332},\"elements\":[{\"id\":\"ae25867\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/image-asset.jpeg\",\"id\":196},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"24c773b\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":58},\"elements\":[{\"id\":\"93ad602\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/130807026\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b747fda\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":700},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":900},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7eab781\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"43661634\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our company is a collective of amazing people striving to build delightful products.\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.4},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70cc6d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.<\\/p>\",\"align\":\"center\",\"text_color\":\"#686868\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"615dfb3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1000},\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"6414755f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3bb26eed\",\"elType\":\"widget\",\"settings\":{\"text\":\"Read More\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3},\"button_text_color\":\"#ffffff\",\"background_color\":\"rgba(0,0,0,0)\",\"hover_color\":\"#00ce1b\",\"button_hover_border_color\":\"#00ce1b\",\"hover_animation\":\"grow\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"123f6d1\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"25fcf2e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"64f593f\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"596f429\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(1418,219,'_elementor_edit_mode','builder'),(1419,219,'_elementor_elements_usage','a:9:{s:7:\"heading\";i:6;s:6:\"column\";i:11;s:7:\"section\";i:9;s:6:\"spacer\";i:2;s:7:\"divider\";i:2;s:11:\"text-editor\";i:3;s:5:\"image\";i:3;s:5:\"video\";i:2;s:6:\"button\";i:1;}'),(1420,219,'_elementor_css','a:5:{s:4:\"time\";i:1568501431;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:1:{i:0;s:0:\"\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(1421,220,'_elementor_template_type','post'),(1422,220,'_elementor_version','2.6.8'),(1423,220,'_elementor_pro_version','2.6.5'),(1424,220,'_wp_page_template','default'),(1425,220,'_elementor_data','[{\"id\":\"55396f27\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":50,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Theatrical_Display_V003C.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_range\":\"viewport\",\"motion_fx_motion_fx_scrolling\":\"yes\",\"layout\":\"full_width\",\"column_position\":\"top\"},\"elements\":[{\"id\":\"59493b21\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b700365\",\"elType\":\"widget\",\"settings\":{\"title\":\"#WHAT\'S COOL\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"80c28d1\",\"elType\":\"section\",\"settings\":{\"structure\":\"00\"},\"elements\":[{\"id\":\"da9c6bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"9ed4503\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"1de7598\",\"elType\":\"widget\",\"settings\":{\"title\":\"INNOVATIONS FROM ONDISPLAY CREATIVE\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7df48509\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\"},\"elements\":[{\"id\":\"1147078d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"23bbc68\",\"elType\":\"widget\",\"settings\":{\"title\":\"LIVING STANDEES HAUNTING THEATERS\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b40d155\",\"elType\":\"widget\",\"settings\":{\"title\":\"ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"700\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86cff8b\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"225341d\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS \\u2013 THE LAST KEY\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a680ae8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"be59fa3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e36fe5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"d4d2039\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2.jpg\",\"id\":88},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3c9b758\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"79e122a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2-1.jpg\",\"id\":87},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3dc9df5\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"start\":0},\"elements\":[],\"widgetType\":\"video\"},{\"id\":\"b61a90b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"8f63560\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"08c588a\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS CHAPTER 3\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0e612c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>OnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7e77f5a\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"7eb5a21\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.332},\"elements\":[{\"id\":\"ae25867\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/image-asset.jpeg\",\"id\":196},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"24c773b\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":58},\"elements\":[{\"id\":\"93ad602\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/130807026\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b747fda\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":700},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":900},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7eab781\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"43661634\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our company is a collective of amazing people striving to build delightful products.\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.4},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70cc6d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.<\\/p>\",\"align\":\"center\",\"text_color\":\"#686868\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"615dfb3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1000},\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"6414755f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3bb26eed\",\"elType\":\"widget\",\"settings\":{\"text\":\"Read More\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3},\"button_text_color\":\"#ffffff\",\"background_color\":\"rgba(0,0,0,0)\",\"hover_color\":\"#00ce1b\",\"button_hover_border_color\":\"#00ce1b\",\"hover_animation\":\"grow\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"123f6d1\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"25fcf2e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"64f593f\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"596f429\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(1426,220,'_elementor_edit_mode','builder'),(1427,220,'_elementor_elements_usage','a:9:{s:7:\"heading\";i:7;s:6:\"column\";i:11;s:7:\"section\";i:9;s:6:\"spacer\";i:2;s:7:\"divider\";i:2;s:11:\"text-editor\";i:3;s:5:\"image\";i:3;s:5:\"video\";i:2;s:6:\"button\";i:1;}'),(1447,224,'_elementor_template_type','post'),(1429,221,'_wp_trash_meta_status','publish'),(1430,221,'_wp_trash_meta_time','1568501943'),(1431,222,'_elementor_template_type','post'),(1432,222,'_elementor_version','2.6.8'),(1433,222,'_elementor_pro_version','2.6.5'),(1434,222,'_wp_page_template','default'),(1435,222,'_elementor_data','[{\"id\":\"55396f27\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":50,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Theatrical_Display_V003C.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_range\":\"viewport\",\"motion_fx_motion_fx_scrolling\":\"yes\",\"layout\":\"full_width\",\"column_position\":\"top\"},\"elements\":[{\"id\":\"59493b21\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b700365\",\"elType\":\"widget\",\"settings\":{\"title\":\"#WHAT\'S COOL\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"80c28d1\",\"elType\":\"section\",\"settings\":{\"structure\":\"00\"},\"elements\":[{\"id\":\"da9c6bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"9ed4503\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"1de7598\",\"elType\":\"widget\",\"settings\":{\"title\":\"INNOVATIONS FROM ONDISPLAY CREATIVE\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7df48509\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\"},\"elements\":[{\"id\":\"1147078d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"23bbc68\",\"elType\":\"widget\",\"settings\":{\"title\":\"LIVING STANDEES HAUNTING THEATERS\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b40d155\",\"elType\":\"widget\",\"settings\":{\"title\":\"ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"700\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86cff8b\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"225341d\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS \\u2013 THE LAST KEY\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a680ae8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"be59fa3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e36fe5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"d4d2039\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2.jpg\",\"id\":88},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3c9b758\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"79e122a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2-1.jpg\",\"id\":87},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3dc9df5\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"start\":0},\"elements\":[],\"widgetType\":\"video\"},{\"id\":\"b61a90b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"8f63560\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"08c588a\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS CHAPTER 3\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0e612c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>OnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7e77f5a\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"7eb5a21\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.332},\"elements\":[{\"id\":\"ae25867\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/image-asset.jpeg\",\"id\":196},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"24c773b\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":58},\"elements\":[{\"id\":\"93ad602\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/130807026\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b747fda\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":700},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":900},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7eab781\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"43661634\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our company is a collective of amazing people striving to build delightful products.\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.4},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70cc6d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.<\\/p>\",\"align\":\"center\",\"text_color\":\"#686868\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"615dfb3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1000},\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"6414755f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3bb26eed\",\"elType\":\"widget\",\"settings\":{\"text\":\"Read More\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3},\"button_text_color\":\"#ffffff\",\"background_color\":\"rgba(0,0,0,0)\",\"hover_color\":\"#00ce1b\",\"button_hover_border_color\":\"#00ce1b\",\"hover_animation\":\"grow\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"123f6d1\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"25fcf2e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"64f593f\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"596f429\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(1436,222,'_elementor_edit_mode','builder'),(1437,222,'_elementor_elements_usage','a:9:{s:7:\"heading\";i:7;s:6:\"column\";i:11;s:7:\"section\";i:9;s:6:\"spacer\";i:2;s:7:\"divider\";i:2;s:11:\"text-editor\";i:3;s:5:\"image\";i:3;s:5:\"video\";i:2;s:6:\"button\";i:1;}'),(1438,222,'_elementor_css','a:5:{s:4:\"time\";i:1568501889;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:1:{i:0;s:0:\"\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(1439,223,'_elementor_template_type','post'),(1440,223,'_elementor_version','2.6.8'),(1441,223,'_elementor_pro_version','2.6.5'),(1442,223,'_wp_page_template','default'),(1443,223,'_elementor_data','[{\"id\":\"55396f27\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":50,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Theatrical_Display_V003C.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_range\":\"viewport\",\"motion_fx_motion_fx_scrolling\":\"yes\",\"layout\":\"full_width\",\"column_position\":\"top\"},\"elements\":[{\"id\":\"59493b21\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b700365\",\"elType\":\"widget\",\"settings\":{\"title\":\"#WHAT\'S COOL\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"80c28d1\",\"elType\":\"section\",\"settings\":{\"structure\":\"00\"},\"elements\":[{\"id\":\"da9c6bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"9ed4503\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"1de7598\",\"elType\":\"widget\",\"settings\":{\"title\":\"INNOVATIONS FROM ONDISPLAY CREATIVE\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7df48509\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\"},\"elements\":[{\"id\":\"1147078d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"23bbc68\",\"elType\":\"widget\",\"settings\":{\"title\":\"LIVING STANDEES HAUNTING THEATERS\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b40d155\",\"elType\":\"widget\",\"settings\":{\"title\":\"ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"700\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86cff8b\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"225341d\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS \\u2013 THE LAST KEY\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a680ae8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-12\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"be59fa3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e36fe5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"d4d2039\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2.jpg\",\"id\":88},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3c9b758\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"79e122a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2-1.jpg\",\"id\":87},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3dc9df5\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"start\":0},\"elements\":[],\"widgetType\":\"video\"},{\"id\":\"b61a90b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"8f63560\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"08c588a\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS CHAPTER 3\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0e612c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>OnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7e77f5a\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"7eb5a21\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.332},\"elements\":[{\"id\":\"ae25867\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/image-asset.jpeg\",\"id\":196},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"24c773b\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":58},\"elements\":[{\"id\":\"93ad602\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/130807026\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b747fda\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":700},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":900},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7eab781\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"43661634\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our company is a collective of amazing people striving to build delightful products.\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.4},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70cc6d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.<\\/p>\",\"align\":\"center\",\"text_color\":\"#686868\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"615dfb3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1000},\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"6414755f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3bb26eed\",\"elType\":\"widget\",\"settings\":{\"text\":\"Read More\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3},\"button_text_color\":\"#ffffff\",\"background_color\":\"rgba(0,0,0,0)\",\"hover_color\":\"#00ce1b\",\"button_hover_border_color\":\"#00ce1b\",\"hover_animation\":\"grow\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"123f6d1\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"25fcf2e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"64f593f\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"596f429\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(1444,223,'_elementor_edit_mode','builder'),(1445,223,'_elementor_elements_usage','a:9:{s:7:\"heading\";i:7;s:6:\"column\";i:11;s:7:\"section\";i:9;s:6:\"spacer\";i:2;s:7:\"divider\";i:2;s:11:\"text-editor\";i:3;s:5:\"image\";i:3;s:5:\"video\";i:2;s:6:\"button\";i:1;}'),(1446,223,'_elementor_css','a:5:{s:4:\"time\";i:1568501889;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:1:{i:0;s:0:\"\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(1448,224,'_elementor_version','2.6.8'),(1449,224,'_elementor_pro_version','2.6.5'),(1450,224,'_wp_page_template','default'),(1451,224,'_elementor_data','[{\"id\":\"55396f27\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":50,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Theatrical_Display_V003C.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_range\":\"viewport\",\"motion_fx_motion_fx_scrolling\":\"yes\",\"layout\":\"full_width\",\"column_position\":\"top\"},\"elements\":[{\"id\":\"59493b21\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b700365\",\"elType\":\"widget\",\"settings\":{\"title\":\"#WHAT\'S COOL\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"80c28d1\",\"elType\":\"section\",\"settings\":{\"structure\":\"00\"},\"elements\":[{\"id\":\"da9c6bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"9ed4503\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"1de7598\",\"elType\":\"widget\",\"settings\":{\"title\":\"INNOVATIONS FROM ONDISPLAY CREATIVE\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7df48509\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\"},\"elements\":[{\"id\":\"1147078d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"23bbc68\",\"elType\":\"widget\",\"settings\":{\"title\":\"LIVING STANDEES HAUNTING THEATERS\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b40d155\",\"elType\":\"widget\",\"settings\":{\"title\":\"ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"700\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86cff8b\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"225341d\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS \\u2013 THE LAST KEY\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a680ae8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-12\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"be59fa3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e36fe5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"d4d2039\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2.jpg\",\"id\":88},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3c9b758\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"79e122a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2-1.jpg\",\"id\":87},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3dc9df5\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"start\":0},\"elements\":[],\"widgetType\":\"video\"},{\"id\":\"b61a90b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"8f63560\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"08c588a\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS CHAPTER 3\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0e612c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>OnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-12\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7e77f5a\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"7eb5a21\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.332},\"elements\":[{\"id\":\"ae25867\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/image-asset.jpeg\",\"id\":196},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"24c773b\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":58},\"elements\":[{\"id\":\"93ad602\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/130807026\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b747fda\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":700},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":900},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7eab781\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"43661634\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our company is a collective of amazing people striving to build delightful products.\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.4},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70cc6d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.<\\/p>\",\"align\":\"center\",\"text_color\":\"#686868\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"615dfb3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1000},\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"6414755f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3bb26eed\",\"elType\":\"widget\",\"settings\":{\"text\":\"Read More\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3},\"button_text_color\":\"#ffffff\",\"background_color\":\"rgba(0,0,0,0)\",\"hover_color\":\"#00ce1b\",\"button_hover_border_color\":\"#00ce1b\",\"hover_animation\":\"grow\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"123f6d1\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"25fcf2e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"64f593f\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"596f429\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(1452,224,'_elementor_edit_mode','builder'),(1453,224,'_elementor_elements_usage','a:9:{s:7:\"heading\";i:7;s:6:\"column\";i:11;s:7:\"section\";i:9;s:6:\"spacer\";i:2;s:7:\"divider\";i:2;s:11:\"text-editor\";i:3;s:5:\"image\";i:3;s:5:\"video\";i:2;s:6:\"button\";i:1;}'),(1454,225,'_elementor_template_type','post'),(1455,225,'_elementor_version','2.6.8'),(1456,225,'_elementor_pro_version','2.6.5'),(1457,225,'_wp_page_template','default'),(1458,225,'_elementor_data','[{\"id\":\"55396f27\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":50,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Theatrical_Display_V003C.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_range\":\"viewport\",\"motion_fx_motion_fx_scrolling\":\"yes\",\"layout\":\"full_width\",\"column_position\":\"top\"},\"elements\":[{\"id\":\"59493b21\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b700365\",\"elType\":\"widget\",\"settings\":{\"title\":\"#WHAT\'S COOL\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"80c28d1\",\"elType\":\"section\",\"settings\":{\"structure\":\"00\"},\"elements\":[{\"id\":\"da9c6bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"9ed4503\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"1de7598\",\"elType\":\"widget\",\"settings\":{\"title\":\"INNOVATIONS FROM ONDISPLAY CREATIVE\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7df48509\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\"},\"elements\":[{\"id\":\"1147078d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"23bbc68\",\"elType\":\"widget\",\"settings\":{\"title\":\"LIVING STANDEES HAUNTING THEATERS\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b40d155\",\"elType\":\"widget\",\"settings\":{\"title\":\"ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"700\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86cff8b\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"225341d\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS \\u2013 THE LAST KEY\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a680ae8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-12\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"be59fa3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e36fe5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"d4d2039\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2.jpg\",\"id\":88},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3c9b758\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"79e122a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2-1.jpg\",\"id\":87},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3dc9df5\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"start\":0},\"elements\":[],\"widgetType\":\"video\"},{\"id\":\"b61a90b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"8f63560\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"08c588a\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS CHAPTER 3\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0e612c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>OnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-12\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7e77f5a\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"7eb5a21\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.332},\"elements\":[{\"id\":\"ae25867\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/image-asset.jpeg\",\"id\":196},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"24c773b\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":58},\"elements\":[{\"id\":\"93ad602\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/130807026\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b747fda\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":700},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":900},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7eab781\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"43661634\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our company is a collective of amazing people striving to build delightful products.\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.4},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70cc6d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.<\\/p>\",\"align\":\"center\",\"text_color\":\"#686868\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"615dfb3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1000},\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"6414755f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3bb26eed\",\"elType\":\"widget\",\"settings\":{\"text\":\"Read More\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3},\"button_text_color\":\"#ffffff\",\"background_color\":\"rgba(0,0,0,0)\",\"hover_color\":\"#00ce1b\",\"button_hover_border_color\":\"#00ce1b\",\"hover_animation\":\"grow\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"123f6d1\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"25fcf2e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"64f593f\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"596f429\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(1459,225,'_elementor_edit_mode','builder'),(1460,225,'_elementor_elements_usage','a:9:{s:7:\"heading\";i:7;s:6:\"column\";i:11;s:7:\"section\";i:9;s:6:\"spacer\";i:2;s:7:\"divider\";i:2;s:11:\"text-editor\";i:3;s:5:\"image\";i:3;s:5:\"video\";i:2;s:6:\"button\";i:1;}'),(1461,226,'_elementor_template_type','post'),(1462,226,'_elementor_version','2.6.8'),(1463,226,'_elementor_pro_version','2.6.5'),(1464,226,'_wp_page_template','default'),(1465,226,'_elementor_data','[{\"id\":\"55396f27\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":50,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Theatrical_Display_V003C.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_range\":\"viewport\",\"motion_fx_motion_fx_scrolling\":\"yes\",\"layout\":\"full_width\",\"column_position\":\"top\"},\"elements\":[{\"id\":\"59493b21\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b700365\",\"elType\":\"widget\",\"settings\":{\"title\":\"#WHAT\'S COOL\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"80c28d1\",\"elType\":\"section\",\"settings\":{\"structure\":\"00\"},\"elements\":[{\"id\":\"da9c6bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"9ed4503\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"1de7598\",\"elType\":\"widget\",\"settings\":{\"title\":\"INNOVATIONS FROM ONDISPLAY CREATIVE\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7df48509\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\"},\"elements\":[{\"id\":\"1147078d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"23bbc68\",\"elType\":\"widget\",\"settings\":{\"title\":\"LIVING STANDEES HAUNTING THEATERS\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b40d155\",\"elType\":\"widget\",\"settings\":{\"title\":\"ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"700\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86cff8b\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"225341d\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS \\u2013 THE LAST KEY\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a680ae8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"be59fa3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e36fe5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"d4d2039\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2.jpg\",\"id\":88},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3c9b758\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"79e122a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2-1.jpg\",\"id\":87},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3dc9df5\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"start\":0},\"elements\":[],\"widgetType\":\"video\"},{\"id\":\"b61a90b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"8f63560\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"08c588a\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS CHAPTER 3\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0e612c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>OnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7e77f5a\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"7eb5a21\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.332},\"elements\":[{\"id\":\"ae25867\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/image-asset.jpeg\",\"id\":196},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"24c773b\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":58},\"elements\":[{\"id\":\"93ad602\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/130807026\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b747fda\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":700},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":900},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7eab781\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"43661634\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our company is a collective of amazing people striving to build delightful products.\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.4},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70cc6d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.<\\/p>\",\"align\":\"center\",\"text_color\":\"#686868\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"615dfb3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1000},\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"6414755f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3bb26eed\",\"elType\":\"widget\",\"settings\":{\"text\":\"Read More\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3},\"button_text_color\":\"#ffffff\",\"background_color\":\"rgba(0,0,0,0)\",\"hover_color\":\"#00ce1b\",\"button_hover_border_color\":\"#00ce1b\",\"hover_animation\":\"grow\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"123f6d1\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"25fcf2e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"64f593f\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"596f429\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(1466,226,'_elementor_edit_mode','builder'),(1467,226,'_elementor_elements_usage','a:9:{s:7:\"heading\";i:7;s:6:\"column\";i:11;s:7:\"section\";i:9;s:6:\"spacer\";i:2;s:7:\"divider\";i:2;s:11:\"text-editor\";i:3;s:5:\"image\";i:3;s:5:\"video\";i:2;s:6:\"button\";i:1;}'),(1468,227,'_elementor_template_type','post'),(1469,227,'_elementor_version','2.6.8'),(1470,227,'_elementor_pro_version','2.6.5'),(1471,227,'_wp_page_template','default'),(1472,227,'_elementor_data','[{\"id\":\"55396f27\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":50,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Theatrical_Display_V003C.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_range\":\"viewport\",\"motion_fx_motion_fx_scrolling\":\"yes\",\"layout\":\"full_width\",\"column_position\":\"top\"},\"elements\":[{\"id\":\"59493b21\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b700365\",\"elType\":\"widget\",\"settings\":{\"title\":\"#WHAT\'S COOL\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"80c28d1\",\"elType\":\"section\",\"settings\":{\"structure\":\"00\"},\"elements\":[{\"id\":\"da9c6bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"9ed4503\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"1de7598\",\"elType\":\"widget\",\"settings\":{\"title\":\"INNOVATIONS FROM ONDISPLAY CREATIVE\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7df48509\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\"},\"elements\":[{\"id\":\"1147078d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"23bbc68\",\"elType\":\"widget\",\"settings\":{\"title\":\"LIVING STANDEES HAUNTING THEATERS\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b40d155\",\"elType\":\"widget\",\"settings\":{\"title\":\"ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"700\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86cff8b\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"225341d\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS \\u2013 THE LAST KEY\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a680ae8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"be59fa3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e36fe5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"d4d2039\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2.jpg\",\"id\":88},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3c9b758\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"79e122a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2-1.jpg\",\"id\":87},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3dc9df5\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"start\":0},\"elements\":[],\"widgetType\":\"video\"},{\"id\":\"b61a90b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"8f63560\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"08c588a\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS CHAPTER 3\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0e612c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>OnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7e77f5a\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"gap\":\"wide\"},\"elements\":[{\"id\":\"7eb5a21\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.332},\"elements\":[{\"id\":\"ae25867\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/image-asset.jpeg\",\"id\":196},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"24c773b\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":58},\"elements\":[{\"id\":\"93ad602\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/130807026\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b747fda\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":700},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":900},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7eab781\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"43661634\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our company is a collective of amazing people striving to build delightful products.\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.4},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70cc6d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.<\\/p>\",\"align\":\"center\",\"text_color\":\"#686868\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"615dfb3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1000},\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"6414755f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3bb26eed\",\"elType\":\"widget\",\"settings\":{\"text\":\"Read More\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3},\"button_text_color\":\"#ffffff\",\"background_color\":\"rgba(0,0,0,0)\",\"hover_color\":\"#00ce1b\",\"button_hover_border_color\":\"#00ce1b\",\"hover_animation\":\"grow\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"123f6d1\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"25fcf2e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"64f593f\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"596f429\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(1473,227,'_elementor_edit_mode','builder'),(1474,227,'_elementor_elements_usage','a:9:{s:7:\"heading\";i:7;s:6:\"column\";i:11;s:7:\"section\";i:9;s:6:\"spacer\";i:2;s:7:\"divider\";i:2;s:11:\"text-editor\";i:3;s:5:\"image\";i:3;s:5:\"video\";i:2;s:6:\"button\";i:1;}'),(1505,235,'_elementor_template_type','post'),(1506,235,'_elementor_version','2.6.8'),(1507,235,'_elementor_pro_version','2.6.5'),(1508,235,'_wp_page_template','default'),(1509,235,'_elementor_data','[{\"id\":\"55396f27\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":50,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Theatrical_Display_V003C.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_range\":\"viewport\",\"motion_fx_motion_fx_scrolling\":\"yes\",\"layout\":\"full_width\",\"column_position\":\"top\"},\"elements\":[{\"id\":\"59493b21\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b700365\",\"elType\":\"widget\",\"settings\":{\"title\":\"#WHAT\'S COOL\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"80c28d1\",\"elType\":\"section\",\"settings\":{\"structure\":\"00\"},\"elements\":[{\"id\":\"da9c6bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"9ed4503\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"1de7598\",\"elType\":\"widget\",\"settings\":{\"title\":\"INNOVATIONS FROM ONDISPLAY CREATIVE\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7df48509\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\"},\"elements\":[{\"id\":\"1147078d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"23bbc68\",\"elType\":\"widget\",\"settings\":{\"title\":\"LIVING STANDEES HAUNTING THEATERS\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b40d155\",\"elType\":\"widget\",\"settings\":{\"title\":\"ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"700\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86cff8b\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"225341d\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS \\u2013 THE LAST KEY\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a680ae8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"be59fa3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e36fe5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"d4d2039\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2.jpg\",\"id\":88},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3c9b758\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"79e122a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2-1.jpg\",\"id\":87},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3dc9df5\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"start\":0},\"elements\":[],\"widgetType\":\"video\"},{\"id\":\"b61a90b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"8f63560\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"08c588a\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS CHAPTER 3\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0e612c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>OnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7e77f5a\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"gap\":\"wide\"},\"elements\":[{\"id\":\"7eb5a21\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.332},\"elements\":[{\"id\":\"ae25867\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/image-asset.jpeg\",\"id\":196},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"24c773b\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":58},\"elements\":[{\"id\":\"93ad602\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/130807026\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"236bdcf\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\"},\"elements\":[{\"id\":\"8a0b6da\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"e28765e\",\"elType\":\"widget\",\"settings\":{\"title\":\"VIRTUAL REALITY EXPERIENCE\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4d0f48c\",\"elType\":\"widget\",\"settings\":{\"title\":\"SOMETHING SOMETHING SOMETHING\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"700\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5a6ec50\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"93d4126\",\"elType\":\"widget\",\"settings\":{\"title\":\"SPIDER-MAN HOMECOMING DISPLAY\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bccfc67\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Submerse yourself in the world of your friendly neighborhood Spider-Man in this fun and thrilling VR Theatrical Display.\\u00a0\\u00a0Based on the all-new 2017 film, the Spider-Man Homecoming VR Experience is a first-person look through the eyes of Spidey himself.<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f786650\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"ec1b52b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":76},\"elements\":[{\"id\":\"74ca310\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Spidey_Home_V4_002.jpg\",\"id\":230},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"css_filters_css_filter\":\"custom\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"265cdc0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":24},\"elements\":[{\"id\":\"35c3d80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/IMG_3834.jpg\",\"id\":231},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"677c7e5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/IMG_3788.jpg\",\"id\":233}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"c22aabe\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"9a54f1a\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b747fda\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":700},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":900},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7eab781\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"43661634\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our company is a collective of amazing people striving to build delightful products.\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.4},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70cc6d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.<\\/p>\",\"align\":\"center\",\"text_color\":\"#686868\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"615dfb3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1000},\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"6414755f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3bb26eed\",\"elType\":\"widget\",\"settings\":{\"text\":\"Read More\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3},\"button_text_color\":\"#ffffff\",\"background_color\":\"rgba(0,0,0,0)\",\"hover_color\":\"#00ce1b\",\"button_hover_border_color\":\"#00ce1b\",\"hover_animation\":\"grow\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"123f6d1\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"25fcf2e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"64f593f\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"596f429\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(1497,234,'_elementor_template_type','post'),(1498,234,'_elementor_version','2.6.8'),(1499,234,'_elementor_pro_version','2.6.5'),(1500,234,'_wp_page_template','default'),(1501,234,'_elementor_data','[{\"id\":\"55396f27\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":50,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Theatrical_Display_V003C.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_range\":\"viewport\",\"motion_fx_motion_fx_scrolling\":\"yes\",\"layout\":\"full_width\",\"column_position\":\"top\"},\"elements\":[{\"id\":\"59493b21\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b700365\",\"elType\":\"widget\",\"settings\":{\"title\":\"#WHAT\'S COOL\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"80c28d1\",\"elType\":\"section\",\"settings\":{\"structure\":\"00\"},\"elements\":[{\"id\":\"da9c6bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"9ed4503\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"1de7598\",\"elType\":\"widget\",\"settings\":{\"title\":\"INNOVATIONS FROM ONDISPLAY CREATIVE\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7df48509\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\"},\"elements\":[{\"id\":\"1147078d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"23bbc68\",\"elType\":\"widget\",\"settings\":{\"title\":\"LIVING STANDEES HAUNTING THEATERS\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b40d155\",\"elType\":\"widget\",\"settings\":{\"title\":\"ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"700\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86cff8b\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"225341d\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS \\u2013 THE LAST KEY\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a680ae8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"be59fa3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e36fe5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"d4d2039\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2.jpg\",\"id\":88},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3c9b758\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"79e122a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2-1.jpg\",\"id\":87},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3dc9df5\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"start\":0},\"elements\":[],\"widgetType\":\"video\"},{\"id\":\"b61a90b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"8f63560\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"08c588a\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS CHAPTER 3\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0e612c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>OnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7e77f5a\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"gap\":\"wide\"},\"elements\":[{\"id\":\"7eb5a21\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.332},\"elements\":[{\"id\":\"ae25867\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/image-asset.jpeg\",\"id\":196},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"24c773b\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":58},\"elements\":[{\"id\":\"93ad602\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/130807026\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"236bdcf\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\"},\"elements\":[{\"id\":\"8a0b6da\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"e28765e\",\"elType\":\"widget\",\"settings\":{\"title\":\"VIRTUAL REALITY EXPERIENCE\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4d0f48c\",\"elType\":\"widget\",\"settings\":{\"title\":\"SOMETHING SOMETHING SOMETHING\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"700\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5a6ec50\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"93d4126\",\"elType\":\"widget\",\"settings\":{\"title\":\"SPIDER-MAN HOMECOMING DISPLAY\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bccfc67\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Submerse yourself in the world of your friendly neighborhood Spider-Man in this fun and thrilling VR Theatrical Display.\\u00a0\\u00a0Based on the all-new 2017 film, the Spider-Man Homecoming VR Experience is a first-person look through the eyes of Spidey himself.<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f786650\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"ec1b52b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":76},\"elements\":[{\"id\":\"74ca310\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Spidey_Home_V4_002.jpg\",\"id\":230},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"css_filters_css_filter\":\"custom\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"265cdc0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":24},\"elements\":[{\"id\":\"35c3d80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/IMG_3834.jpg\",\"id\":231},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"677c7e5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/IMG_3788.jpg\",\"id\":233}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"c22aabe\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"9a54f1a\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"c5e15ea\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS CHAPTER 3\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b747fda\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":700},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":900},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7eab781\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"43661634\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our company is a collective of amazing people striving to build delightful products.\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.4},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70cc6d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.<\\/p>\",\"align\":\"center\",\"text_color\":\"#686868\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"615dfb3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1000},\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"6414755f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3bb26eed\",\"elType\":\"widget\",\"settings\":{\"text\":\"Read More\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3},\"button_text_color\":\"#ffffff\",\"background_color\":\"rgba(0,0,0,0)\",\"hover_color\":\"#00ce1b\",\"button_hover_border_color\":\"#00ce1b\",\"hover_animation\":\"grow\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"123f6d1\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"25fcf2e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"64f593f\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"596f429\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(1475,228,'_elementor_template_type','post'),(1476,228,'_elementor_version','2.6.8'),(1477,228,'_elementor_pro_version','2.6.5'),(1478,228,'_wp_page_template','default'),(1479,228,'_elementor_data','[{\"id\":\"55396f27\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":50,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Theatrical_Display_V003C.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_range\":\"viewport\",\"motion_fx_motion_fx_scrolling\":\"yes\",\"layout\":\"full_width\",\"column_position\":\"top\"},\"elements\":[{\"id\":\"59493b21\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b700365\",\"elType\":\"widget\",\"settings\":{\"title\":\"#WHAT\'S COOL\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"80c28d1\",\"elType\":\"section\",\"settings\":{\"structure\":\"00\"},\"elements\":[{\"id\":\"da9c6bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"9ed4503\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"1de7598\",\"elType\":\"widget\",\"settings\":{\"title\":\"INNOVATIONS FROM ONDISPLAY CREATIVE\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7df48509\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\"},\"elements\":[{\"id\":\"1147078d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"23bbc68\",\"elType\":\"widget\",\"settings\":{\"title\":\"LIVING STANDEES HAUNTING THEATERS\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b40d155\",\"elType\":\"widget\",\"settings\":{\"title\":\"ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"700\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86cff8b\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"225341d\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS \\u2013 THE LAST KEY\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a680ae8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"be59fa3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e36fe5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"d4d2039\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2.jpg\",\"id\":88},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3c9b758\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"79e122a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2-1.jpg\",\"id\":87},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3dc9df5\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"start\":0},\"elements\":[],\"widgetType\":\"video\"},{\"id\":\"b61a90b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"8f63560\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"08c588a\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS CHAPTER 3\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0e612c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>OnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7e77f5a\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"gap\":\"wide\"},\"elements\":[{\"id\":\"7eb5a21\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.332},\"elements\":[{\"id\":\"ae25867\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/image-asset.jpeg\",\"id\":196},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"24c773b\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":58},\"elements\":[{\"id\":\"93ad602\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/130807026\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"236bdcf\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\"},\"elements\":[{\"id\":\"8a0b6da\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"e28765e\",\"elType\":\"widget\",\"settings\":{\"title\":\"VIRTUAL REALITY EXPERIENCE\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4d0f48c\",\"elType\":\"widget\",\"settings\":{\"title\":\"ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"700\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5a6ec50\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"93d4126\",\"elType\":\"widget\",\"settings\":{\"title\":\"SPIDER-MAN HOMECOMING DISPLAY\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bccfc67\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Submerse yourself in the world of your friendly neighborhood Spider-Man in this fun and thrilling VR Theatrical Display.\\u00a0\\u00a0Based on the all-new 2017 film, the Spider-Man Homecoming VR Experience is a first-person look through the eyes of Spidey himself.<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f786650\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"ec1b52b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"74ca310\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2.jpg\",\"id\":88},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"265cdc0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"35c3d80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2-1.jpg\",\"id\":87},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f610276\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"start\":0},\"elements\":[],\"widgetType\":\"video\"},{\"id\":\"c22aabe\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"9a54f1a\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"c5e15ea\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS CHAPTER 3\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e2357bb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>OnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"cd99174\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"gap\":\"wide\"},\"elements\":[{\"id\":\"4329a8c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.332},\"elements\":[{\"id\":\"d640a56\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/image-asset.jpeg\",\"id\":196},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"feea4e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":58},\"elements\":[{\"id\":\"7073819\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/130807026\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b747fda\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":700},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":900},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7eab781\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"43661634\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our company is a collective of amazing people striving to build delightful products.\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.4},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70cc6d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.<\\/p>\",\"align\":\"center\",\"text_color\":\"#686868\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"615dfb3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1000},\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"6414755f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3bb26eed\",\"elType\":\"widget\",\"settings\":{\"text\":\"Read More\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3},\"button_text_color\":\"#ffffff\",\"background_color\":\"rgba(0,0,0,0)\",\"hover_color\":\"#00ce1b\",\"button_hover_border_color\":\"#00ce1b\",\"hover_animation\":\"grow\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"123f6d1\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"25fcf2e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"64f593f\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"596f429\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(1480,228,'_elementor_edit_mode','builder'),(1481,228,'_elementor_elements_usage','a:9:{s:7:\"heading\";i:11;s:6:\"column\";i:16;s:7:\"section\";i:12;s:6:\"spacer\";i:3;s:7:\"divider\";i:4;s:11:\"text-editor\";i:5;s:5:\"image\";i:6;s:5:\"video\";i:4;s:6:\"button\";i:1;}'),(1502,234,'_elementor_edit_mode','builder'),(1503,234,'_elementor_elements_usage','a:9:{s:7:\"heading\";i:11;s:6:\"column\";i:14;s:7:\"section\";i:11;s:6:\"spacer\";i:3;s:7:\"divider\";i:4;s:11:\"text-editor\";i:4;s:5:\"image\";i:6;s:5:\"video\";i:2;s:6:\"button\";i:1;}'),(1624,250,'_elementor_template_type','post'),(1625,250,'_elementor_version','2.6.8'),(1626,250,'_elementor_pro_version','2.6.5'),(1489,230,'_wp_attached_file','2019/09/Spidey_Home_V4_002.jpg'),(1490,230,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2500;s:6:\"height\";i:1736;s:4:\"file\";s:30:\"2019/09/Spidey_Home_V4_002.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"Spidey_Home_V4_002-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:30:\"Spidey_Home_V4_002-300x208.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:208;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:30:\"Spidey_Home_V4_002-768x533.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:533;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:31:\"Spidey_Home_V4_002-1024x711.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:711;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1491,231,'_wp_attached_file','2019/09/IMG_3834.jpg'),(1492,231,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:750;s:6:\"height\";i:1000;s:4:\"file\";s:20:\"2019/09/IMG_3834.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"IMG_3834-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"IMG_3834-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1495,233,'_wp_attached_file','2019/09/IMG_3788.jpg'),(1496,233,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:750;s:6:\"height\";i:750;s:4:\"file\";s:20:\"2019/09/IMG_3788.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"IMG_3788-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"IMG_3788-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1510,235,'_elementor_edit_mode','builder'),(1511,235,'_elementor_elements_usage','a:9:{s:7:\"heading\";i:10;s:6:\"column\";i:14;s:7:\"section\";i:11;s:6:\"spacer\";i:3;s:7:\"divider\";i:4;s:11:\"text-editor\";i:4;s:5:\"image\";i:6;s:5:\"video\";i:2;s:6:\"button\";i:1;}'),(1512,235,'_elementor_css','a:5:{s:4:\"time\";i:1568503501;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:1:{i:0;s:0:\"\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(1514,236,'_edit_lock','1568663912:1'),(1515,236,'_edit_last','1'),(1516,236,'site-sidebar-layout','no-sidebar'),(1517,236,'site-content-layout','page-builder'),(1518,236,'theme-transparent-header-meta','default'),(1519,236,'_elementor_template_type','post'),(1520,236,'_elementor_version','2.6.8'),(1521,236,'_elementor_pro_version','2.6.5'),(1522,236,'_astra_content_layout_flag','disabled'),(1523,236,'site-post-title','disabled'),(1524,236,'ast-title-bar-display','disabled'),(1525,236,'ast-featured-img','disabled'),(1526,236,'_wp_page_template','default'),(1527,236,'_elementor_data','[{\"id\":\"55396f27\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":50,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Theatrical_Display_V003C.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_range\":\"viewport\",\"motion_fx_motion_fx_scrolling\":\"yes\",\"layout\":\"full_width\",\"column_position\":\"top\"},\"elements\":[{\"id\":\"59493b21\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6a57d05\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"d8e4d5c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b4e5d70\",\"elType\":\"widget\",\"settings\":{\"title\":\"#WHAT\'S COOL\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"22443a9\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\"},\"elements\":[{\"id\":\"274b08d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"447f978\",\"elType\":\"widget\",\"settings\":{\"title\":\"INNOVATIONS FROM ONDISPLAY CREATIVE\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7df48509\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\"},\"elements\":[{\"id\":\"1147078d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"23bbc68\",\"elType\":\"widget\",\"settings\":{\"title\":\"LIVING STANDEES HAUNTING THEATERS\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b40d155\",\"elType\":\"widget\",\"settings\":{\"title\":\"ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"700\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86cff8b\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"225341d\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS \\u2013 THE LAST KEY\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a680ae8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"be59fa3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e36fe5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"d4d2039\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2.jpg\",\"id\":88},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3c9b758\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"79e122a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2-1.jpg\",\"id\":87},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3dc9df5\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"start\":0},\"elements\":[],\"widgetType\":\"video\"},{\"id\":\"b61a90b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"8f63560\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"08c588a\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS CHAPTER 3\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0e612c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>OnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7e77f5a\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"gap\":\"wide\"},\"elements\":[{\"id\":\"7eb5a21\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.332},\"elements\":[{\"id\":\"ae25867\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/image-asset.jpeg\",\"id\":196},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"24c773b\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":58},\"elements\":[{\"id\":\"93ad602\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/130807026\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"236bdcf\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\"},\"elements\":[{\"id\":\"8a0b6da\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"e28765e\",\"elType\":\"widget\",\"settings\":{\"title\":\"VIRTUAL REALITY EXPERIENCE\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4d0f48c\",\"elType\":\"widget\",\"settings\":{\"title\":\"SOMETHING SOMETHING SOMETHING\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"700\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5a6ec50\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"93d4126\",\"elType\":\"widget\",\"settings\":{\"title\":\"SPIDER-MAN HOMECOMING DISPLAY\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bccfc67\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Submerse yourself in the world of your friendly neighborhood Spider-Man in this fun and thrilling VR Theatrical Display.\\u00a0\\u00a0Based on the all-new 2017 film, the Spider-Man Homecoming VR Experience is a first-person look through the eyes of Spidey himself.<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f786650\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"ec1b52b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":76},\"elements\":[{\"id\":\"74ca310\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Spidey_Home_V4_002.jpg\",\"id\":230},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"css_filters_css_filter\":\"custom\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"265cdc0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":24},\"elements\":[{\"id\":\"35c3d80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/IMG_3834.jpg\",\"id\":231},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"677c7e5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/IMG_3788.jpg\",\"id\":233}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"c22aabe\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"9a54f1a\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b747fda\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":700},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":900},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7eab781\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"43661634\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our company is a collective of amazing people striving to build delightful products.\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.4},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70cc6d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.<\\/p>\",\"align\":\"center\",\"text_color\":\"#686868\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"615dfb3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1000},\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"6414755f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3bb26eed\",\"elType\":\"widget\",\"settings\":{\"text\":\"Read More\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3},\"button_text_color\":\"#ffffff\",\"background_color\":\"rgba(0,0,0,0)\",\"hover_color\":\"#00ce1b\",\"button_hover_border_color\":\"#00ce1b\",\"hover_animation\":\"grow\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"123f6d1\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"25fcf2e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"64f593f\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"596f429\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(1528,236,'_elementor_edit_mode','builder'),(1529,236,'_elementor_elements_usage','a:9:{s:7:\"heading\";i:10;s:6:\"column\";i:15;s:7:\"section\";i:12;s:7:\"divider\";i:4;s:11:\"text-editor\";i:4;s:5:\"image\";i:6;s:5:\"video\";i:2;s:6:\"spacer\";i:2;s:6:\"button\";i:1;}'),(1530,236,'_oembed_716ef4742e78124fc3af93f9a5adead9','<iframe title=\"vimeo placeholder\" src=\"https://player.vimeo.com/video/235215203?dnt=1&amp;app_id=122963\" width=\"1200\" height=\"675\" frameborder=\"0\" allow=\"autoplay; fullscreen\" allowfullscreen></iframe>'),(1531,236,'_oembed_time_716ef4742e78124fc3af93f9a5adead9','1568415948'),(1532,236,'_oembed_e6d64697975779fabdc4f171c0e483ef','<iframe title=\"THE LAST KEYS\" src=\"https://player.vimeo.com/video/257088337?dnt=1&amp;app_id=122963\" width=\"1200\" height=\"675\" frameborder=\"0\" allow=\"autoplay; fullscreen\" allowfullscreen></iframe>'),(1533,236,'_oembed_time_e6d64697975779fabdc4f171c0e483ef','1568416156'),(1534,236,'_oembed_279ad5f32a0cbffcb010fb545e057300','<iframe title=\"THE LAST KEYS\" src=\"https://player.vimeo.com/video/257088337?dnt=1&amp;app_id=122963\" width=\"500\" height=\"281\" frameborder=\"0\" allow=\"autoplay; fullscreen\" allowfullscreen></iframe>'),(1535,236,'_oembed_time_279ad5f32a0cbffcb010fb545e057300','1568417794'),(1536,236,'_oembed_e13e37e158f1a96aa51308acb0afc6e0','<iframe title=\"INSIDIOUS 3 - LIVING STANDEE\" src=\"https://player.vimeo.com/video/130807026?dnt=1&amp;app_id=122963\" width=\"640\" height=\"362\" frameborder=\"0\" allow=\"autoplay; fullscreen\" allowfullscreen></iframe>'),(1537,236,'_oembed_time_e13e37e158f1a96aa51308acb0afc6e0','1568479205'),(1538,236,'_oembed_54d24d33cdea7e3fdd01357656b94060','<iframe title=\"INSIDIOUS 3 - LIVING STANDEE\" src=\"https://player.vimeo.com/video/130807026?dnt=1&amp;app_id=122963\" width=\"500\" height=\"283\" frameborder=\"0\" allow=\"autoplay; fullscreen\" allowfullscreen></iframe>'),(1539,236,'_oembed_time_54d24d33cdea7e3fdd01357656b94060','1568480131'),(1541,237,'_elementor_template_type','post'),(1542,237,'_elementor_version','2.6.8'),(1543,237,'_elementor_pro_version','2.6.5'),(1544,237,'_wp_page_template','default'),(1545,237,'_elementor_data','[{\"id\":\"55396f27\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":50,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Theatrical_Display_V003C.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_range\":\"viewport\",\"motion_fx_motion_fx_scrolling\":\"yes\",\"layout\":\"full_width\",\"column_position\":\"top\"},\"elements\":[{\"id\":\"59493b21\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b700365\",\"elType\":\"widget\",\"settings\":{\"title\":\"#WHAT\'S COOL\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"80c28d1\",\"elType\":\"section\",\"settings\":{\"structure\":\"00\"},\"elements\":[{\"id\":\"da9c6bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"9ed4503\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"1de7598\",\"elType\":\"widget\",\"settings\":{\"title\":\"INNOVATIONS FROM ONDISPLAY CREATIVE\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7df48509\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\"},\"elements\":[{\"id\":\"1147078d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"23bbc68\",\"elType\":\"widget\",\"settings\":{\"title\":\"LIVING STANDEES HAUNTING THEATERS\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b40d155\",\"elType\":\"widget\",\"settings\":{\"title\":\"ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"700\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86cff8b\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"225341d\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS \\u2013 THE LAST KEY\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a680ae8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"be59fa3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e36fe5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"d4d2039\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2.jpg\",\"id\":88},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3c9b758\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"79e122a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2-1.jpg\",\"id\":87},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3dc9df5\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"start\":0},\"elements\":[],\"widgetType\":\"video\"},{\"id\":\"b61a90b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"8f63560\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"08c588a\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS CHAPTER 3\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0e612c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>OnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7e77f5a\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"gap\":\"wide\"},\"elements\":[{\"id\":\"7eb5a21\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.332},\"elements\":[{\"id\":\"ae25867\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/image-asset.jpeg\",\"id\":196},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"24c773b\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":58},\"elements\":[{\"id\":\"93ad602\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/130807026\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"236bdcf\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\"},\"elements\":[{\"id\":\"8a0b6da\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"e28765e\",\"elType\":\"widget\",\"settings\":{\"title\":\"VIRTUAL REALITY EXPERIENCE\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4d0f48c\",\"elType\":\"widget\",\"settings\":{\"title\":\"SOMETHING SOMETHING SOMETHING\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"700\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5a6ec50\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"93d4126\",\"elType\":\"widget\",\"settings\":{\"title\":\"SPIDER-MAN HOMECOMING DISPLAY\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bccfc67\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Submerse yourself in the world of your friendly neighborhood Spider-Man in this fun and thrilling VR Theatrical Display.\\u00a0\\u00a0Based on the all-new 2017 film, the Spider-Man Homecoming VR Experience is a first-person look through the eyes of Spidey himself.<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f786650\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"ec1b52b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":76},\"elements\":[{\"id\":\"74ca310\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Spidey_Home_V4_002.jpg\",\"id\":230},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"css_filters_css_filter\":\"custom\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"265cdc0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":24},\"elements\":[{\"id\":\"35c3d80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/IMG_3834.jpg\",\"id\":231},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"677c7e5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/IMG_3788.jpg\",\"id\":233}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"c22aabe\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"9a54f1a\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b747fda\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":700},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":900},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7eab781\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"43661634\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our company is a collective of amazing people striving to build delightful products.\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.4},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70cc6d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.<\\/p>\",\"align\":\"center\",\"text_color\":\"#686868\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"615dfb3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1000},\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"6414755f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3bb26eed\",\"elType\":\"widget\",\"settings\":{\"text\":\"Read More\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3},\"button_text_color\":\"#ffffff\",\"background_color\":\"rgba(0,0,0,0)\",\"hover_color\":\"#00ce1b\",\"button_hover_border_color\":\"#00ce1b\",\"hover_animation\":\"grow\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"123f6d1\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"25fcf2e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"64f593f\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"596f429\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(1546,237,'_elementor_edit_mode','builder'),(1547,237,'_elementor_elements_usage','a:9:{s:7:\"heading\";i:10;s:6:\"column\";i:14;s:7:\"section\";i:11;s:6:\"spacer\";i:3;s:7:\"divider\";i:4;s:11:\"text-editor\";i:4;s:5:\"image\";i:6;s:5:\"video\";i:2;s:6:\"button\";i:1;}'),(1548,237,'_elementor_css','a:5:{s:4:\"time\";i:1568503648;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:1:{i:0;s:0:\"\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(1549,238,'_elementor_template_type','post'),(1550,238,'_elementor_version','2.6.8'),(1551,238,'_elementor_pro_version','2.6.5'),(1552,238,'_wp_page_template','default'),(1553,238,'_elementor_data','[{\"id\":\"55396f27\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":50,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Theatrical_Display_V003C.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_range\":\"viewport\",\"motion_fx_motion_fx_scrolling\":\"yes\",\"layout\":\"full_width\",\"column_position\":\"top\"},\"elements\":[{\"id\":\"59493b21\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b700365\",\"elType\":\"widget\",\"settings\":{\"title\":\"#WHAT\'S COOL\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"80c28d1\",\"elType\":\"section\",\"settings\":{\"structure\":\"00\"},\"elements\":[{\"id\":\"da9c6bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"9ed4503\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"1de7598\",\"elType\":\"widget\",\"settings\":{\"title\":\"INNOVATIONS FROM ONDISPLAY CREATIVE\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7df48509\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\"},\"elements\":[{\"id\":\"1147078d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"23bbc68\",\"elType\":\"widget\",\"settings\":{\"title\":\"LIVING STANDEES HAUNTING THEATERS\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b40d155\",\"elType\":\"widget\",\"settings\":{\"title\":\"ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"700\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86cff8b\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"225341d\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS \\u2013 THE LAST KEY\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a680ae8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"be59fa3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e36fe5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"d4d2039\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2.jpg\",\"id\":88},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3c9b758\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"79e122a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2-1.jpg\",\"id\":87},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3dc9df5\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"start\":0},\"elements\":[],\"widgetType\":\"video\"},{\"id\":\"b61a90b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"8f63560\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"08c588a\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS CHAPTER 3\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0e612c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>OnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7e77f5a\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"gap\":\"wide\"},\"elements\":[{\"id\":\"7eb5a21\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.332},\"elements\":[{\"id\":\"ae25867\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/image-asset.jpeg\",\"id\":196},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"24c773b\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":58},\"elements\":[{\"id\":\"93ad602\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/130807026\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"236bdcf\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\"},\"elements\":[{\"id\":\"8a0b6da\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"e28765e\",\"elType\":\"widget\",\"settings\":{\"title\":\"VIRTUAL REALITY EXPERIENCE\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4d0f48c\",\"elType\":\"widget\",\"settings\":{\"title\":\"SOMETHING SOMETHING SOMETHING\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"700\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5a6ec50\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"93d4126\",\"elType\":\"widget\",\"settings\":{\"title\":\"SPIDER-MAN HOMECOMING DISPLAY\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bccfc67\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Submerse yourself in the world of your friendly neighborhood Spider-Man in this fun and thrilling VR Theatrical Display.\\u00a0\\u00a0Based on the all-new 2017 film, the Spider-Man Homecoming VR Experience is a first-person look through the eyes of Spidey himself.<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f786650\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"ec1b52b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":76},\"elements\":[{\"id\":\"74ca310\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Spidey_Home_V4_002.jpg\",\"id\":230},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"css_filters_css_filter\":\"custom\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"265cdc0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":24},\"elements\":[{\"id\":\"35c3d80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/IMG_3834.jpg\",\"id\":231},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"677c7e5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/IMG_3788.jpg\",\"id\":233}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"c22aabe\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"9a54f1a\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b747fda\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":700},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":900},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7eab781\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"43661634\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our company is a collective of amazing people striving to build delightful products.\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.4},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70cc6d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.<\\/p>\",\"align\":\"center\",\"text_color\":\"#686868\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"615dfb3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1000},\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"6414755f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3bb26eed\",\"elType\":\"widget\",\"settings\":{\"text\":\"Read More\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3},\"button_text_color\":\"#ffffff\",\"background_color\":\"rgba(0,0,0,0)\",\"hover_color\":\"#00ce1b\",\"button_hover_border_color\":\"#00ce1b\",\"hover_animation\":\"grow\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"123f6d1\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"25fcf2e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"64f593f\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"596f429\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(1554,238,'_elementor_edit_mode','builder'),(1555,238,'_elementor_elements_usage','a:9:{s:7:\"heading\";i:10;s:6:\"column\";i:14;s:7:\"section\";i:11;s:6:\"spacer\";i:3;s:7:\"divider\";i:4;s:11:\"text-editor\";i:4;s:5:\"image\";i:6;s:5:\"video\";i:2;s:6:\"button\";i:1;}'),(1556,238,'_elementor_css','a:5:{s:4:\"time\";i:1568503648;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:1:{i:0;s:0:\"\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(1557,239,'_elementor_template_type','post'),(1558,239,'_elementor_version','2.6.8'),(1559,239,'_elementor_pro_version','2.6.5'),(1560,239,'_wp_page_template','default'),(1561,239,'_elementor_data','[{\"id\":\"55396f27\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":50,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Theatrical_Display_V003C.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_range\":\"viewport\",\"motion_fx_motion_fx_scrolling\":\"yes\",\"layout\":\"full_width\",\"column_position\":\"top\"},\"elements\":[{\"id\":\"59493b21\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6a57d05\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\"},\"elements\":[{\"id\":\"d8e4d5c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b4e5d70\",\"elType\":\"widget\",\"settings\":{\"title\":\"#WHAT\'S COOL\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"22443a9\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\"},\"elements\":[{\"id\":\"274b08d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"447f978\",\"elType\":\"widget\",\"settings\":{\"title\":\"INNOVATIONS FROM ONDISPLAY CREATIVE\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7df48509\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\"},\"elements\":[{\"id\":\"1147078d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"23bbc68\",\"elType\":\"widget\",\"settings\":{\"title\":\"LIVING STANDEES HAUNTING THEATERS\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b40d155\",\"elType\":\"widget\",\"settings\":{\"title\":\"ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"700\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86cff8b\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"225341d\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS \\u2013 THE LAST KEY\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a680ae8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"be59fa3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e36fe5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"d4d2039\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2.jpg\",\"id\":88},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3c9b758\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"79e122a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2-1.jpg\",\"id\":87},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3dc9df5\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"start\":0},\"elements\":[],\"widgetType\":\"video\"},{\"id\":\"b61a90b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"8f63560\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"08c588a\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS CHAPTER 3\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0e612c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>OnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7e77f5a\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"gap\":\"wide\"},\"elements\":[{\"id\":\"7eb5a21\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.332},\"elements\":[{\"id\":\"ae25867\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/image-asset.jpeg\",\"id\":196},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"24c773b\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":58},\"elements\":[{\"id\":\"93ad602\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/130807026\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"236bdcf\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\"},\"elements\":[{\"id\":\"8a0b6da\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"e28765e\",\"elType\":\"widget\",\"settings\":{\"title\":\"VIRTUAL REALITY EXPERIENCE\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4d0f48c\",\"elType\":\"widget\",\"settings\":{\"title\":\"SOMETHING SOMETHING SOMETHING\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"700\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5a6ec50\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"93d4126\",\"elType\":\"widget\",\"settings\":{\"title\":\"SPIDER-MAN HOMECOMING DISPLAY\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bccfc67\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Submerse yourself in the world of your friendly neighborhood Spider-Man in this fun and thrilling VR Theatrical Display.\\u00a0\\u00a0Based on the all-new 2017 film, the Spider-Man Homecoming VR Experience is a first-person look through the eyes of Spidey himself.<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f786650\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"ec1b52b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":76},\"elements\":[{\"id\":\"74ca310\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Spidey_Home_V4_002.jpg\",\"id\":230},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"css_filters_css_filter\":\"custom\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"265cdc0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":24},\"elements\":[{\"id\":\"35c3d80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/IMG_3834.jpg\",\"id\":231},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"677c7e5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/IMG_3788.jpg\",\"id\":233}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"c22aabe\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"9a54f1a\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b747fda\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":700},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":900},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7eab781\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"43661634\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our company is a collective of amazing people striving to build delightful products.\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.4},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70cc6d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.<\\/p>\",\"align\":\"center\",\"text_color\":\"#686868\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"615dfb3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1000},\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"6414755f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3bb26eed\",\"elType\":\"widget\",\"settings\":{\"text\":\"Read More\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3},\"button_text_color\":\"#ffffff\",\"background_color\":\"rgba(0,0,0,0)\",\"hover_color\":\"#00ce1b\",\"button_hover_border_color\":\"#00ce1b\",\"hover_animation\":\"grow\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"123f6d1\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"25fcf2e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"64f593f\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"596f429\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(1562,239,'_elementor_edit_mode','builder'),(1563,239,'_elementor_elements_usage','a:9:{s:7:\"heading\";i:10;s:6:\"column\";i:15;s:7:\"section\";i:12;s:7:\"divider\";i:4;s:11:\"text-editor\";i:4;s:5:\"image\";i:6;s:5:\"video\";i:2;s:6:\"spacer\";i:2;s:6:\"button\";i:1;}'),(1564,239,'_elementor_css','a:5:{s:4:\"time\";i:1568503648;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:1:{i:0;s:0:\"\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(1565,240,'_elementor_template_type','post'),(1566,240,'_elementor_version','2.6.8'),(1567,240,'_elementor_pro_version','2.6.5'),(1568,240,'_wp_page_template','default'),(1569,240,'_elementor_data','[{\"id\":\"55396f27\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":50,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Theatrical_Display_V003C.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_range\":\"viewport\",\"motion_fx_motion_fx_scrolling\":\"yes\",\"layout\":\"full_width\",\"column_position\":\"top\"},\"elements\":[{\"id\":\"59493b21\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6a57d05\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"d8e4d5c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b4e5d70\",\"elType\":\"widget\",\"settings\":{\"title\":\"#WHAT\'S COOL\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"22443a9\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\"},\"elements\":[{\"id\":\"274b08d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"447f978\",\"elType\":\"widget\",\"settings\":{\"title\":\"INNOVATIONS FROM ONDISPLAY CREATIVE\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7df48509\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\"},\"elements\":[{\"id\":\"1147078d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"23bbc68\",\"elType\":\"widget\",\"settings\":{\"title\":\"LIVING STANDEES HAUNTING THEATERS\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b40d155\",\"elType\":\"widget\",\"settings\":{\"title\":\"ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"700\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86cff8b\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"225341d\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS \\u2013 THE LAST KEY\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a680ae8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"be59fa3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e36fe5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"d4d2039\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2.jpg\",\"id\":88},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3c9b758\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"79e122a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2-1.jpg\",\"id\":87},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3dc9df5\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"start\":0},\"elements\":[],\"widgetType\":\"video\"},{\"id\":\"b61a90b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"8f63560\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"08c588a\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS CHAPTER 3\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0e612c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>OnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7e77f5a\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"gap\":\"wide\"},\"elements\":[{\"id\":\"7eb5a21\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.332},\"elements\":[{\"id\":\"ae25867\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/image-asset.jpeg\",\"id\":196},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"24c773b\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":58},\"elements\":[{\"id\":\"93ad602\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/130807026\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"236bdcf\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\"},\"elements\":[{\"id\":\"8a0b6da\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"e28765e\",\"elType\":\"widget\",\"settings\":{\"title\":\"VIRTUAL REALITY EXPERIENCE\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4d0f48c\",\"elType\":\"widget\",\"settings\":{\"title\":\"SOMETHING SOMETHING SOMETHING\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"700\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5a6ec50\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"93d4126\",\"elType\":\"widget\",\"settings\":{\"title\":\"SPIDER-MAN HOMECOMING DISPLAY\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bccfc67\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Submerse yourself in the world of your friendly neighborhood Spider-Man in this fun and thrilling VR Theatrical Display.\\u00a0\\u00a0Based on the all-new 2017 film, the Spider-Man Homecoming VR Experience is a first-person look through the eyes of Spidey himself.<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f786650\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"ec1b52b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":76},\"elements\":[{\"id\":\"74ca310\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Spidey_Home_V4_002.jpg\",\"id\":230},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"css_filters_css_filter\":\"custom\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"265cdc0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":24},\"elements\":[{\"id\":\"35c3d80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/IMG_3834.jpg\",\"id\":231},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"677c7e5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/IMG_3788.jpg\",\"id\":233}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"c22aabe\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"9a54f1a\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b747fda\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":700},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":900},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7eab781\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"43661634\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our company is a collective of amazing people striving to build delightful products.\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.4},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70cc6d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.<\\/p>\",\"align\":\"center\",\"text_color\":\"#686868\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"615dfb3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1000},\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"6414755f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3bb26eed\",\"elType\":\"widget\",\"settings\":{\"text\":\"Read More\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3},\"button_text_color\":\"#ffffff\",\"background_color\":\"rgba(0,0,0,0)\",\"hover_color\":\"#00ce1b\",\"button_hover_border_color\":\"#00ce1b\",\"hover_animation\":\"grow\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"123f6d1\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"25fcf2e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"64f593f\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"596f429\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(1570,240,'_elementor_edit_mode','builder'),(1571,240,'_elementor_elements_usage','a:9:{s:7:\"heading\";i:10;s:6:\"column\";i:15;s:7:\"section\";i:12;s:7:\"divider\";i:4;s:11:\"text-editor\";i:4;s:5:\"image\";i:6;s:5:\"video\";i:2;s:6:\"spacer\";i:2;s:6:\"button\";i:1;}'),(1572,236,'_elementor_css','a:5:{s:4:\"time\";i:1568593285;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:1:{i:0;s:0:\"\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(2344,360,'_elementor_template_type','post'),(2345,360,'_elementor_version','2.6.8'),(1573,241,'_elementor_template_type','post'),(1574,241,'_elementor_version','2.6.8'),(1575,241,'_elementor_pro_version','2.6.5'),(1576,241,'_wp_page_template','default'),(1577,241,'_elementor_data','[{\"id\":\"55396f27\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":50,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Theatrical_Display_V003C.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_range\":\"viewport\",\"motion_fx_motion_fx_scrolling\":\"yes\",\"layout\":\"full_width\",\"column_position\":\"top\"},\"elements\":[{\"id\":\"905a97c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ad7f3f6\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2489c07\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c0bbe21\",\"elType\":\"widget\",\"settings\":{\"title\":\"#WHAT\'S COOL\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"dc881ae\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"18630a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"870a9ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"INNOVATIONS FROM ONDISPLAY CREATIVE\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7df48509\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\"},\"elements\":[{\"id\":\"1147078d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"23bbc68\",\"elType\":\"widget\",\"settings\":{\"title\":\"LIVING STANDEES HAUNTING THEATERS\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b40d155\",\"elType\":\"widget\",\"settings\":{\"title\":\"ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"700\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86cff8b\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"225341d\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS \\u2013 THE LAST KEY\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a680ae8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"be59fa3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e36fe5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"d4d2039\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2.jpg\",\"id\":88},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3c9b758\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"79e122a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2-1.jpg\",\"id\":87},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3dc9df5\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"start\":0},\"elements\":[],\"widgetType\":\"video\"},{\"id\":\"b61a90b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"8f63560\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"08c588a\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS CHAPTER 3\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0e612c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>OnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7e77f5a\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"gap\":\"wide\"},\"elements\":[{\"id\":\"7eb5a21\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.332},\"elements\":[{\"id\":\"ae25867\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/image-asset.jpeg\",\"id\":196},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"24c773b\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":58},\"elements\":[{\"id\":\"93ad602\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/130807026\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"236bdcf\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\"},\"elements\":[{\"id\":\"8a0b6da\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"e28765e\",\"elType\":\"widget\",\"settings\":{\"title\":\"VIRTUAL REALITY EXPERIENCE\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4d0f48c\",\"elType\":\"widget\",\"settings\":{\"title\":\"SOMETHING SOMETHING SOMETHING\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"700\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5a6ec50\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"93d4126\",\"elType\":\"widget\",\"settings\":{\"title\":\"SPIDER-MAN HOMECOMING DISPLAY\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bccfc67\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Submerse yourself in the world of your friendly neighborhood Spider-Man in this fun and thrilling VR Theatrical Display.\\u00a0\\u00a0Based on the all-new 2017 film, the Spider-Man Homecoming VR Experience is a first-person look through the eyes of Spidey himself.<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f786650\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"ec1b52b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":76},\"elements\":[{\"id\":\"74ca310\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Spidey_Home_V4_002.jpg\",\"id\":230},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"css_filters_css_filter\":\"custom\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"265cdc0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":24},\"elements\":[{\"id\":\"35c3d80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/IMG_3834.jpg\",\"id\":231},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"677c7e5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/IMG_3788.jpg\",\"id\":233}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"c22aabe\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"9a54f1a\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b747fda\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":700},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":900},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7eab781\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"43661634\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our company is a collective of amazing people striving to build delightful products.\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.4},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70cc6d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.<\\/p>\",\"align\":\"center\",\"text_color\":\"#686868\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"615dfb3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1000},\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"6414755f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3bb26eed\",\"elType\":\"widget\",\"settings\":{\"text\":\"Read More\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3},\"button_text_color\":\"#ffffff\",\"background_color\":\"rgba(0,0,0,0)\",\"hover_color\":\"#00ce1b\",\"button_hover_border_color\":\"#00ce1b\",\"hover_animation\":\"grow\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"123f6d1\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"25fcf2e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"64f593f\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"596f429\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(1578,241,'_elementor_edit_mode','builder'),(1579,241,'_elementor_elements_usage','a:9:{s:7:\"heading\";i:10;s:6:\"column\";i:15;s:7:\"section\";i:12;s:7:\"divider\";i:4;s:11:\"text-editor\";i:4;s:5:\"image\";i:6;s:5:\"video\";i:2;s:6:\"spacer\";i:2;s:6:\"button\";i:1;}'),(1580,241,'_elementor_css','a:5:{s:4:\"time\";i:1568503648;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:1:{i:0;s:0:\"\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(3563,545,'_elementor_template_type','post'),(1587,245,'_elementor_version','2.6.8'),(1586,245,'_elementor_template_type','post'),(1588,245,'_elementor_pro_version','2.6.5'),(1589,245,'_wp_page_template','default'),(1590,245,'_elementor_data','[{\"id\":\"55396f27\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":50,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Theatrical_Display_V003C.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_range\":\"viewport\",\"motion_fx_motion_fx_scrolling\":\"yes\",\"layout\":\"full_width\",\"column_position\":\"top\"},\"elements\":[{\"id\":\"905a97c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ad7f3f6\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2489c07\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c0bbe21\",\"elType\":\"widget\",\"settings\":{\"title\":\"#WHAT\'S COOL\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"dc881ae\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"18630a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"870a9ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"INNOVATIONS FROM ONDISPLAY CREATIVE\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7df48509\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\"},\"elements\":[{\"id\":\"1147078d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"23bbc68\",\"elType\":\"widget\",\"settings\":{\"title\":\"LIVING STANDEES HAUNTING THEATERS\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b40d155\",\"elType\":\"widget\",\"settings\":{\"title\":\"ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"700\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86cff8b\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"225341d\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS \\u2013 THE LAST KEY\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a680ae8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"be59fa3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e36fe5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"d4d2039\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2.jpg\",\"id\":88},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3c9b758\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"79e122a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2-1.jpg\",\"id\":87},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3dc9df5\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"start\":0},\"elements\":[],\"widgetType\":\"video\"},{\"id\":\"b61a90b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"8f63560\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"08c588a\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS CHAPTER 3\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0e612c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>OnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7e77f5a\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"gap\":\"wide\"},\"elements\":[{\"id\":\"7eb5a21\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.332},\"elements\":[{\"id\":\"ae25867\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/image-asset.jpeg\",\"id\":196},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"24c773b\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":58},\"elements\":[{\"id\":\"93ad602\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/130807026\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"236bdcf\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\"},\"elements\":[{\"id\":\"8a0b6da\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"e28765e\",\"elType\":\"widget\",\"settings\":{\"title\":\"VIRTUAL REALITY EXPERIENCE\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4d0f48c\",\"elType\":\"widget\",\"settings\":{\"title\":\"SOMETHING SOMETHING SOMETHING\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"700\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5a6ec50\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"93d4126\",\"elType\":\"widget\",\"settings\":{\"title\":\"SPIDER-MAN HOMECOMING DISPLAY\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bccfc67\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Submerse yourself in the world of your friendly neighborhood Spider-Man in this fun and thrilling VR Theatrical Display.\\u00a0\\u00a0Based on the all-new 2017 film, the Spider-Man Homecoming VR Experience is a first-person look through the eyes of Spidey himself.<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f786650\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"ec1b52b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":76},\"elements\":[{\"id\":\"74ca310\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Spidey_Home_V4_002.jpg\",\"id\":230},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"css_filters_css_filter\":\"custom\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"265cdc0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":24},\"elements\":[{\"id\":\"35c3d80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/IMG_3834.jpg\",\"id\":231},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"677c7e5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/IMG_3788.jpg\",\"id\":233}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"c22aabe\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"9a54f1a\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b747fda\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":700},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":900},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7eab781\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"43661634\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our company is a collective of amazing people striving to build delightful products.\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.4},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70cc6d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.<\\/p>\",\"align\":\"center\",\"text_color\":\"#686868\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"615dfb3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1000},\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"6414755f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3bb26eed\",\"elType\":\"widget\",\"settings\":{\"text\":\"Read More\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3},\"button_text_color\":\"#ffffff\",\"background_color\":\"rgba(0,0,0,0)\",\"hover_color\":\"#00ce1b\",\"button_hover_border_color\":\"#00ce1b\",\"hover_animation\":\"grow\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"123f6d1\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"25fcf2e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"64f593f\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"596f429\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(1591,245,'_elementor_edit_mode','builder'),(1592,245,'_elementor_elements_usage','a:9:{s:7:\"heading\";i:10;s:6:\"column\";i:15;s:7:\"section\";i:12;s:7:\"divider\";i:4;s:11:\"text-editor\";i:4;s:5:\"image\";i:6;s:5:\"video\";i:2;s:6:\"spacer\";i:2;s:6:\"button\";i:1;}'),(1593,245,'_elementor_css','a:5:{s:4:\"time\";i:1568593563;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:1:{i:0;s:0:\"\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(1594,246,'_edit_lock','1568664264:1'),(1595,246,'_edit_last','1'),(1596,246,'site-sidebar-layout','no-sidebar'),(1597,246,'site-content-layout','page-builder'),(1598,246,'theme-transparent-header-meta','default'),(1599,246,'_elementor_edit_mode','builder'),(1600,246,'_elementor_template_type','post'),(1601,246,'_elementor_version','2.6.8'),(1602,246,'_elementor_pro_version','2.6.5'),(1603,246,'_astra_content_layout_flag','disabled'),(1604,246,'site-post-title','disabled'),(1605,246,'ast-title-bar-display','disabled'),(1606,246,'ast-featured-img','disabled'),(1620,249,'_elementor_data','[{\"id\":\"55396f27\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":50,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Theatrical_Display_V003C.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_range\":\"viewport\",\"motion_fx_motion_fx_scrolling\":\"yes\",\"layout\":\"full_width\",\"column_position\":\"top\"},\"elements\":[{\"id\":\"905a97c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dd42df6\",\"elType\":\"widget\",\"settings\":{\"menu\":\"main-menu\",\"align_items\":\"right\",\"pointer\":\"text\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"nav-menu\"},{\"id\":\"ad7f3f6\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2489c07\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c0bbe21\",\"elType\":\"widget\",\"settings\":{\"title\":\"#WHAT\'S COOL\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"dc881ae\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"18630a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"870a9ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"INNOVATIONS FROM ONDISPLAY CREATIVE\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7df48509\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\"},\"elements\":[{\"id\":\"1147078d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"23bbc68\",\"elType\":\"widget\",\"settings\":{\"title\":\"LIVING STANDEES HAUNTING THEATERS\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b40d155\",\"elType\":\"widget\",\"settings\":{\"title\":\"ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"700\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86cff8b\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"225341d\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS \\u2013 THE LAST KEY\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a680ae8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"be59fa3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e36fe5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"d4d2039\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2.jpg\",\"id\":88},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3c9b758\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"79e122a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2-1.jpg\",\"id\":87},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3dc9df5\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"start\":0},\"elements\":[],\"widgetType\":\"video\"},{\"id\":\"b61a90b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"8f63560\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"08c588a\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS CHAPTER 3\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0e612c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>OnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7e77f5a\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"gap\":\"wide\"},\"elements\":[{\"id\":\"7eb5a21\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.332},\"elements\":[{\"id\":\"ae25867\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/image-asset.jpeg\",\"id\":196},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"24c773b\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":58},\"elements\":[{\"id\":\"93ad602\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/130807026\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"236bdcf\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\"},\"elements\":[{\"id\":\"8a0b6da\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"e28765e\",\"elType\":\"widget\",\"settings\":{\"title\":\"VIRTUAL REALITY EXPERIENCE\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4d0f48c\",\"elType\":\"widget\",\"settings\":{\"title\":\"SOMETHING SOMETHING SOMETHING\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"700\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5a6ec50\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"93d4126\",\"elType\":\"widget\",\"settings\":{\"title\":\"SPIDER-MAN HOMECOMING DISPLAY\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bccfc67\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Submerse yourself in the world of your friendly neighborhood Spider-Man in this fun and thrilling VR Theatrical Display.\\u00a0\\u00a0Based on the all-new 2017 film, the Spider-Man Homecoming VR Experience is a first-person look through the eyes of Spidey himself.<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f786650\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"ec1b52b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":76},\"elements\":[{\"id\":\"74ca310\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Spidey_Home_V4_002.jpg\",\"id\":230},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"css_filters_css_filter\":\"custom\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"265cdc0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":24},\"elements\":[{\"id\":\"35c3d80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/IMG_3834.jpg\",\"id\":231},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"677c7e5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/IMG_3788.jpg\",\"id\":233}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"c22aabe\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"9a54f1a\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b747fda\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":700},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":900},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7eab781\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"43661634\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our company is a collective of amazing people striving to build delightful products.\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.4},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70cc6d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.<\\/p>\",\"align\":\"center\",\"text_color\":\"#686868\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"615dfb3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1000},\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"6414755f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3bb26eed\",\"elType\":\"widget\",\"settings\":{\"text\":\"Read More\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3},\"button_text_color\":\"#ffffff\",\"background_color\":\"rgba(0,0,0,0)\",\"hover_color\":\"#00ce1b\",\"button_hover_border_color\":\"#00ce1b\",\"hover_animation\":\"grow\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"123f6d1\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"25fcf2e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"64f593f\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"596f429\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(1617,249,'_elementor_version','2.6.8'),(1618,249,'_elementor_pro_version','2.6.5'),(1619,249,'_wp_page_template','default'),(1676,257,'_elementor_template_type','post'),(1677,257,'_elementor_version','2.6.8'),(1678,257,'_elementor_pro_version','2.6.5'),(1679,257,'_wp_page_template','default'),(1680,257,'_elementor_data','[{\"id\":\"55396f27\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":50,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Theatrical_Display_V003C.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_range\":\"viewport\",\"motion_fx_motion_fx_scrolling\":\"yes\",\"layout\":\"full_width\",\"column_position\":\"top\"},\"elements\":[{\"id\":\"905a97c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ad7f3f6\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"175\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2489c07\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c0bbe21\",\"elType\":\"widget\",\"settings\":{\"title\":\"#WHAT\'S COOL\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"dc881ae\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"18630a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"870a9ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"INNOVATIONS FROM ONDISPLAY CREATIVE\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7df48509\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\"},\"elements\":[{\"id\":\"1147078d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"23bbc68\",\"elType\":\"widget\",\"settings\":{\"title\":\"LIVING STANDEES HAUNTING THEATERS\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b40d155\",\"elType\":\"widget\",\"settings\":{\"title\":\"ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"700\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86cff8b\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"225341d\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS \\u2013 THE LAST KEY\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a680ae8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"be59fa3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e36fe5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"d4d2039\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2.jpg\",\"id\":88},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3c9b758\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"79e122a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2-1.jpg\",\"id\":87},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3dc9df5\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"start\":0},\"elements\":[],\"widgetType\":\"video\"},{\"id\":\"b61a90b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"8f63560\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"08c588a\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS CHAPTER 3\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0e612c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>OnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7e77f5a\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"gap\":\"wide\"},\"elements\":[{\"id\":\"7eb5a21\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.332},\"elements\":[{\"id\":\"ae25867\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/image-asset.jpeg\",\"id\":196},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"24c773b\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":58},\"elements\":[{\"id\":\"93ad602\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/130807026\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"236bdcf\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\"},\"elements\":[{\"id\":\"8a0b6da\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"e28765e\",\"elType\":\"widget\",\"settings\":{\"title\":\"VIRTUAL REALITY EXPERIENCE\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4d0f48c\",\"elType\":\"widget\",\"settings\":{\"title\":\"SOMETHING SOMETHING SOMETHING\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"700\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5a6ec50\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"93d4126\",\"elType\":\"widget\",\"settings\":{\"title\":\"SPIDER-MAN HOMECOMING DISPLAY\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bccfc67\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Submerse yourself in the world of your friendly neighborhood Spider-Man in this fun and thrilling VR Theatrical Display.\\u00a0\\u00a0Based on the all-new 2017 film, the Spider-Man Homecoming VR Experience is a first-person look through the eyes of Spidey himself.<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f786650\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"ec1b52b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":76},\"elements\":[{\"id\":\"74ca310\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Spidey_Home_V4_002.jpg\",\"id\":230},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"css_filters_css_filter\":\"custom\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"265cdc0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":24},\"elements\":[{\"id\":\"35c3d80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/IMG_3834.jpg\",\"id\":231},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"677c7e5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/IMG_3788.jpg\",\"id\":233}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"c22aabe\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"9a54f1a\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b747fda\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":700},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":900},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7eab781\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"43661634\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our company is a collective of amazing people striving to build delightful products.\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.4},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70cc6d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.<\\/p>\",\"align\":\"center\",\"text_color\":\"#686868\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"615dfb3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1000},\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"6414755f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3bb26eed\",\"elType\":\"widget\",\"settings\":{\"text\":\"Read More\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3},\"button_text_color\":\"#ffffff\",\"background_color\":\"rgba(0,0,0,0)\",\"hover_color\":\"#00ce1b\",\"button_hover_border_color\":\"#00ce1b\",\"hover_animation\":\"grow\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"123f6d1\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"25fcf2e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"64f593f\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"596f429\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(1616,249,'_elementor_template_type','post'),(1621,249,'_elementor_edit_mode','builder'),(1622,249,'_elementor_elements_usage','a:10:{s:8:\"nav-menu\";i:1;s:7:\"heading\";i:10;s:6:\"column\";i:15;s:7:\"section\";i:12;s:7:\"divider\";i:4;s:11:\"text-editor\";i:4;s:5:\"image\";i:6;s:5:\"video\";i:2;s:6:\"spacer\";i:2;s:6:\"button\";i:1;}'),(1623,249,'_elementor_css','a:5:{s:4:\"time\";i:1568595421;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:1:{i:0;s:0:\"\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(1627,250,'_wp_page_template','default'),(1628,250,'_elementor_data','[{\"id\":\"55396f27\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":50,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Theatrical_Display_V003C.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_range\":\"viewport\",\"motion_fx_motion_fx_scrolling\":\"yes\",\"layout\":\"full_width\",\"column_position\":\"top\"},\"elements\":[{\"id\":\"905a97c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dd42df6\",\"elType\":\"widget\",\"settings\":{\"menu\":\"main-menu\",\"align_items\":\"right\",\"pointer\":\"text\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"nav-menu\"},{\"id\":\"ad7f3f6\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2489c07\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c0bbe21\",\"elType\":\"widget\",\"settings\":{\"title\":\"#WHAT\'S COOL\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"dc881ae\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"18630a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"870a9ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"INNOVATIONS FROM ONDISPLAY CREATIVE\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7df48509\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\"},\"elements\":[{\"id\":\"1147078d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"23bbc68\",\"elType\":\"widget\",\"settings\":{\"title\":\"LIVING STANDEES HAUNTING THEATERS\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b40d155\",\"elType\":\"widget\",\"settings\":{\"title\":\"ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"700\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86cff8b\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"225341d\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS \\u2013 THE LAST KEY\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a680ae8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"be59fa3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e36fe5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"d4d2039\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2.jpg\",\"id\":88},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3c9b758\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"79e122a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2-1.jpg\",\"id\":87},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3dc9df5\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"start\":0},\"elements\":[],\"widgetType\":\"video\"},{\"id\":\"b61a90b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"8f63560\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"08c588a\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS CHAPTER 3\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0e612c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>OnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7e77f5a\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"gap\":\"wide\"},\"elements\":[{\"id\":\"7eb5a21\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.332},\"elements\":[{\"id\":\"ae25867\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/image-asset.jpeg\",\"id\":196},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"24c773b\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":58},\"elements\":[{\"id\":\"93ad602\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/130807026\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"236bdcf\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\"},\"elements\":[{\"id\":\"8a0b6da\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"e28765e\",\"elType\":\"widget\",\"settings\":{\"title\":\"VIRTUAL REALITY EXPERIENCE\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4d0f48c\",\"elType\":\"widget\",\"settings\":{\"title\":\"SOMETHING SOMETHING SOMETHING\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"700\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5a6ec50\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"93d4126\",\"elType\":\"widget\",\"settings\":{\"title\":\"SPIDER-MAN HOMECOMING DISPLAY\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bccfc67\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Submerse yourself in the world of your friendly neighborhood Spider-Man in this fun and thrilling VR Theatrical Display.\\u00a0\\u00a0Based on the all-new 2017 film, the Spider-Man Homecoming VR Experience is a first-person look through the eyes of Spidey himself.<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f786650\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"ec1b52b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":76},\"elements\":[{\"id\":\"74ca310\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Spidey_Home_V4_002.jpg\",\"id\":230},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"css_filters_css_filter\":\"custom\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"265cdc0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":24},\"elements\":[{\"id\":\"35c3d80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/IMG_3834.jpg\",\"id\":231},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"677c7e5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/IMG_3788.jpg\",\"id\":233}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"c22aabe\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"9a54f1a\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b747fda\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":700},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":900},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7eab781\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"43661634\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our company is a collective of amazing people striving to build delightful products.\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.4},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70cc6d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.<\\/p>\",\"align\":\"center\",\"text_color\":\"#686868\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"615dfb3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1000},\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"6414755f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3bb26eed\",\"elType\":\"widget\",\"settings\":{\"text\":\"Read More\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3},\"button_text_color\":\"#ffffff\",\"background_color\":\"rgba(0,0,0,0)\",\"hover_color\":\"#00ce1b\",\"button_hover_border_color\":\"#00ce1b\",\"hover_animation\":\"grow\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"123f6d1\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"25fcf2e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"64f593f\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"596f429\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(1629,250,'_elementor_edit_mode','builder'),(1630,250,'_elementor_elements_usage','a:10:{s:8:\"nav-menu\";i:1;s:7:\"heading\";i:10;s:6:\"column\";i:15;s:7:\"section\";i:12;s:7:\"divider\";i:4;s:11:\"text-editor\";i:4;s:5:\"image\";i:6;s:5:\"video\";i:2;s:6:\"spacer\";i:2;s:6:\"button\";i:1;}'),(1631,251,'_elementor_template_type','post'),(1632,251,'_elementor_version','2.6.8'),(1633,251,'_elementor_pro_version','2.6.5'),(1634,251,'_wp_page_template','default'),(1635,251,'_elementor_data','[{\"id\":\"55396f27\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":50,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Theatrical_Display_V003C.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_range\":\"viewport\",\"motion_fx_motion_fx_scrolling\":\"yes\",\"layout\":\"full_width\",\"column_position\":\"top\"},\"elements\":[{\"id\":\"905a97c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dd42df6\",\"elType\":\"widget\",\"settings\":{\"menu\":\"main-menu\",\"align_items\":\"right\",\"pointer\":\"text\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"26\",\"right\":\"26\",\"bottom\":\"26\",\"left\":\"26\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"nav-menu\"},{\"id\":\"ad7f3f6\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2489c07\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c0bbe21\",\"elType\":\"widget\",\"settings\":{\"title\":\"#WHAT\'S COOL\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"dc881ae\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"18630a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"870a9ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"INNOVATIONS FROM ONDISPLAY CREATIVE\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7df48509\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\"},\"elements\":[{\"id\":\"1147078d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"23bbc68\",\"elType\":\"widget\",\"settings\":{\"title\":\"LIVING STANDEES HAUNTING THEATERS\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b40d155\",\"elType\":\"widget\",\"settings\":{\"title\":\"ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"700\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86cff8b\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"225341d\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS \\u2013 THE LAST KEY\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a680ae8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"be59fa3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e36fe5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"d4d2039\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2.jpg\",\"id\":88},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3c9b758\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"79e122a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2-1.jpg\",\"id\":87},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3dc9df5\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"start\":0},\"elements\":[],\"widgetType\":\"video\"},{\"id\":\"b61a90b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"8f63560\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"08c588a\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS CHAPTER 3\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0e612c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>OnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7e77f5a\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"gap\":\"wide\"},\"elements\":[{\"id\":\"7eb5a21\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.332},\"elements\":[{\"id\":\"ae25867\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/image-asset.jpeg\",\"id\":196},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"24c773b\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":58},\"elements\":[{\"id\":\"93ad602\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/130807026\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"236bdcf\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\"},\"elements\":[{\"id\":\"8a0b6da\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"e28765e\",\"elType\":\"widget\",\"settings\":{\"title\":\"VIRTUAL REALITY EXPERIENCE\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4d0f48c\",\"elType\":\"widget\",\"settings\":{\"title\":\"SOMETHING SOMETHING SOMETHING\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"700\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5a6ec50\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"93d4126\",\"elType\":\"widget\",\"settings\":{\"title\":\"SPIDER-MAN HOMECOMING DISPLAY\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bccfc67\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Submerse yourself in the world of your friendly neighborhood Spider-Man in this fun and thrilling VR Theatrical Display.\\u00a0\\u00a0Based on the all-new 2017 film, the Spider-Man Homecoming VR Experience is a first-person look through the eyes of Spidey himself.<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f786650\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"ec1b52b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":76},\"elements\":[{\"id\":\"74ca310\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Spidey_Home_V4_002.jpg\",\"id\":230},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"css_filters_css_filter\":\"custom\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"265cdc0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":24},\"elements\":[{\"id\":\"35c3d80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/IMG_3834.jpg\",\"id\":231},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"677c7e5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/IMG_3788.jpg\",\"id\":233}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"c22aabe\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"9a54f1a\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b747fda\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":700},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":900},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7eab781\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"43661634\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our company is a collective of amazing people striving to build delightful products.\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.4},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70cc6d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.<\\/p>\",\"align\":\"center\",\"text_color\":\"#686868\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"615dfb3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1000},\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"6414755f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3bb26eed\",\"elType\":\"widget\",\"settings\":{\"text\":\"Read More\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3},\"button_text_color\":\"#ffffff\",\"background_color\":\"rgba(0,0,0,0)\",\"hover_color\":\"#00ce1b\",\"button_hover_border_color\":\"#00ce1b\",\"hover_animation\":\"grow\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"123f6d1\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"25fcf2e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"64f593f\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"596f429\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(1636,251,'_elementor_edit_mode','builder'),(1637,251,'_elementor_elements_usage','a:10:{s:8:\"nav-menu\";i:1;s:7:\"heading\";i:10;s:6:\"column\";i:15;s:7:\"section\";i:12;s:7:\"divider\";i:4;s:11:\"text-editor\";i:4;s:5:\"image\";i:6;s:5:\"video\";i:2;s:6:\"spacer\";i:2;s:6:\"button\";i:1;}'),(1638,252,'_elementor_edit_mode','builder'),(1639,252,'_elementor_template_type','header'),(1640,252,'_elementor_version','2.6.8'),(1641,252,'_elementor_pro_version','2.6.5'),(1642,252,'_edit_lock','1568810276:1'),(1643,252,'_astra_content_layout_flag','disabled'),(1644,252,'site-post-title','disabled'),(1645,252,'ast-title-bar-display','disabled'),(1646,252,'ast-featured-img','disabled'),(1647,252,'site-content-layout','page-builder'),(1648,252,'site-sidebar-layout','no-sidebar'),(1649,253,'_wp_attached_file','2019/09/Logo-W.png'),(1650,253,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:500;s:6:\"height\";i:108;s:4:\"file\";s:18:\"2019/09/Logo-W.png\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"Logo-W-150x108.png\";s:5:\"width\";i:150;s:6:\"height\";i:108;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:17:\"Logo-W-300x65.png\";s:5:\"width\";i:300;s:6:\"height\";i:65;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1651,253,'_elementor_source_image_hash','8d198e36868244ccb45ffb9d65a279c443b2df71'),(1652,254,'_elementor_edit_mode','builder'),(1653,254,'_elementor_template_type','header'),(1654,254,'_elementor_version','2.6.8'),(1655,254,'_elementor_pro_version','2.6.5'),(1656,252,'_wp_page_template','default'),(1657,252,'_elementor_elements_usage','a:4:{s:5:\"image\";i:1;s:6:\"column\";i:2;s:8:\"nav-menu\";i:1;s:7:\"section\";i:1;}'),(1658,252,'_elementor_data','[{\"id\":\"68795a84\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":960,\"sizes\":[]},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":96,\"sizes\":[]},\"z_index\":\"10\",\"_title\":\"Header\",\"structure\":\"20\",\"background_color\":\"#ffffff\",\"background_color_b\":\"#00f2ff\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":\"130\",\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"10\",\"blur\":\"20\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0.1)\"},\"sticky\":\"top\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-90\",\"left\":\"0\",\"isLinked\":\"\"},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"color_text\":\"#000000\",\"color_link\":\"#61ce70\",\"color_link_hover\":\"#4054b2\",\"text_align\":\"right\",\"background_background\":\"classic\",\"layout\":\"full_width\"},\"elements\":[{\"id\":\"2df1564\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"content_position\":\"center\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"_inline_size\":null,\"_inline_size_tablet\":\"50\",\"_inline_size_mobile\":\"50\",\"_title\":\"Logo Column\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/a.png\",\"id\":18},\"background_position\":\"center left\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"background_bg_width\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"background_size_tablet\":\"initial\",\"background_size_mobile\":\"initial\",\"background_bg_width_tablet\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"background_bg_width_mobile\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]}},\"elements\":[{\"id\":\"37b8ff09\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"\"},\"image_size\":\"medium_large\",\"align\":\"left\",\"align_mobile\":\"left\",\"width\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"link\":{\"url\":\"https:\\/\\/edu.elementor.com\\/ekit\\/digital-agency-home\",\"is_external\":\"\",\"nofollow\":\"\"},\"__dynamic__\":{\"link\":\"[elementor-tag id=\\\"52081e4\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"_background_background\":\"classic\",\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":\"\"},{\"id\":\"5bc722b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"content_position\":\"center\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"25\",\"_inline_size_mobile\":\"50\",\"_title\":\"Menu Column\"},\"elements\":[{\"id\":\"140a6135\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"right\",\"animation_line\":\"drop-out\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"menu_typography_font_weight\":\"400\",\"color_menu_item\":\"#16161d\",\"color_menu_item_hover\":\"#ee7624\",\"pointer_color_menu_item_hover\":\"#ffffff\",\"color_menu_item_active\":\"#ee7624\",\"pointer_color_menu_item_active\":\"#ffffff\",\"pointer_width\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":\"35\",\"sizes\":[]},\"menu_space_between\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"toggle_align\":\"right\",\"color_dropdown_item\":\"#3d4459\",\"background_color_dropdown_item\":\"#ffffff\",\"color_dropdown_item_hover\":\"#4632da\",\"background_color_dropdown_item_hover\":\"#ffffff\",\"color_dropdown_item_active\":\"#4632da\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_family\":\"Montserrat\",\"dropdown_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"dropdown_box_shadow_box_shadow_type\":\"yes\",\"dropdown_box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"2\",\"blur\":\"15\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0.1)\"},\"padding_vertical_dropdown_item_tablet\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"dropdown_divider_border\":\"solid\",\"dropdown_divider_color\":\"#efefef\",\"dropdown_divider_width\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"dropdown_top_distance_tablet\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"dropdown_top_distance_mobile\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"toggle_color\":\"#ffffff\",\"toggle_background_color\":\"rgba(255,255,255,0)\",\"toggle_color_hover\":\"#ffffff\",\"toggle_size\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"toggle_border_width\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_horizontal_dropdown_item\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"padding_vertical_dropdown_item\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"dropdown_top_distance\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"indicator\":\"chevron\",\"menu\":\"main-menu\",\"_background_background\":\"classic\",\"menu_typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.4,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"80\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"dropdown\":\"mobile\",\"full_width\":\"stretch\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(1692,259,'_elementor_edit_mode','builder'),(1693,259,'_elementor_template_type','header'),(1694,259,'_elementor_version','2.6.8'),(1695,259,'_elementor_pro_version','2.6.5'),(1696,259,'_wp_page_template','default'),(1697,259,'_elementor_elements_usage','a:4:{s:5:\"image\";i:1;s:6:\"column\";i:2;s:8:\"nav-menu\";i:1;s:7:\"section\";i:1;}'),(1698,259,'_elementor_data','[{\"id\":\"68795a84\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1200\",\"sizes\":[]},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":96,\"sizes\":[]},\"z_index\":\"10\",\"_title\":\"Header\",\"structure\":\"20\",\"background_color\":\"#ffffff\",\"background_color_b\":\"#00f2ff\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":\"130\",\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"10\",\"blur\":\"20\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0.1)\"},\"sticky\":\"top\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-90\",\"left\":\"0\",\"isLinked\":\"\"},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"color_text\":\"#000000\",\"color_link\":\"#61ce70\",\"color_link_hover\":\"#4054b2\",\"text_align\":\"right\",\"background_background\":\"classic\"},\"elements\":[{\"id\":\"2df1564\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"content_position\":\"center\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"_inline_size\":null,\"_inline_size_tablet\":\"50\",\"_inline_size_mobile\":\"50\",\"_title\":\"Logo Column\"},\"elements\":[{\"id\":\"37b8ff09\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":18,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/a.png\"},\"image_size\":\"full\",\"align\":\"left\",\"align_mobile\":\"left\",\"width\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"link\":{\"url\":\"https:\\/\\/edu.elementor.com\\/ekit\\/digital-agency-home\",\"is_external\":\"\",\"nofollow\":\"\"},\"__dynamic__\":{\"link\":\"[elementor-tag id=\\\"52081e4\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":\"\"},{\"id\":\"5bc722b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"content_position\":\"center\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"25\",\"_inline_size_mobile\":\"50\",\"_title\":\"Menu Column\"},\"elements\":[{\"id\":\"140a6135\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"right\",\"animation_line\":\"drop-out\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Varela Round\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"menu_typography_font_weight\":\"300\",\"color_menu_item\":\"#ffffff\",\"color_menu_item_hover\":\"#ffffff\",\"pointer_color_menu_item_hover\":\"#ffffff\",\"color_menu_item_active\":\"#ffffff\",\"pointer_color_menu_item_active\":\"#ffffff\",\"pointer_width\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":\"35\",\"sizes\":[]},\"menu_space_between\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"full_width\":\"stretch\",\"text_align\":\"center\",\"toggle_align\":\"right\",\"color_dropdown_item\":\"#3d4459\",\"background_color_dropdown_item\":\"#ffffff\",\"color_dropdown_item_hover\":\"#4632da\",\"background_color_dropdown_item_hover\":\"#ffffff\",\"color_dropdown_item_active\":\"#4632da\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_family\":\"Montserrat\",\"dropdown_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"dropdown_box_shadow_box_shadow_type\":\"yes\",\"dropdown_box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"2\",\"blur\":\"15\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0.1)\"},\"padding_vertical_dropdown_item_tablet\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"dropdown_divider_border\":\"solid\",\"dropdown_divider_color\":\"#efefef\",\"dropdown_divider_width\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"dropdown_top_distance_tablet\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"dropdown_top_distance_mobile\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"toggle_color\":\"#ffffff\",\"toggle_background_color\":\"rgba(255,255,255,0)\",\"toggle_color_hover\":\"#ffffff\",\"toggle_size\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"toggle_border_width\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_horizontal_dropdown_item\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"padding_vertical_dropdown_item\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"dropdown_top_distance\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"indicator\":\"chevron\",\"menu\":\"main-menu\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(1659,255,'_elementor_edit_mode','builder'),(1660,255,'_elementor_template_type','header'),(1661,255,'_elementor_version','2.6.8'),(1662,255,'_elementor_pro_version','2.6.5'),(1663,255,'_wp_page_template','default'),(1664,255,'_elementor_elements_usage','a:5:{s:5:\"image\";i:1;s:6:\"column\";i:3;s:8:\"nav-menu\";i:1;s:9:\"icon-list\";i:1;s:7:\"section\";i:1;}'),(1665,255,'_elementor_data','[{\"id\":\"68795a84\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1200\",\"sizes\":[]},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":96,\"sizes\":[]},\"z_index\":\"10\",\"_title\":\"Header\",\"structure\":\"30\",\"background_color\":\"#ffffff\",\"background_color_b\":\"#00f2ff\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":\"130\",\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"10\",\"blur\":\"20\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0.1)\"},\"sticky\":\"top\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-90\",\"left\":\"0\",\"isLinked\":\"\"},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"color_text\":\"#000000\",\"color_link\":\"#61ce70\",\"color_link_hover\":\"#4054b2\",\"text_align\":\"right\"},\"elements\":[{\"id\":\"2df1564\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"content_position\":\"center\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"_inline_size\":null,\"_inline_size_tablet\":\"50\",\"_inline_size_mobile\":\"50\",\"_title\":\"Logo Column\"},\"elements\":[{\"id\":\"37b8ff09\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":18,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/a.png\"},\"image_size\":\"full\",\"align\":\"left\",\"align_mobile\":\"left\",\"width\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"link\":{\"url\":\"https:\\/\\/edu.elementor.com\\/ekit\\/digital-agency-home\",\"is_external\":\"\",\"nofollow\":\"\"},\"__dynamic__\":{\"link\":\"[elementor-tag id=\\\"52081e4\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":\"\"},{\"id\":\"5bc722b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"content_position\":\"center\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"25\",\"_inline_size_mobile\":\"50\",\"_title\":\"Menu Column\"},\"elements\":[{\"id\":\"140a6135\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"right\",\"animation_line\":\"drop-out\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Varela Round\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"menu_typography_font_weight\":\"300\",\"color_menu_item\":\"#ffffff\",\"color_menu_item_hover\":\"#ffffff\",\"pointer_color_menu_item_hover\":\"#ffffff\",\"color_menu_item_active\":\"#ffffff\",\"pointer_color_menu_item_active\":\"#ffffff\",\"pointer_width\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":\"35\",\"sizes\":[]},\"menu_space_between\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"full_width\":\"stretch\",\"text_align\":\"center\",\"toggle_align\":\"right\",\"color_dropdown_item\":\"#3d4459\",\"background_color_dropdown_item\":\"#ffffff\",\"color_dropdown_item_hover\":\"#4632da\",\"background_color_dropdown_item_hover\":\"#ffffff\",\"color_dropdown_item_active\":\"#4632da\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_family\":\"Montserrat\",\"dropdown_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"dropdown_box_shadow_box_shadow_type\":\"yes\",\"dropdown_box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"2\",\"blur\":\"15\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0.1)\"},\"padding_vertical_dropdown_item_tablet\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"dropdown_divider_border\":\"solid\",\"dropdown_divider_color\":\"#efefef\",\"dropdown_divider_width\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"dropdown_top_distance_tablet\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"dropdown_top_distance_mobile\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"toggle_color\":\"#ffffff\",\"toggle_background_color\":\"rgba(255,255,255,0)\",\"toggle_color_hover\":\"#ffffff\",\"toggle_size\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"toggle_border_width\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_horizontal_dropdown_item\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"padding_vertical_dropdown_item\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"dropdown_top_distance\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"indicator\":\"chevron\",\"menu\":\"main-menu\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":\"\"},{\"id\":\"18ad01f5\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"content_position\":\"center\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":\"\"},\"_inline_size\":null,\"_inline_size_tablet\":\"25\",\"_inline_size_mobile\":\"100\",\"_title\":\"Phone Column\"},\"elements\":[{\"id\":\"34e445ac\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"209-337-5705\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"65e960f\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"icon_align\":\"right\",\"divider_color\":\"#ffffff\",\"icon_color\":\"#ffffff\",\"icon_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"text_color\":\"#ffffff\",\"text_indent\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Montserrat\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":\"\"},\"_border_color\":\"rgba(255,255,255,0.7)\",\"icon_align_mobile\":\"center\",\"_border_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(1888,281,'_edit_lock','1568724964:1'),(1668,256,'_elementor_template_type','post'),(1669,256,'_elementor_version','2.6.8'),(1670,256,'_elementor_pro_version','2.6.5'),(1671,256,'_wp_page_template','default'),(1672,256,'_elementor_data','[{\"id\":\"55396f27\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":50,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Theatrical_Display_V003C.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_range\":\"viewport\",\"motion_fx_motion_fx_scrolling\":\"yes\",\"layout\":\"full_width\",\"column_position\":\"top\"},\"elements\":[{\"id\":\"905a97c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dd42df6\",\"elType\":\"widget\",\"settings\":{\"menu\":\"main-menu\",\"align_items\":\"right\",\"pointer\":\"text\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"26\",\"right\":\"26\",\"bottom\":\"26\",\"left\":\"26\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"nav-menu\"},{\"id\":\"ad7f3f6\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2489c07\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c0bbe21\",\"elType\":\"widget\",\"settings\":{\"title\":\"#WHAT\'S COOL\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"dc881ae\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"18630a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"870a9ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"INNOVATIONS FROM ONDISPLAY CREATIVE\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7df48509\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\"},\"elements\":[{\"id\":\"1147078d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"23bbc68\",\"elType\":\"widget\",\"settings\":{\"title\":\"LIVING STANDEES HAUNTING THEATERS\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b40d155\",\"elType\":\"widget\",\"settings\":{\"title\":\"ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"700\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86cff8b\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"225341d\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS \\u2013 THE LAST KEY\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a680ae8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"be59fa3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e36fe5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"d4d2039\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2.jpg\",\"id\":88},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3c9b758\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"79e122a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2-1.jpg\",\"id\":87},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3dc9df5\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"start\":0},\"elements\":[],\"widgetType\":\"video\"},{\"id\":\"b61a90b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"8f63560\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"08c588a\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS CHAPTER 3\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0e612c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>OnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7e77f5a\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"gap\":\"wide\"},\"elements\":[{\"id\":\"7eb5a21\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.332},\"elements\":[{\"id\":\"ae25867\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/image-asset.jpeg\",\"id\":196},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"24c773b\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":58},\"elements\":[{\"id\":\"93ad602\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/130807026\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"236bdcf\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\"},\"elements\":[{\"id\":\"8a0b6da\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"e28765e\",\"elType\":\"widget\",\"settings\":{\"title\":\"VIRTUAL REALITY EXPERIENCE\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4d0f48c\",\"elType\":\"widget\",\"settings\":{\"title\":\"SOMETHING SOMETHING SOMETHING\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"700\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5a6ec50\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"93d4126\",\"elType\":\"widget\",\"settings\":{\"title\":\"SPIDER-MAN HOMECOMING DISPLAY\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bccfc67\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Submerse yourself in the world of your friendly neighborhood Spider-Man in this fun and thrilling VR Theatrical Display.\\u00a0\\u00a0Based on the all-new 2017 film, the Spider-Man Homecoming VR Experience is a first-person look through the eyes of Spidey himself.<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f786650\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"ec1b52b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":76},\"elements\":[{\"id\":\"74ca310\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Spidey_Home_V4_002.jpg\",\"id\":230},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"css_filters_css_filter\":\"custom\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"265cdc0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":24},\"elements\":[{\"id\":\"35c3d80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/IMG_3834.jpg\",\"id\":231},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"677c7e5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/IMG_3788.jpg\",\"id\":233}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"c22aabe\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"9a54f1a\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b747fda\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":700},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":900},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7eab781\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"43661634\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our company is a collective of amazing people striving to build delightful products.\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.4},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70cc6d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.<\\/p>\",\"align\":\"center\",\"text_color\":\"#686868\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"615dfb3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1000},\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"6414755f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3bb26eed\",\"elType\":\"widget\",\"settings\":{\"text\":\"Read More\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3},\"button_text_color\":\"#ffffff\",\"background_color\":\"rgba(0,0,0,0)\",\"hover_color\":\"#00ce1b\",\"button_hover_border_color\":\"#00ce1b\",\"hover_animation\":\"grow\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"123f6d1\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"25fcf2e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"64f593f\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"596f429\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(1673,256,'_elementor_edit_mode','builder'),(1674,256,'_elementor_elements_usage','a:10:{s:8:\"nav-menu\";i:1;s:7:\"heading\";i:10;s:6:\"column\";i:15;s:7:\"section\";i:12;s:7:\"divider\";i:4;s:11:\"text-editor\";i:4;s:5:\"image\";i:6;s:5:\"video\";i:2;s:6:\"spacer\";i:2;s:6:\"button\";i:1;}'),(1684,258,'_elementor_template_type','post'),(1685,258,'_elementor_version','2.6.8'),(1681,257,'_elementor_edit_mode','builder'),(1682,257,'_elementor_elements_usage','a:9:{s:7:\"heading\";i:10;s:6:\"column\";i:15;s:7:\"section\";i:12;s:7:\"divider\";i:4;s:11:\"text-editor\";i:4;s:5:\"image\";i:6;s:5:\"video\";i:2;s:6:\"spacer\";i:2;s:6:\"button\";i:1;}'),(1683,257,'_elementor_css','a:5:{s:4:\"time\";i:1568596554;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:1:{i:0;s:0:\"\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(1686,258,'_elementor_pro_version','2.6.5'),(1687,258,'_wp_page_template','default'),(1688,258,'_elementor_data','[{\"id\":\"55396f27\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":50,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Theatrical_Display_V003C.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_range\":\"viewport\",\"motion_fx_motion_fx_scrolling\":\"yes\",\"layout\":\"full_width\",\"column_position\":\"top\"},\"elements\":[{\"id\":\"905a97c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ad7f3f6\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"175\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2489c07\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c0bbe21\",\"elType\":\"widget\",\"settings\":{\"title\":\"#WHAT\'S COOL\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"dc881ae\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"18630a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"870a9ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"INNOVATIONS FROM ONDISPLAY CREATIVE\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7df48509\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\"},\"elements\":[{\"id\":\"1147078d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"23bbc68\",\"elType\":\"widget\",\"settings\":{\"title\":\"LIVING STANDEES HAUNTING THEATERS\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b40d155\",\"elType\":\"widget\",\"settings\":{\"title\":\"ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"700\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86cff8b\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"225341d\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS \\u2013 THE LAST KEY\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a680ae8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"be59fa3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e36fe5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"d4d2039\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2.jpg\",\"id\":88},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3c9b758\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"79e122a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2-1.jpg\",\"id\":87},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3dc9df5\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"start\":0},\"elements\":[],\"widgetType\":\"video\"},{\"id\":\"b61a90b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"8f63560\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"08c588a\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS CHAPTER 3\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0e612c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>OnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7e77f5a\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"gap\":\"wide\"},\"elements\":[{\"id\":\"7eb5a21\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.332},\"elements\":[{\"id\":\"ae25867\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/image-asset.jpeg\",\"id\":196},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"24c773b\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":58},\"elements\":[{\"id\":\"93ad602\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/130807026\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"236bdcf\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\"},\"elements\":[{\"id\":\"8a0b6da\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"e28765e\",\"elType\":\"widget\",\"settings\":{\"title\":\"VIRTUAL REALITY EXPERIENCE\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4d0f48c\",\"elType\":\"widget\",\"settings\":{\"title\":\"SOMETHING SOMETHING SOMETHING\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"700\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5a6ec50\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"93d4126\",\"elType\":\"widget\",\"settings\":{\"title\":\"SPIDER-MAN HOMECOMING DISPLAY\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bccfc67\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Submerse yourself in the world of your friendly neighborhood Spider-Man in this fun and thrilling VR Theatrical Display.\\u00a0\\u00a0Based on the all-new 2017 film, the Spider-Man Homecoming VR Experience is a first-person look through the eyes of Spidey himself.<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f786650\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"ec1b52b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":76},\"elements\":[{\"id\":\"74ca310\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Spidey_Home_V4_002.jpg\",\"id\":230},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"css_filters_css_filter\":\"custom\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"265cdc0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":24},\"elements\":[{\"id\":\"35c3d80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/IMG_3834.jpg\",\"id\":231},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"677c7e5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/IMG_3788.jpg\",\"id\":233}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"c22aabe\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"9a54f1a\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b747fda\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":700},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":900},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7eab781\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"43661634\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our company is a collective of amazing people striving to build delightful products.\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.4},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70cc6d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.<\\/p>\",\"align\":\"center\",\"text_color\":\"#686868\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"615dfb3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1000},\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"6414755f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3bb26eed\",\"elType\":\"widget\",\"settings\":{\"text\":\"Read More\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3},\"button_text_color\":\"#ffffff\",\"background_color\":\"rgba(0,0,0,0)\",\"hover_color\":\"#00ce1b\",\"button_hover_border_color\":\"#00ce1b\",\"hover_animation\":\"grow\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"123f6d1\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"25fcf2e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"64f593f\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"596f429\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(1689,258,'_elementor_edit_mode','builder'),(1690,258,'_elementor_elements_usage','a:9:{s:7:\"heading\";i:10;s:6:\"column\";i:15;s:7:\"section\";i:12;s:7:\"divider\";i:4;s:11:\"text-editor\";i:4;s:5:\"image\";i:6;s:5:\"video\";i:2;s:6:\"spacer\";i:2;s:6:\"button\";i:1;}'),(2396,366,'_elementor_template_type','post'),(2397,366,'_elementor_version','2.6.8'),(1699,259,'_elementor_conditions','a:1:{i:0;s:15:\"include/general\";}'),(1700,259,'_elementor_css','a:5:{s:4:\"time\";i:1568596493;s:5:\"fonts\";a:2:{i:0;s:12:\"Varela Round\";i:1;s:10:\"Montserrat\";}s:5:\"icons\";a:1:{i:0;s:8:\"fa-solid\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(1702,260,'_elementor_edit_mode','builder'),(1703,260,'_elementor_template_type','header'),(1704,260,'_elementor_version','2.6.8'),(1705,260,'_elementor_pro_version','2.6.5'),(1706,260,'_wp_page_template','default'),(1707,260,'_elementor_elements_usage','a:4:{s:5:\"image\";i:1;s:6:\"column\";i:2;s:8:\"nav-menu\";i:1;s:7:\"section\";i:1;}'),(1708,260,'_elementor_data','[{\"id\":\"68795a84\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":960,\"sizes\":[]},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":96,\"sizes\":[]},\"z_index\":\"10\",\"_title\":\"Header\",\"structure\":\"20\",\"background_color\":\"#ffffff\",\"background_color_b\":\"#00f2ff\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":\"130\",\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"10\",\"blur\":\"20\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0.1)\"},\"sticky\":\"top\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-90\",\"left\":\"0\",\"isLinked\":\"\"},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"color_text\":\"#000000\",\"color_link\":\"#61ce70\",\"color_link_hover\":\"#4054b2\",\"text_align\":\"right\",\"background_background\":\"classic\"},\"elements\":[{\"id\":\"2df1564\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"content_position\":\"center\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"_inline_size\":null,\"_inline_size_tablet\":\"50\",\"_inline_size_mobile\":\"50\",\"_title\":\"Logo Column\"},\"elements\":[{\"id\":\"37b8ff09\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":18,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/a.png\"},\"image_size\":\"full\",\"align\":\"left\",\"align_mobile\":\"left\",\"width\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"link\":{\"url\":\"https:\\/\\/edu.elementor.com\\/ekit\\/digital-agency-home\",\"is_external\":\"\",\"nofollow\":\"\"},\"__dynamic__\":{\"link\":\"[elementor-tag id=\\\"52081e4\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":\"\"},{\"id\":\"5bc722b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"content_position\":\"center\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"25\",\"_inline_size_mobile\":\"50\",\"_title\":\"Menu Column\"},\"elements\":[{\"id\":\"140a6135\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"right\",\"animation_line\":\"drop-out\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Varela Round\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"menu_typography_font_weight\":\"300\",\"color_menu_item\":\"#ffffff\",\"color_menu_item_hover\":\"#ffffff\",\"pointer_color_menu_item_hover\":\"#ffffff\",\"color_menu_item_active\":\"#ffffff\",\"pointer_color_menu_item_active\":\"#ffffff\",\"pointer_width\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":\"35\",\"sizes\":[]},\"menu_space_between\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"full_width\":\"stretch\",\"text_align\":\"center\",\"toggle_align\":\"right\",\"color_dropdown_item\":\"#3d4459\",\"background_color_dropdown_item\":\"#ffffff\",\"color_dropdown_item_hover\":\"#4632da\",\"background_color_dropdown_item_hover\":\"#ffffff\",\"color_dropdown_item_active\":\"#4632da\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_family\":\"Montserrat\",\"dropdown_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"dropdown_box_shadow_box_shadow_type\":\"yes\",\"dropdown_box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"2\",\"blur\":\"15\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0.1)\"},\"padding_vertical_dropdown_item_tablet\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"dropdown_divider_border\":\"solid\",\"dropdown_divider_color\":\"#efefef\",\"dropdown_divider_width\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"dropdown_top_distance_tablet\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"dropdown_top_distance_mobile\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"toggle_color\":\"#ffffff\",\"toggle_background_color\":\"rgba(255,255,255,0)\",\"toggle_color_hover\":\"#ffffff\",\"toggle_size\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"toggle_border_width\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_horizontal_dropdown_item\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"padding_vertical_dropdown_item\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"dropdown_top_distance\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"indicator\":\"chevron\",\"menu\":\"main-menu\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(1709,260,'_elementor_conditions','a:1:{i:0;s:15:\"include/general\";}'),(1710,260,'_elementor_css','a:5:{s:4:\"time\";i:1568597130;s:5:\"fonts\";a:2:{i:0;s:12:\"Varela Round\";i:1;s:10:\"Montserrat\";}s:5:\"icons\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(1712,261,'_elementor_edit_mode','builder'),(1713,261,'_elementor_template_type','header'),(1714,261,'_elementor_version','2.6.8'),(1715,261,'_elementor_pro_version','2.6.5'),(1716,261,'_wp_page_template','default'),(1717,261,'_elementor_elements_usage','a:4:{s:5:\"image\";i:1;s:6:\"column\";i:2;s:8:\"nav-menu\";i:1;s:7:\"section\";i:1;}'),(1718,261,'_elementor_data','[{\"id\":\"68795a84\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":960,\"sizes\":[]},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":96,\"sizes\":[]},\"z_index\":\"10\",\"_title\":\"Header\",\"structure\":\"20\",\"background_color\":\"#ffffff\",\"background_color_b\":\"#00f2ff\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":\"130\",\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"10\",\"blur\":\"20\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0.1)\"},\"sticky\":\"top\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-90\",\"left\":\"0\",\"isLinked\":\"\"},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"color_text\":\"#000000\",\"color_link\":\"#61ce70\",\"color_link_hover\":\"#4054b2\",\"text_align\":\"right\",\"background_background\":\"classic\"},\"elements\":[{\"id\":\"2df1564\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"content_position\":\"center\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"_inline_size\":null,\"_inline_size_tablet\":\"50\",\"_inline_size_mobile\":\"50\",\"_title\":\"Logo Column\"},\"elements\":[{\"id\":\"37b8ff09\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":18,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/a.png\"},\"image_size\":\"full\",\"align\":\"left\",\"align_mobile\":\"left\",\"width\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"link\":{\"url\":\"https:\\/\\/edu.elementor.com\\/ekit\\/digital-agency-home\",\"is_external\":\"\",\"nofollow\":\"\"},\"__dynamic__\":{\"link\":\"[elementor-tag id=\\\"52081e4\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":\"\"},{\"id\":\"5bc722b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"content_position\":\"center\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"25\",\"_inline_size_mobile\":\"50\",\"_title\":\"Menu Column\"},\"elements\":[{\"id\":\"140a6135\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"right\",\"animation_line\":\"drop-out\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Varela Round\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"menu_typography_font_weight\":\"300\",\"color_menu_item\":\"#16161d\",\"color_menu_item_hover\":\"#ee7624\",\"pointer_color_menu_item_hover\":\"#ffffff\",\"color_menu_item_active\":\"#ee7624\",\"pointer_color_menu_item_active\":\"#ffffff\",\"pointer_width\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":\"35\",\"sizes\":[]},\"menu_space_between\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"full_width\":\"stretch\",\"text_align\":\"center\",\"toggle_align\":\"right\",\"color_dropdown_item\":\"#3d4459\",\"background_color_dropdown_item\":\"#ffffff\",\"color_dropdown_item_hover\":\"#4632da\",\"background_color_dropdown_item_hover\":\"#ffffff\",\"color_dropdown_item_active\":\"#4632da\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_family\":\"Montserrat\",\"dropdown_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"dropdown_box_shadow_box_shadow_type\":\"yes\",\"dropdown_box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"2\",\"blur\":\"15\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0.1)\"},\"padding_vertical_dropdown_item_tablet\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"dropdown_divider_border\":\"solid\",\"dropdown_divider_color\":\"#efefef\",\"dropdown_divider_width\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"dropdown_top_distance_tablet\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"dropdown_top_distance_mobile\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"toggle_color\":\"#ffffff\",\"toggle_background_color\":\"rgba(255,255,255,0)\",\"toggle_color_hover\":\"#ffffff\",\"toggle_size\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"toggle_border_width\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_horizontal_dropdown_item\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"padding_vertical_dropdown_item\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"dropdown_top_distance\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"indicator\":\"chevron\",\"menu\":\"main-menu\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(1719,261,'_elementor_conditions','a:1:{i:0;s:15:\"include/general\";}'),(1720,261,'_elementor_css','a:5:{s:4:\"time\";i:1568597257;s:5:\"fonts\";a:2:{i:0;s:12:\"Varela Round\";i:1;s:10:\"Montserrat\";}s:5:\"icons\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(1721,262,'_elementor_edit_mode','builder'),(1722,262,'_elementor_template_type','header'),(1723,262,'_elementor_version','2.6.8'),(1724,262,'_elementor_pro_version','2.6.5'),(1725,262,'_wp_page_template','default'),(1726,262,'_elementor_elements_usage','a:4:{s:5:\"image\";i:1;s:6:\"column\";i:2;s:8:\"nav-menu\";i:1;s:7:\"section\";i:1;}'),(1727,262,'_elementor_data','[{\"id\":\"68795a84\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":960,\"sizes\":[]},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":96,\"sizes\":[]},\"z_index\":\"10\",\"_title\":\"Header\",\"structure\":\"20\",\"background_color\":\"#ffffff\",\"background_color_b\":\"#00f2ff\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":\"130\",\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"10\",\"blur\":\"20\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0.1)\"},\"sticky\":\"top\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-90\",\"left\":\"0\",\"isLinked\":\"\"},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"color_text\":\"#000000\",\"color_link\":\"#61ce70\",\"color_link_hover\":\"#4054b2\",\"text_align\":\"right\",\"background_background\":\"classic\",\"layout\":\"full_width\"},\"elements\":[{\"id\":\"2df1564\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"content_position\":\"center\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"_inline_size\":null,\"_inline_size_tablet\":\"50\",\"_inline_size_mobile\":\"50\",\"_title\":\"Logo Column\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false}},\"elements\":[{\"id\":\"37b8ff09\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":18,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/a.png\"},\"image_size\":\"full\",\"align\":\"left\",\"align_mobile\":\"left\",\"width\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"link\":{\"url\":\"https:\\/\\/edu.elementor.com\\/ekit\\/digital-agency-home\",\"is_external\":\"\",\"nofollow\":\"\"},\"__dynamic__\":{\"link\":\"[elementor-tag id=\\\"52081e4\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":\"\"},{\"id\":\"5bc722b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"content_position\":\"center\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"25\",\"_inline_size_mobile\":\"50\",\"_title\":\"Menu Column\"},\"elements\":[{\"id\":\"140a6135\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"right\",\"animation_line\":\"drop-out\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Varela Round\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"menu_typography_font_weight\":\"300\",\"color_menu_item\":\"#16161d\",\"color_menu_item_hover\":\"#ee7624\",\"pointer_color_menu_item_hover\":\"#ffffff\",\"color_menu_item_active\":\"#ee7624\",\"pointer_color_menu_item_active\":\"#ffffff\",\"pointer_width\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":\"35\",\"sizes\":[]},\"menu_space_between\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"full_width\":\"stretch\",\"text_align\":\"center\",\"toggle_align\":\"right\",\"color_dropdown_item\":\"#3d4459\",\"background_color_dropdown_item\":\"#ffffff\",\"color_dropdown_item_hover\":\"#4632da\",\"background_color_dropdown_item_hover\":\"#ffffff\",\"color_dropdown_item_active\":\"#4632da\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_family\":\"Montserrat\",\"dropdown_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"dropdown_box_shadow_box_shadow_type\":\"yes\",\"dropdown_box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"2\",\"blur\":\"15\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0.1)\"},\"padding_vertical_dropdown_item_tablet\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"dropdown_divider_border\":\"solid\",\"dropdown_divider_color\":\"#efefef\",\"dropdown_divider_width\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"dropdown_top_distance_tablet\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"dropdown_top_distance_mobile\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"toggle_color\":\"#ffffff\",\"toggle_background_color\":\"rgba(255,255,255,0)\",\"toggle_color_hover\":\"#ffffff\",\"toggle_size\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"toggle_border_width\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_horizontal_dropdown_item\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"padding_vertical_dropdown_item\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"dropdown_top_distance\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"indicator\":\"chevron\",\"menu\":\"main-menu\",\"_background_background\":\"classic\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"80\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(1728,262,'_elementor_conditions','a:1:{i:0;s:15:\"include/general\";}'),(1776,268,'_elementor_edit_mode','builder'),(1729,263,'_elementor_edit_mode','builder'),(1730,263,'_elementor_template_type','header'),(1731,263,'_elementor_version','2.6.8'),(1732,263,'_elementor_pro_version','2.6.5'),(1733,263,'_wp_page_template','default'),(1734,263,'_elementor_elements_usage','a:4:{s:5:\"image\";i:1;s:6:\"column\";i:2;s:8:\"nav-menu\";i:1;s:7:\"section\";i:1;}'),(1735,263,'_elementor_data','[{\"id\":\"68795a84\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":960,\"sizes\":[]},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":96,\"sizes\":[]},\"z_index\":\"10\",\"_title\":\"Header\",\"structure\":\"20\",\"background_color\":\"#ffffff\",\"background_color_b\":\"#00f2ff\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":\"130\",\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"10\",\"blur\":\"20\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0.1)\"},\"sticky\":\"top\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-90\",\"left\":\"0\",\"isLinked\":\"\"},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"color_text\":\"#000000\",\"color_link\":\"#61ce70\",\"color_link_hover\":\"#4054b2\",\"text_align\":\"right\",\"background_background\":\"classic\",\"layout\":\"full_width\"},\"elements\":[{\"id\":\"2df1564\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"content_position\":\"center\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"_inline_size\":null,\"_inline_size_tablet\":\"50\",\"_inline_size_mobile\":\"50\",\"_title\":\"Logo Column\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false}},\"elements\":[{\"id\":\"37b8ff09\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":18,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/a.png\"},\"image_size\":\"full\",\"align\":\"left\",\"align_mobile\":\"left\",\"width\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"link\":{\"url\":\"https:\\/\\/edu.elementor.com\\/ekit\\/digital-agency-home\",\"is_external\":\"\",\"nofollow\":\"\"},\"__dynamic__\":{\"link\":\"[elementor-tag id=\\\"52081e4\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":\"\"},{\"id\":\"5bc722b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"content_position\":\"center\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"25\",\"_inline_size_mobile\":\"50\",\"_title\":\"Menu Column\"},\"elements\":[{\"id\":\"140a6135\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"right\",\"animation_line\":\"drop-out\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"menu_typography_font_weight\":\"400\",\"color_menu_item\":\"#16161d\",\"color_menu_item_hover\":\"#ee7624\",\"pointer_color_menu_item_hover\":\"#ffffff\",\"color_menu_item_active\":\"#ee7624\",\"pointer_color_menu_item_active\":\"#ffffff\",\"pointer_width\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":\"35\",\"sizes\":[]},\"menu_space_between\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"full_width\":\"stretch\",\"text_align\":\"center\",\"toggle_align\":\"right\",\"color_dropdown_item\":\"#3d4459\",\"background_color_dropdown_item\":\"#ffffff\",\"color_dropdown_item_hover\":\"#4632da\",\"background_color_dropdown_item_hover\":\"#ffffff\",\"color_dropdown_item_active\":\"#4632da\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_family\":\"Montserrat\",\"dropdown_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"dropdown_box_shadow_box_shadow_type\":\"yes\",\"dropdown_box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"2\",\"blur\":\"15\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0.1)\"},\"padding_vertical_dropdown_item_tablet\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"dropdown_divider_border\":\"solid\",\"dropdown_divider_color\":\"#efefef\",\"dropdown_divider_width\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"dropdown_top_distance_tablet\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"dropdown_top_distance_mobile\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"toggle_color\":\"#ffffff\",\"toggle_background_color\":\"rgba(255,255,255,0)\",\"toggle_color_hover\":\"#ffffff\",\"toggle_size\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"toggle_border_width\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_horizontal_dropdown_item\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"padding_vertical_dropdown_item\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"dropdown_top_distance\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"indicator\":\"chevron\",\"menu\":\"main-menu\",\"_background_background\":\"classic\",\"menu_typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.4,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"80\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(1736,263,'_elementor_conditions','a:1:{i:0;s:15:\"include/general\";}'),(1821,273,'_elementor_template_type','header'),(1822,273,'_elementor_version','2.6.8'),(1754,265,'_elementor_conditions','a:1:{i:0;s:15:\"include/general\";}'),(1750,265,'_elementor_pro_version','2.6.5'),(1751,265,'_wp_page_template','default'),(1752,265,'_elementor_elements_usage','a:4:{s:5:\"image\";i:1;s:6:\"column\";i:2;s:8:\"nav-menu\";i:1;s:7:\"section\";i:1;}'),(1753,265,'_elementor_data','[{\"id\":\"68795a84\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":960,\"sizes\":[]},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":96,\"sizes\":[]},\"z_index\":\"10\",\"_title\":\"Header\",\"structure\":\"20\",\"background_color\":\"#ffffff\",\"background_color_b\":\"#00f2ff\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":\"130\",\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"10\",\"blur\":\"20\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0.1)\"},\"sticky\":\"top\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-90\",\"left\":\"0\",\"isLinked\":\"\"},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"color_text\":\"#000000\",\"color_link\":\"#61ce70\",\"color_link_hover\":\"#4054b2\",\"text_align\":\"right\",\"background_background\":\"classic\",\"layout\":\"full_width\"},\"elements\":[{\"id\":\"2df1564\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"content_position\":\"center\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"_inline_size\":null,\"_inline_size_tablet\":\"50\",\"_inline_size_mobile\":\"50\",\"_title\":\"Logo Column\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false}},\"elements\":[{\"id\":\"37b8ff09\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":18,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/a.png\"},\"image_size\":\"full\",\"align\":\"left\",\"align_mobile\":\"left\",\"width\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"link\":{\"url\":\"https:\\/\\/edu.elementor.com\\/ekit\\/digital-agency-home\",\"is_external\":\"\",\"nofollow\":\"\"},\"__dynamic__\":{\"link\":\"[elementor-tag id=\\\"52081e4\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":\"\"},{\"id\":\"5bc722b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"content_position\":\"center\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"25\",\"_inline_size_mobile\":\"50\",\"_title\":\"Menu Column\"},\"elements\":[{\"id\":\"140a6135\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"right\",\"animation_line\":\"drop-out\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"menu_typography_font_weight\":\"400\",\"color_menu_item\":\"#16161d\",\"color_menu_item_hover\":\"#ee7624\",\"pointer_color_menu_item_hover\":\"#ffffff\",\"color_menu_item_active\":\"#ee7624\",\"pointer_color_menu_item_active\":\"#ffffff\",\"pointer_width\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":\"35\",\"sizes\":[]},\"menu_space_between\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"full_width\":\"stretch\",\"toggle_align\":\"right\",\"color_dropdown_item\":\"#3d4459\",\"background_color_dropdown_item\":\"#ffffff\",\"color_dropdown_item_hover\":\"#4632da\",\"background_color_dropdown_item_hover\":\"#ffffff\",\"color_dropdown_item_active\":\"#4632da\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_family\":\"Montserrat\",\"dropdown_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"dropdown_box_shadow_box_shadow_type\":\"yes\",\"dropdown_box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"2\",\"blur\":\"15\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0.1)\"},\"padding_vertical_dropdown_item_tablet\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"dropdown_divider_border\":\"solid\",\"dropdown_divider_color\":\"#efefef\",\"dropdown_divider_width\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"dropdown_top_distance_tablet\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"dropdown_top_distance_mobile\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"toggle_color\":\"#ffffff\",\"toggle_background_color\":\"rgba(255,255,255,0)\",\"toggle_color_hover\":\"#ffffff\",\"toggle_size\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"toggle_border_width\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_horizontal_dropdown_item\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"padding_vertical_dropdown_item\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"dropdown_top_distance\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"indicator\":\"chevron\",\"menu\":\"main-menu\",\"_background_background\":\"classic\",\"menu_typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.4,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"80\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"dropdown\":\"mobile\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(1749,265,'_elementor_version','2.6.8'),(1747,265,'_elementor_edit_mode','builder'),(1748,265,'_elementor_template_type','header'),(1766,267,'_elementor_edit_mode','builder'),(1756,266,'_elementor_edit_mode','builder'),(1757,266,'_elementor_template_type','header'),(1758,266,'_elementor_version','2.6.8'),(1759,266,'_elementor_pro_version','2.6.5'),(1760,266,'_wp_page_template','default'),(1761,266,'_elementor_elements_usage','a:4:{s:5:\"image\";i:1;s:6:\"column\";i:2;s:8:\"nav-menu\";i:1;s:7:\"section\";i:1;}'),(1762,266,'_elementor_data','[{\"id\":\"68795a84\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":960,\"sizes\":[]},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":96,\"sizes\":[]},\"z_index\":\"10\",\"_title\":\"Header\",\"structure\":\"20\",\"background_color\":\"#ffffff\",\"background_color_b\":\"#00f2ff\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":\"130\",\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"10\",\"blur\":\"20\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0.1)\"},\"sticky\":\"top\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-90\",\"left\":\"0\",\"isLinked\":\"\"},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"color_text\":\"#000000\",\"color_link\":\"#61ce70\",\"color_link_hover\":\"#4054b2\",\"text_align\":\"right\",\"background_background\":\"classic\",\"layout\":\"full_width\"},\"elements\":[{\"id\":\"2df1564\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"content_position\":\"center\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"_inline_size\":null,\"_inline_size_tablet\":\"50\",\"_inline_size_mobile\":\"50\",\"_title\":\"Logo Column\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false}},\"elements\":[{\"id\":\"37b8ff09\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":18,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/a.png\"},\"image_size\":\"full\",\"align\":\"left\",\"align_mobile\":\"left\",\"width\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"link\":{\"url\":\"https:\\/\\/edu.elementor.com\\/ekit\\/digital-agency-home\",\"is_external\":\"\",\"nofollow\":\"\"},\"__dynamic__\":{\"link\":\"[elementor-tag id=\\\"52081e4\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":\"\"},{\"id\":\"5bc722b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"content_position\":\"center\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"25\",\"_inline_size_mobile\":\"50\",\"_title\":\"Menu Column\"},\"elements\":[{\"id\":\"140a6135\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"right\",\"animation_line\":\"drop-out\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"menu_typography_font_weight\":\"400\",\"color_menu_item\":\"#16161d\",\"color_menu_item_hover\":\"#ee7624\",\"pointer_color_menu_item_hover\":\"#ffffff\",\"color_menu_item_active\":\"#ee7624\",\"pointer_color_menu_item_active\":\"#ffffff\",\"pointer_width\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":\"35\",\"sizes\":[]},\"menu_space_between\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"full_width\":\"stretch\",\"text_align\":\"center\",\"toggle_align\":\"right\",\"color_dropdown_item\":\"#3d4459\",\"background_color_dropdown_item\":\"#ffffff\",\"color_dropdown_item_hover\":\"#4632da\",\"background_color_dropdown_item_hover\":\"#ffffff\",\"color_dropdown_item_active\":\"#4632da\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_family\":\"Montserrat\",\"dropdown_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"dropdown_box_shadow_box_shadow_type\":\"yes\",\"dropdown_box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"2\",\"blur\":\"15\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0.1)\"},\"padding_vertical_dropdown_item_tablet\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"dropdown_divider_border\":\"solid\",\"dropdown_divider_color\":\"#efefef\",\"dropdown_divider_width\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"dropdown_top_distance_tablet\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"dropdown_top_distance_mobile\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"toggle_color\":\"#ffffff\",\"toggle_background_color\":\"rgba(255,255,255,0)\",\"toggle_color_hover\":\"#ffffff\",\"toggle_size\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"toggle_border_width\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_horizontal_dropdown_item\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"padding_vertical_dropdown_item\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"dropdown_top_distance\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"indicator\":\"chevron\",\"menu\":\"main-menu\",\"_background_background\":\"classic\",\"menu_typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.4,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"80\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"dropdown\":\"mobile\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(1763,266,'_elementor_conditions','a:1:{i:0;s:15:\"include/general\";}'),(1764,266,'_elementor_css','a:5:{s:4:\"time\";i:1568602846;s:5:\"fonts\";a:1:{i:0;s:10:\"Montserrat\";}s:5:\"icons\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(1767,267,'_elementor_template_type','header'),(1768,267,'_elementor_version','2.6.8'),(1769,267,'_elementor_pro_version','2.6.5'),(1770,267,'_wp_page_template','default'),(1771,267,'_elementor_elements_usage','a:4:{s:5:\"image\";i:1;s:6:\"column\";i:2;s:8:\"nav-menu\";i:1;s:7:\"section\";i:1;}'),(1772,267,'_elementor_data','[{\"id\":\"68795a84\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":960,\"sizes\":[]},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":96,\"sizes\":[]},\"z_index\":\"10\",\"_title\":\"Header\",\"structure\":\"20\",\"background_color\":\"#ffffff\",\"background_color_b\":\"#00f2ff\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":\"130\",\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"10\",\"blur\":\"20\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0.1)\"},\"sticky\":\"top\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-90\",\"left\":\"0\",\"isLinked\":\"\"},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"color_text\":\"#000000\",\"color_link\":\"#61ce70\",\"color_link_hover\":\"#4054b2\",\"text_align\":\"right\",\"background_background\":\"classic\",\"layout\":\"full_width\"},\"elements\":[{\"id\":\"2df1564\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"content_position\":\"center\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"_inline_size\":null,\"_inline_size_tablet\":\"50\",\"_inline_size_mobile\":\"50\",\"_title\":\"Logo Column\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false}},\"elements\":[{\"id\":\"37b8ff09\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":18,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/a.png\"},\"image_size\":\"full\",\"align\":\"left\",\"align_mobile\":\"left\",\"width\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"link\":{\"url\":\"https:\\/\\/edu.elementor.com\\/ekit\\/digital-agency-home\",\"is_external\":\"\",\"nofollow\":\"\"},\"__dynamic__\":{\"link\":\"[elementor-tag id=\\\"52081e4\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":\"\"},{\"id\":\"5bc722b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"content_position\":\"center\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"25\",\"_inline_size_mobile\":\"50\",\"_title\":\"Menu Column\"},\"elements\":[{\"id\":\"140a6135\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"right\",\"animation_line\":\"drop-out\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"menu_typography_font_weight\":\"400\",\"color_menu_item\":\"#16161d\",\"color_menu_item_hover\":\"#ee7624\",\"pointer_color_menu_item_hover\":\"#ffffff\",\"color_menu_item_active\":\"#ee7624\",\"pointer_color_menu_item_active\":\"#ffffff\",\"pointer_width\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":\"35\",\"sizes\":[]},\"menu_space_between\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"full_width\":\"stretch\",\"text_align\":\"center\",\"toggle_align\":\"right\",\"color_dropdown_item\":\"#3d4459\",\"background_color_dropdown_item\":\"#ffffff\",\"color_dropdown_item_hover\":\"#4632da\",\"background_color_dropdown_item_hover\":\"#ffffff\",\"color_dropdown_item_active\":\"#4632da\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_family\":\"Montserrat\",\"dropdown_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"dropdown_box_shadow_box_shadow_type\":\"yes\",\"dropdown_box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"2\",\"blur\":\"15\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0.1)\"},\"padding_vertical_dropdown_item_tablet\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"dropdown_divider_border\":\"solid\",\"dropdown_divider_color\":\"#efefef\",\"dropdown_divider_width\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"dropdown_top_distance_tablet\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"dropdown_top_distance_mobile\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"toggle_color\":\"#ffffff\",\"toggle_background_color\":\"rgba(255,255,255,0)\",\"toggle_color_hover\":\"#ffffff\",\"toggle_size\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"toggle_border_width\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_horizontal_dropdown_item\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"padding_vertical_dropdown_item\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"dropdown_top_distance\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"indicator\":\"chevron\",\"menu\":\"main-menu\",\"_background_background\":\"classic\",\"menu_typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.4,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"80\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(1773,267,'_elementor_conditions','a:1:{i:0;s:15:\"include/general\";}'),(1774,267,'_elementor_css','a:5:{s:4:\"time\";i:1568602869;s:5:\"fonts\";a:1:{i:0;s:10:\"Montserrat\";}s:5:\"icons\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(1777,268,'_elementor_template_type','header'),(1778,268,'_elementor_version','2.6.8'),(1779,268,'_elementor_pro_version','2.6.5'),(1780,268,'_wp_page_template','default'),(1781,268,'_elementor_elements_usage','a:4:{s:5:\"image\";i:1;s:6:\"column\";i:2;s:8:\"nav-menu\";i:1;s:7:\"section\";i:1;}'),(1782,268,'_elementor_data','[{\"id\":\"68795a84\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":960,\"sizes\":[]},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":96,\"sizes\":[]},\"z_index\":\"10\",\"_title\":\"Header\",\"structure\":\"20\",\"background_color\":\"#ffffff\",\"background_color_b\":\"#00f2ff\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":\"130\",\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"10\",\"blur\":\"20\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0.1)\"},\"sticky\":\"top\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-90\",\"left\":\"0\",\"isLinked\":\"\"},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"color_text\":\"#000000\",\"color_link\":\"#61ce70\",\"color_link_hover\":\"#4054b2\",\"text_align\":\"right\",\"background_background\":\"classic\",\"layout\":\"full_width\"},\"elements\":[{\"id\":\"2df1564\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"content_position\":\"center\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"_inline_size\":null,\"_inline_size_tablet\":\"50\",\"_inline_size_mobile\":\"50\",\"_title\":\"Logo Column\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false}},\"elements\":[{\"id\":\"37b8ff09\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":18,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/a.png\"},\"image_size\":\"full\",\"align\":\"left\",\"align_mobile\":\"left\",\"width\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"link\":{\"url\":\"https:\\/\\/edu.elementor.com\\/ekit\\/digital-agency-home\",\"is_external\":\"\",\"nofollow\":\"\"},\"__dynamic__\":{\"link\":\"[elementor-tag id=\\\"52081e4\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":\"\"},{\"id\":\"5bc722b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"content_position\":\"center\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"25\",\"_inline_size_mobile\":\"50\",\"_title\":\"Menu Column\"},\"elements\":[{\"id\":\"140a6135\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"right\",\"animation_line\":\"drop-out\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"menu_typography_font_weight\":\"400\",\"color_menu_item\":\"#16161d\",\"color_menu_item_hover\":\"#ee7624\",\"pointer_color_menu_item_hover\":\"#ffffff\",\"color_menu_item_active\":\"#ee7624\",\"pointer_color_menu_item_active\":\"#ffffff\",\"pointer_width\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":\"35\",\"sizes\":[]},\"menu_space_between\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"text_align\":\"center\",\"toggle_align\":\"right\",\"color_dropdown_item\":\"#3d4459\",\"background_color_dropdown_item\":\"#ffffff\",\"color_dropdown_item_hover\":\"#4632da\",\"background_color_dropdown_item_hover\":\"#ffffff\",\"color_dropdown_item_active\":\"#4632da\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_family\":\"Montserrat\",\"dropdown_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"dropdown_box_shadow_box_shadow_type\":\"yes\",\"dropdown_box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"2\",\"blur\":\"15\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0.1)\"},\"padding_vertical_dropdown_item_tablet\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"dropdown_divider_border\":\"solid\",\"dropdown_divider_color\":\"#efefef\",\"dropdown_divider_width\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"dropdown_top_distance_tablet\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"dropdown_top_distance_mobile\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"toggle_color\":\"#ffffff\",\"toggle_background_color\":\"rgba(255,255,255,0)\",\"toggle_color_hover\":\"#ffffff\",\"toggle_size\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"toggle_border_width\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_horizontal_dropdown_item\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"padding_vertical_dropdown_item\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"dropdown_top_distance\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"indicator\":\"chevron\",\"menu\":\"main-menu\",\"_background_background\":\"classic\",\"menu_typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.4,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"80\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(1783,268,'_elementor_conditions','a:1:{i:0;s:15:\"include/general\";}'),(1784,268,'_elementor_css','a:5:{s:4:\"time\";i:1568602885;s:5:\"fonts\";a:1:{i:0;s:10:\"Montserrat\";}s:5:\"icons\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(1787,269,'_elementor_edit_mode','builder'),(1788,269,'_elementor_template_type','header'),(1789,269,'_elementor_version','2.6.8'),(1790,269,'_elementor_pro_version','2.6.5'),(1791,269,'_wp_page_template','default'),(1792,269,'_elementor_elements_usage','a:4:{s:5:\"image\";i:1;s:6:\"column\";i:2;s:8:\"nav-menu\";i:1;s:7:\"section\";i:1;}'),(1793,269,'_elementor_data','[{\"id\":\"68795a84\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":960,\"sizes\":[]},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":96,\"sizes\":[]},\"z_index\":\"10\",\"_title\":\"Header\",\"structure\":\"20\",\"background_color\":\"#ffffff\",\"background_color_b\":\"#00f2ff\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":\"130\",\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"10\",\"blur\":\"20\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0.1)\"},\"sticky\":\"top\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-90\",\"left\":\"0\",\"isLinked\":\"\"},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"color_text\":\"#000000\",\"color_link\":\"#61ce70\",\"color_link_hover\":\"#4054b2\",\"text_align\":\"right\",\"background_background\":\"classic\",\"layout\":\"full_width\"},\"elements\":[{\"id\":\"2df1564\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"content_position\":\"center\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"_inline_size\":null,\"_inline_size_tablet\":\"50\",\"_inline_size_mobile\":\"50\",\"_title\":\"Logo Column\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false}},\"elements\":[{\"id\":\"37b8ff09\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":18,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/a.png\"},\"image_size\":\"medium_large\",\"align\":\"left\",\"align_mobile\":\"left\",\"width\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"link\":{\"url\":\"https:\\/\\/edu.elementor.com\\/ekit\\/digital-agency-home\",\"is_external\":\"\",\"nofollow\":\"\"},\"__dynamic__\":{\"link\":\"[elementor-tag id=\\\"52081e4\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"_background_background\":\"classic\",\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":\"\"},{\"id\":\"5bc722b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"content_position\":\"center\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"25\",\"_inline_size_mobile\":\"50\",\"_title\":\"Menu Column\"},\"elements\":[{\"id\":\"140a6135\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"right\",\"animation_line\":\"drop-out\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"menu_typography_font_weight\":\"400\",\"color_menu_item\":\"#16161d\",\"color_menu_item_hover\":\"#ee7624\",\"pointer_color_menu_item_hover\":\"#ffffff\",\"color_menu_item_active\":\"#ee7624\",\"pointer_color_menu_item_active\":\"#ffffff\",\"pointer_width\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":\"35\",\"sizes\":[]},\"menu_space_between\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"text_align\":\"center\",\"toggle_align\":\"right\",\"color_dropdown_item\":\"#3d4459\",\"background_color_dropdown_item\":\"#ffffff\",\"color_dropdown_item_hover\":\"#4632da\",\"background_color_dropdown_item_hover\":\"#ffffff\",\"color_dropdown_item_active\":\"#4632da\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_family\":\"Montserrat\",\"dropdown_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"dropdown_box_shadow_box_shadow_type\":\"yes\",\"dropdown_box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"2\",\"blur\":\"15\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0.1)\"},\"padding_vertical_dropdown_item_tablet\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"dropdown_divider_border\":\"solid\",\"dropdown_divider_color\":\"#efefef\",\"dropdown_divider_width\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"dropdown_top_distance_tablet\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"dropdown_top_distance_mobile\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"toggle_color\":\"#ffffff\",\"toggle_background_color\":\"rgba(255,255,255,0)\",\"toggle_color_hover\":\"#ffffff\",\"toggle_size\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"toggle_border_width\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_horizontal_dropdown_item\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"padding_vertical_dropdown_item\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"dropdown_top_distance\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"indicator\":\"chevron\",\"menu\":\"main-menu\",\"_background_background\":\"classic\",\"menu_typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.4,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"80\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(1794,269,'_elementor_conditions','a:1:{i:0;s:15:\"include/general\";}'),(1795,269,'_elementor_css','a:5:{s:4:\"time\";i:1568602982;s:5:\"fonts\";a:1:{i:0;s:10:\"Montserrat\";}s:5:\"icons\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(1797,270,'_elementor_edit_mode','builder'),(1798,270,'_elementor_template_type','header'),(1799,270,'_elementor_version','2.6.8'),(1800,270,'_elementor_pro_version','2.6.5'),(1801,270,'_edit_lock','1568752055:1'),(1802,270,'_astra_content_layout_flag','disabled'),(1803,270,'site-post-title','disabled'),(1804,270,'ast-title-bar-display','disabled'),(1805,270,'ast-featured-img','disabled'),(1806,270,'site-content-layout','page-builder'),(1807,270,'site-sidebar-layout','no-sidebar'),(1808,271,'_wp_attached_file','2019/09/placeholder.png'),(1809,271,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1200;s:6:\"height\";i:800;s:4:\"file\";s:23:\"2019/09/placeholder.png\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"placeholder-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"placeholder-300x200.png\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:23:\"placeholder-768x512.png\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:24:\"placeholder-1024x683.png\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1810,271,'_elementor_source_image_hash','f4dbf44cc3cac0865d8f28d3cf3d3c3849a500fd'),(1820,273,'_elementor_edit_mode','builder'),(1811,272,'_elementor_edit_mode','builder'),(1812,272,'_elementor_template_type','header'),(1813,272,'_elementor_version','2.6.8'),(1814,272,'_elementor_pro_version','2.6.5'),(1815,272,'_wp_page_template','default'),(1816,272,'_elementor_elements_usage','a:4:{s:5:\"image\";i:1;s:6:\"column\";i:2;s:8:\"nav-menu\";i:1;s:7:\"section\";i:1;}'),(1817,272,'_elementor_data','[{\"id\":\"68795a84\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":960,\"sizes\":[]},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":96,\"sizes\":[]},\"z_index\":\"10\",\"_title\":\"Header\",\"structure\":\"20\",\"background_color\":\"#ffffff\",\"background_color_b\":\"#00f2ff\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":\"130\",\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"10\",\"blur\":\"20\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0.1)\"},\"sticky\":\"top\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-90\",\"left\":\"0\",\"isLinked\":\"\"},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"color_text\":\"#000000\",\"color_link\":\"#61ce70\",\"color_link_hover\":\"#4054b2\",\"text_align\":\"right\",\"background_background\":\"classic\",\"layout\":\"full_width\"},\"elements\":[{\"id\":\"2df1564\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"content_position\":\"center\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"_inline_size\":null,\"_inline_size_tablet\":\"50\",\"_inline_size_mobile\":\"50\",\"_title\":\"Logo Column\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/a.png\",\"id\":18},\"background_position\":\"center left\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"background_bg_width\":{\"unit\":\"%\",\"size\":93,\"sizes\":[]}},\"elements\":[{\"id\":\"37b8ff09\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":18,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/a.png\"},\"image_size\":\"medium_large\",\"align\":\"left\",\"align_mobile\":\"left\",\"width\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"link\":{\"url\":\"https:\\/\\/edu.elementor.com\\/ekit\\/digital-agency-home\",\"is_external\":\"\",\"nofollow\":\"\"},\"__dynamic__\":{\"link\":\"[elementor-tag id=\\\"52081e4\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"_background_background\":\"classic\",\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":\"\"},{\"id\":\"5bc722b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"content_position\":\"center\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"25\",\"_inline_size_mobile\":\"50\",\"_title\":\"Menu Column\"},\"elements\":[{\"id\":\"140a6135\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"right\",\"animation_line\":\"drop-out\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"menu_typography_font_weight\":\"400\",\"color_menu_item\":\"#16161d\",\"color_menu_item_hover\":\"#ee7624\",\"pointer_color_menu_item_hover\":\"#ffffff\",\"color_menu_item_active\":\"#ee7624\",\"pointer_color_menu_item_active\":\"#ffffff\",\"pointer_width\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":\"35\",\"sizes\":[]},\"menu_space_between\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"text_align\":\"center\",\"toggle_align\":\"right\",\"color_dropdown_item\":\"#3d4459\",\"background_color_dropdown_item\":\"#ffffff\",\"color_dropdown_item_hover\":\"#4632da\",\"background_color_dropdown_item_hover\":\"#ffffff\",\"color_dropdown_item_active\":\"#4632da\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_family\":\"Montserrat\",\"dropdown_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"dropdown_box_shadow_box_shadow_type\":\"yes\",\"dropdown_box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"2\",\"blur\":\"15\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0.1)\"},\"padding_vertical_dropdown_item_tablet\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"dropdown_divider_border\":\"solid\",\"dropdown_divider_color\":\"#efefef\",\"dropdown_divider_width\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"dropdown_top_distance_tablet\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"dropdown_top_distance_mobile\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"toggle_color\":\"#ffffff\",\"toggle_background_color\":\"rgba(255,255,255,0)\",\"toggle_color_hover\":\"#ffffff\",\"toggle_size\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"toggle_border_width\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_horizontal_dropdown_item\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"padding_vertical_dropdown_item\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"dropdown_top_distance\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"indicator\":\"chevron\",\"menu\":\"main-menu\",\"_background_background\":\"classic\",\"menu_typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.4,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"80\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(1818,272,'_elementor_conditions','a:1:{i:0;s:15:\"include/general\";}'),(1819,272,'_elementor_css','a:5:{s:4:\"time\";i:1568603088;s:5:\"fonts\";a:1:{i:0;s:10:\"Montserrat\";}s:5:\"icons\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(1823,273,'_elementor_pro_version','2.6.5'),(1824,273,'_wp_page_template','default'),(1825,273,'_elementor_elements_usage','a:4:{s:5:\"image\";i:1;s:6:\"column\";i:2;s:8:\"nav-menu\";i:1;s:7:\"section\";i:1;}'),(1826,273,'_elementor_data','[{\"id\":\"68795a84\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":960,\"sizes\":[]},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":96,\"sizes\":[]},\"z_index\":\"10\",\"_title\":\"Header\",\"structure\":\"20\",\"background_color\":\"#ffffff\",\"background_color_b\":\"#00f2ff\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":\"130\",\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"10\",\"blur\":\"20\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0.1)\"},\"sticky\":\"top\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-90\",\"left\":\"0\",\"isLinked\":\"\"},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"color_text\":\"#000000\",\"color_link\":\"#61ce70\",\"color_link_hover\":\"#4054b2\",\"text_align\":\"right\",\"background_background\":\"classic\",\"layout\":\"full_width\"},\"elements\":[{\"id\":\"2df1564\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"content_position\":\"center\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"_inline_size\":null,\"_inline_size_tablet\":\"50\",\"_inline_size_mobile\":\"50\",\"_title\":\"Logo Column\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/a.png\",\"id\":18},\"background_position\":\"center left\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"background_bg_width\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]}},\"elements\":[{\"id\":\"37b8ff09\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"\"},\"image_size\":\"medium_large\",\"align\":\"left\",\"align_mobile\":\"left\",\"width\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"link\":{\"url\":\"https:\\/\\/edu.elementor.com\\/ekit\\/digital-agency-home\",\"is_external\":\"\",\"nofollow\":\"\"},\"__dynamic__\":{\"link\":\"[elementor-tag id=\\\"52081e4\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"_background_background\":\"classic\",\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":\"\"},{\"id\":\"5bc722b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"content_position\":\"center\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"25\",\"_inline_size_mobile\":\"50\",\"_title\":\"Menu Column\"},\"elements\":[{\"id\":\"140a6135\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"right\",\"animation_line\":\"drop-out\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"menu_typography_font_weight\":\"400\",\"color_menu_item\":\"#16161d\",\"color_menu_item_hover\":\"#ee7624\",\"pointer_color_menu_item_hover\":\"#ffffff\",\"color_menu_item_active\":\"#ee7624\",\"pointer_color_menu_item_active\":\"#ffffff\",\"pointer_width\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":\"35\",\"sizes\":[]},\"menu_space_between\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"text_align\":\"center\",\"toggle_align\":\"right\",\"color_dropdown_item\":\"#3d4459\",\"background_color_dropdown_item\":\"#ffffff\",\"color_dropdown_item_hover\":\"#4632da\",\"background_color_dropdown_item_hover\":\"#ffffff\",\"color_dropdown_item_active\":\"#4632da\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_family\":\"Montserrat\",\"dropdown_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"dropdown_box_shadow_box_shadow_type\":\"yes\",\"dropdown_box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"2\",\"blur\":\"15\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0.1)\"},\"padding_vertical_dropdown_item_tablet\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"dropdown_divider_border\":\"solid\",\"dropdown_divider_color\":\"#efefef\",\"dropdown_divider_width\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"dropdown_top_distance_tablet\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"dropdown_top_distance_mobile\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"toggle_color\":\"#ffffff\",\"toggle_background_color\":\"rgba(255,255,255,0)\",\"toggle_color_hover\":\"#ffffff\",\"toggle_size\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"toggle_border_width\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_horizontal_dropdown_item\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"padding_vertical_dropdown_item\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"dropdown_top_distance\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"indicator\":\"chevron\",\"menu\":\"main-menu\",\"_background_background\":\"classic\",\"menu_typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.4,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"80\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(1827,273,'_elementor_conditions','a:1:{i:0;s:15:\"include/general\";}'),(1828,274,'_elementor_edit_mode','builder'),(1829,274,'_elementor_template_type','header'),(1830,274,'_elementor_version','2.6.8'),(1831,274,'_elementor_pro_version','2.6.5'),(1832,274,'_wp_page_template','default'),(1833,274,'_elementor_elements_usage','a:4:{s:5:\"image\";i:1;s:6:\"column\";i:2;s:8:\"nav-menu\";i:1;s:7:\"section\";i:1;}'),(1834,274,'_elementor_data','[{\"id\":\"68795a84\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":960,\"sizes\":[]},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":96,\"sizes\":[]},\"z_index\":\"10\",\"_title\":\"Header\",\"structure\":\"20\",\"background_color\":\"#ffffff\",\"background_color_b\":\"#00f2ff\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":\"130\",\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"10\",\"blur\":\"20\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0.1)\"},\"sticky\":\"top\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-90\",\"left\":\"0\",\"isLinked\":\"\"},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"color_text\":\"#000000\",\"color_link\":\"#61ce70\",\"color_link_hover\":\"#4054b2\",\"text_align\":\"right\",\"background_background\":\"classic\",\"layout\":\"full_width\"},\"elements\":[{\"id\":\"2df1564\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"content_position\":\"center\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"_inline_size\":null,\"_inline_size_tablet\":\"50\",\"_inline_size_mobile\":\"50\",\"_title\":\"Logo Column\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/a.png\",\"id\":18},\"background_position\":\"center left\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"background_bg_width\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"background_size_tablet\":\"initial\",\"background_size_mobile\":\"initial\",\"background_bg_width_tablet\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"background_bg_width_mobile\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]}},\"elements\":[{\"id\":\"37b8ff09\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"\"},\"image_size\":\"medium_large\",\"align\":\"left\",\"align_mobile\":\"left\",\"width\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"link\":{\"url\":\"https:\\/\\/edu.elementor.com\\/ekit\\/digital-agency-home\",\"is_external\":\"\",\"nofollow\":\"\"},\"__dynamic__\":{\"link\":\"[elementor-tag id=\\\"52081e4\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"_background_background\":\"classic\",\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":\"\"},{\"id\":\"5bc722b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"content_position\":\"center\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"25\",\"_inline_size_mobile\":\"50\",\"_title\":\"Menu Column\"},\"elements\":[{\"id\":\"140a6135\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"right\",\"animation_line\":\"drop-out\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"menu_typography_font_weight\":\"400\",\"color_menu_item\":\"#16161d\",\"color_menu_item_hover\":\"#ee7624\",\"pointer_color_menu_item_hover\":\"#ffffff\",\"color_menu_item_active\":\"#ee7624\",\"pointer_color_menu_item_active\":\"#ffffff\",\"pointer_width\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":\"35\",\"sizes\":[]},\"menu_space_between\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"text_align\":\"center\",\"toggle_align\":\"right\",\"color_dropdown_item\":\"#3d4459\",\"background_color_dropdown_item\":\"#ffffff\",\"color_dropdown_item_hover\":\"#4632da\",\"background_color_dropdown_item_hover\":\"#ffffff\",\"color_dropdown_item_active\":\"#4632da\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_family\":\"Montserrat\",\"dropdown_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"dropdown_box_shadow_box_shadow_type\":\"yes\",\"dropdown_box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"2\",\"blur\":\"15\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0.1)\"},\"padding_vertical_dropdown_item_tablet\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"dropdown_divider_border\":\"solid\",\"dropdown_divider_color\":\"#efefef\",\"dropdown_divider_width\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"dropdown_top_distance_tablet\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"dropdown_top_distance_mobile\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"toggle_color\":\"#ffffff\",\"toggle_background_color\":\"rgba(255,255,255,0)\",\"toggle_color_hover\":\"#ffffff\",\"toggle_size\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"toggle_border_width\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_horizontal_dropdown_item\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"padding_vertical_dropdown_item\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"dropdown_top_distance\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"indicator\":\"chevron\",\"menu\":\"main-menu\",\"_background_background\":\"classic\",\"menu_typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.4,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"80\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(1835,274,'_elementor_conditions','a:1:{i:0;s:15:\"include/general\";}'),(1846,276,'_elementor_edit_mode','builder'),(1847,276,'_elementor_template_type','header'),(1837,275,'_elementor_edit_mode','builder'),(1838,275,'_elementor_template_type','header'),(1839,275,'_elementor_version','2.6.8'),(1840,275,'_elementor_pro_version','2.6.5'),(1841,275,'_wp_page_template','default'),(1842,275,'_elementor_elements_usage','a:4:{s:5:\"image\";i:1;s:6:\"column\";i:2;s:8:\"nav-menu\";i:1;s:7:\"section\";i:1;}'),(1843,275,'_elementor_data','[{\"id\":\"68795a84\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":960,\"sizes\":[]},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":96,\"sizes\":[]},\"z_index\":\"10\",\"_title\":\"Header\",\"structure\":\"20\",\"background_color\":\"#ffffff\",\"background_color_b\":\"#00f2ff\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":\"130\",\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"10\",\"blur\":\"20\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0.1)\"},\"sticky\":\"top\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-90\",\"left\":\"0\",\"isLinked\":\"\"},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"color_text\":\"#000000\",\"color_link\":\"#61ce70\",\"color_link_hover\":\"#4054b2\",\"text_align\":\"right\",\"background_background\":\"classic\",\"layout\":\"full_width\"},\"elements\":[{\"id\":\"2df1564\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"content_position\":\"center\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"_inline_size\":null,\"_inline_size_tablet\":\"50\",\"_inline_size_mobile\":\"50\",\"_title\":\"Logo Column\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/a.png\",\"id\":18},\"background_position\":\"center left\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"background_bg_width\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"background_size_tablet\":\"initial\",\"background_size_mobile\":\"initial\",\"background_bg_width_tablet\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"background_bg_width_mobile\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]}},\"elements\":[{\"id\":\"37b8ff09\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"\"},\"image_size\":\"medium_large\",\"align\":\"left\",\"align_mobile\":\"left\",\"width\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"link\":{\"url\":\"https:\\/\\/edu.elementor.com\\/ekit\\/digital-agency-home\",\"is_external\":\"\",\"nofollow\":\"\"},\"__dynamic__\":{\"link\":\"[elementor-tag id=\\\"52081e4\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"_background_background\":\"classic\",\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":\"\"},{\"id\":\"5bc722b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"content_position\":\"center\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"25\",\"_inline_size_mobile\":\"50\",\"_title\":\"Menu Column\"},\"elements\":[{\"id\":\"140a6135\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"right\",\"animation_line\":\"drop-out\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"menu_typography_font_weight\":\"400\",\"color_menu_item\":\"#16161d\",\"color_menu_item_hover\":\"#ee7624\",\"pointer_color_menu_item_hover\":\"#ffffff\",\"color_menu_item_active\":\"#ee7624\",\"pointer_color_menu_item_active\":\"#ffffff\",\"pointer_width\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":\"35\",\"sizes\":[]},\"menu_space_between\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"toggle_align\":\"right\",\"color_dropdown_item\":\"#3d4459\",\"background_color_dropdown_item\":\"#ffffff\",\"color_dropdown_item_hover\":\"#4632da\",\"background_color_dropdown_item_hover\":\"#ffffff\",\"color_dropdown_item_active\":\"#4632da\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_family\":\"Montserrat\",\"dropdown_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"dropdown_box_shadow_box_shadow_type\":\"yes\",\"dropdown_box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"2\",\"blur\":\"15\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0.1)\"},\"padding_vertical_dropdown_item_tablet\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"dropdown_divider_border\":\"solid\",\"dropdown_divider_color\":\"#efefef\",\"dropdown_divider_width\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"dropdown_top_distance_tablet\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"dropdown_top_distance_mobile\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"toggle_color\":\"#ffffff\",\"toggle_background_color\":\"rgba(255,255,255,0)\",\"toggle_color_hover\":\"#ffffff\",\"toggle_size\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"toggle_border_width\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_horizontal_dropdown_item\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"padding_vertical_dropdown_item\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"dropdown_top_distance\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"indicator\":\"chevron\",\"menu\":\"main-menu\",\"_background_background\":\"classic\",\"menu_typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.4,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"80\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"dropdown\":\"mobile\",\"full_width\":\"stretch\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(1844,275,'_elementor_conditions','a:1:{i:0;s:15:\"include/general\";}'),(1845,275,'_elementor_css','a:5:{s:4:\"time\";i:1568662766;s:5:\"fonts\";a:1:{i:0;s:10:\"Montserrat\";}s:5:\"icons\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(1848,276,'_elementor_version','2.6.8'),(1849,276,'_elementor_pro_version','2.6.5'),(1850,276,'_edit_lock','1568752077:1'),(1851,276,'_astra_content_layout_flag','disabled'),(1852,276,'site-post-title','disabled'),(1853,276,'ast-title-bar-display','disabled'),(1854,276,'ast-featured-img','disabled'),(1855,276,'site-content-layout','page-builder'),(1856,276,'site-sidebar-layout','no-sidebar'),(1857,277,'_elementor_template_type','post'),(1858,277,'_elementor_version','2.6.8'),(1859,277,'_elementor_pro_version','2.6.5'),(1860,277,'_wp_page_template','default'),(1861,277,'_elementor_data','[{\"id\":\"55396f27\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":50,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Theatrical_Display_V003C.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_range\":\"viewport\",\"motion_fx_motion_fx_scrolling\":\"yes\",\"layout\":\"full_width\",\"column_position\":\"top\"},\"elements\":[{\"id\":\"59493b21\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6a57d05\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"d8e4d5c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b4e5d70\",\"elType\":\"widget\",\"settings\":{\"title\":\"#WHAT\'S COOL\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"22443a9\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\"},\"elements\":[{\"id\":\"274b08d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"447f978\",\"elType\":\"widget\",\"settings\":{\"title\":\"INNOVATIONS FROM ONDISPLAY CREATIVE\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7df48509\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\"},\"elements\":[{\"id\":\"1147078d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"23bbc68\",\"elType\":\"widget\",\"settings\":{\"title\":\"LIVING STANDEES HAUNTING THEATERS\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b40d155\",\"elType\":\"widget\",\"settings\":{\"title\":\"ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"700\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86cff8b\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"225341d\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS \\u2013 THE LAST KEY\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a680ae8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"be59fa3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e36fe5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"d4d2039\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2.jpg\",\"id\":88},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3c9b758\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"79e122a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2-1.jpg\",\"id\":87},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3dc9df5\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"start\":0},\"elements\":[],\"widgetType\":\"video\"},{\"id\":\"b61a90b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"8f63560\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"08c588a\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS CHAPTER 3\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0e612c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>OnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7e77f5a\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"gap\":\"wide\"},\"elements\":[{\"id\":\"7eb5a21\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.332},\"elements\":[{\"id\":\"ae25867\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/image-asset.jpeg\",\"id\":196},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"24c773b\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":58},\"elements\":[{\"id\":\"93ad602\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/130807026\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"236bdcf\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\"},\"elements\":[{\"id\":\"8a0b6da\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"e28765e\",\"elType\":\"widget\",\"settings\":{\"title\":\"VIRTUAL REALITY EXPERIENCE\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4d0f48c\",\"elType\":\"widget\",\"settings\":{\"title\":\"SOMETHING SOMETHING SOMETHING\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"700\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5a6ec50\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"93d4126\",\"elType\":\"widget\",\"settings\":{\"title\":\"SPIDER-MAN HOMECOMING DISPLAY\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bccfc67\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Submerse yourself in the world of your friendly neighborhood Spider-Man in this fun and thrilling VR Theatrical Display.\\u00a0\\u00a0Based on the all-new 2017 film, the Spider-Man Homecoming VR Experience is a first-person look through the eyes of Spidey himself.<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f786650\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"ec1b52b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":76},\"elements\":[{\"id\":\"74ca310\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Spidey_Home_V4_002.jpg\",\"id\":230},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"css_filters_css_filter\":\"custom\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"265cdc0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":24},\"elements\":[{\"id\":\"35c3d80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/IMG_3834.jpg\",\"id\":231},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"677c7e5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/IMG_3788.jpg\",\"id\":233}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"c22aabe\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"9a54f1a\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b747fda\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":700},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":900},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7eab781\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"43661634\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our company is a collective of amazing people striving to build delightful products.\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.4},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70cc6d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.<\\/p>\",\"align\":\"center\",\"text_color\":\"#686868\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"615dfb3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1000},\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"6414755f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3bb26eed\",\"elType\":\"widget\",\"settings\":{\"text\":\"Read More\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3},\"button_text_color\":\"#ffffff\",\"background_color\":\"rgba(0,0,0,0)\",\"hover_color\":\"#00ce1b\",\"button_hover_border_color\":\"#00ce1b\",\"hover_animation\":\"grow\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"123f6d1\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"25fcf2e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"64f593f\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"596f429\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(1862,277,'_elementor_edit_mode','builder'),(1863,277,'_elementor_elements_usage','a:9:{s:7:\"heading\";i:10;s:6:\"column\";i:15;s:7:\"section\";i:12;s:7:\"divider\";i:4;s:11:\"text-editor\";i:4;s:5:\"image\";i:6;s:5:\"video\";i:2;s:6:\"spacer\";i:2;s:6:\"button\";i:1;}'),(1864,277,'_elementor_css','a:5:{s:4:\"time\";i:1568593285;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:1:{i:0;s:0:\"\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(1889,281,'_wp_trash_meta_status','publish'),(1890,281,'_wp_trash_meta_time','1568724991'),(1866,278,'_elementor_edit_mode','builder'),(1867,278,'_elementor_template_type','post'),(1868,278,'_elementor_version','2.6.8'),(1869,278,'_elementor_pro_version','2.6.5'),(1870,278,'_wp_page_template','default'),(1871,278,'_elementor_data','[{\"id\":\"888c98d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"f5b4959\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"f6a6a84\",\"elType\":\"widget\",\"settings\":{\"menu\":\"main-menu\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d4f602a\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"7ed0616\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"5262190\",\"elType\":\"widget\",\"settings\":{\"menu\":\"main-menu\",\"align_items\":\"right\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false}],\"isInner\":false}]'),(1880,280,'_elementor_edit_mode','builder'),(1881,280,'_elementor_template_type','post'),(1882,280,'_elementor_version','2.6.8'),(1883,280,'_elementor_pro_version','2.6.5'),(1884,280,'_wp_page_template','default'),(1885,280,'_elementor_elements_usage','a:7:{s:7:\"heading\";i:2;s:6:\"column\";i:6;s:7:\"section\";i:6;s:13:\"image-gallery\";i:1;s:9:\"portfolio\";i:1;s:14:\"image-carousel\";i:1;s:8:\"nav-menu\";i:1;}'),(1886,280,'_elementor_data','[{\"id\":\"45415a5\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c3ce638\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"d7be109\",\"elType\":\"widget\",\"settings\":{\"title\":\"PROXIMA NOVA h1\",\"header_size\":\"h1\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a322dec\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"5ea33df\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"9a2ea24\",\"elType\":\"widget\",\"settings\":{\"title\":\"PROXIMA NOVA h2\",\"title_color\":\"#000000\",\"typography_font_size\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8fe1bee\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"0d0052b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"f098f2c\",\"elType\":\"widget\",\"settings\":{\"wp_gallery\":[{\"id\":39,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/1c.png\"},{\"id\":40,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/1b.png\"},{\"id\":41,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/8522.png\"},{\"id\":35,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/4.png\"},{\"id\":36,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/profile2.png\"},{\"id\":37,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/divider-1.png\"},{\"id\":29,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/BG24.png\"},{\"id\":30,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/johannes-waibel-4298.png\"},{\"id\":32,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/markos-mant-228858.png\"},{\"id\":31,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/lukas-neasi-65748.png\"},{\"id\":33,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/mattias-olsson-160612.png\"},{\"id\":34,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/tomas-kodydek-7492.png\"}]},\"elements\":[],\"widgetType\":\"image-gallery\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"109d6af\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"3946b3b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"b717c62\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"portfolio\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"15f4c63\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"58a0d9e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"d802cda\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":39,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/1c.png\"},{\"id\":40,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/1b.png\"},{\"id\":33,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/mattias-olsson-160612.png\"},{\"id\":31,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/lukas-neasi-65748.png\"},{\"id\":32,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/markos-mant-228858.png\"},{\"id\":36,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/profile2.png\"}],\"caption_type\":\"title\"},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"72d2297\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"8ff4c5f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"dd29db4\",\"elType\":\"widget\",\"settings\":{\"menu\":\"main-menu\",\"align_items\":\"right\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false}],\"isInner\":false}]'),(1887,73,'_elementor_css','a:5:{s:4:\"time\";i:1568723905;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(1891,282,'_edit_lock','1568725304:1'),(1892,282,'_wp_trash_meta_status','publish'),(1893,282,'_wp_trash_meta_time','1568725317'),(1894,285,'_wp_trash_meta_status','publish'),(1895,285,'_wp_trash_meta_time','1568725322'),(1896,287,'_edit_lock','1568725904:1'),(1897,287,'_wp_trash_meta_status','publish'),(1898,287,'_wp_trash_meta_time','1568725936'),(1899,289,'_edit_lock','1568726324:1'),(1900,289,'_wp_trash_meta_status','publish'),(1901,289,'_wp_trash_meta_time','1568726333'),(1902,291,'_wp_trash_meta_status','publish'),(1903,291,'_wp_trash_meta_time','1568726548'),(1904,293,'_edit_lock','1568727449:1'),(1905,293,'_wp_trash_meta_status','publish'),(1906,293,'_wp_trash_meta_time','1568727482'),(1907,295,'_wp_trash_meta_status','publish'),(1908,295,'_wp_trash_meta_time','1568727506'),(1910,298,'_elementor_edit_mode','builder'),(1911,298,'_elementor_template_type','header'),(1912,298,'_elementor_version','2.6.8'),(1913,298,'_elementor_pro_version','2.6.5'),(1914,298,'_edit_lock','1568752026:1'),(1915,298,'_astra_content_layout_flag','disabled'),(1916,298,'site-post-title','disabled'),(1917,298,'ast-title-bar-display','disabled'),(1918,298,'ast-featured-img','disabled'),(1919,298,'site-content-layout','page-builder'),(1920,298,'site-sidebar-layout','no-sidebar'),(1922,298,'_wp_trash_meta_status','draft'),(1923,298,'_wp_trash_meta_time','1568752234'),(1924,298,'_wp_desired_post_slug',''),(1925,299,'_elementor_edit_mode','builder'),(1926,299,'_elementor_template_type','header'),(1927,299,'_elementor_version','2.6.8'),(1928,299,'_elementor_pro_version','2.6.5'),(1929,276,'_wp_trash_meta_status','draft'),(1930,276,'_wp_trash_meta_time','1568752234'),(1931,276,'_wp_desired_post_slug',''),(1932,300,'_elementor_edit_mode','builder'),(1933,300,'_elementor_template_type','header'),(1934,300,'_elementor_version','2.6.8'),(1935,300,'_elementor_pro_version','2.6.5'),(1936,270,'_wp_trash_meta_status','draft'),(1937,270,'_wp_trash_meta_time','1568752234'),(1938,270,'_wp_desired_post_slug',''),(1939,301,'_elementor_edit_mode','builder'),(1940,301,'_elementor_template_type','header'),(1941,301,'_elementor_version','2.6.8'),(1942,301,'_elementor_pro_version','2.6.5'),(1943,302,'_elementor_edit_mode','builder'),(1944,302,'_elementor_template_type','header'),(1945,302,'_elementor_version','2.6.8'),(1946,302,'_elementor_pro_version','2.6.5'),(1947,302,'_edit_lock','1569100854:1'),(1948,302,'_astra_content_layout_flag','disabled'),(1949,302,'site-post-title','disabled'),(1950,302,'ast-title-bar-display','disabled'),(1951,302,'ast-featured-img','disabled'),(1952,302,'site-content-layout','page-builder'),(1953,302,'site-sidebar-layout','no-sidebar'),(1954,303,'_elementor_edit_mode','builder'),(1955,303,'_elementor_template_type','header'),(1956,303,'_elementor_version','2.6.8'),(1957,303,'_elementor_pro_version','2.6.5'),(1958,302,'_wp_page_template','default'),(1959,302,'_elementor_elements_usage','a:4:{s:5:\"image\";i:1;s:6:\"column\";i:2;s:8:\"nav-menu\";i:1;s:7:\"section\";i:1;}'),(1960,302,'_elementor_data','[{\"id\":\"1a53ad6a\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1200\",\"sizes\":[]},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"z_index\":\"10\",\"_title\":\"Header\",\"structure\":\"22\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"background_color_b\":\"#00f2ff\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":\"130\",\"sizes\":[]},\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"10\",\"blur\":\"20\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0.1)\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-90\",\"left\":0,\"isLinked\":\"\"},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"layout\":\"full_width\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[{\"id\":\"741ea2d1\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"content_position\":\"center\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"_inline_size\":64.332,\"_inline_size_tablet\":65,\"_inline_size_mobile\":85,\"_title\":\"Logo Column\",\"align\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1a4bfff8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":18,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/a.png\"},\"align\":\"left\",\"align_mobile\":\"left\",\"width\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":275,\"sizes\":[]},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/edu.elementor.com\\/ekit\\/digital-agency-home\",\"is_external\":\"\",\"nofollow\":\"\"},\"__dynamic__\":{\"link\":\"[elementor-tag id=\\\"52081e4\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"60\"},\"image_size\":\"full\",\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"space_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":\"\"},{\"id\":\"385d0e0a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"content_position\":\"center\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_inline_size\":35,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":35,\"_inline_size_mobile\":15,\"_title\":\"Menu Column\"},\"elements\":[{\"id\":\"2bc4e941\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"right\",\"animation_line\":\"drop-out\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"menu_typography_font_weight\":\"300\",\"color_menu_item\":\"#16161d\",\"color_menu_item_hover\":\"#ee7624\",\"pointer_color_menu_item_hover\":\"#ffffff\",\"pointer_color_menu_item_active\":\"#ffffff\",\"pointer_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":\"35\",\"sizes\":[]},\"menu_space_between\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"text_align\":\"center\",\"toggle_align\":\"right\",\"color_dropdown_item\":\"#3d4459\",\"background_color_dropdown_item\":\"#ffffff\",\"color_dropdown_item_hover\":\"#4632da\",\"background_color_dropdown_item_hover\":\"#ffffff\",\"color_dropdown_item_active\":\"#4632da\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_family\":\"Montserrat\",\"dropdown_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"dropdown_box_shadow_box_shadow_type\":\"yes\",\"dropdown_box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"2\",\"blur\":\"15\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0.1)\"},\"padding_vertical_dropdown_item_tablet\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"dropdown_divider_border\":\"solid\",\"dropdown_divider_color\":\"#efefef\",\"dropdown_divider_width\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"dropdown_top_distance_tablet\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"dropdown_top_distance_mobile\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"toggle_color\":\"#16161d\",\"toggle_background_color\":\"rgba(255,255,255,0)\",\"toggle_color_hover\":\"#ee7624\",\"toggle_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_horizontal_dropdown_item\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"padding_vertical_dropdown_item\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"dropdown_top_distance\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"indicator\":\"chevron\",\"menu\":\"main-menu\",\"pointer\":\"text\",\"animation_text\":\"none\",\"full_width\":\"stretch\",\"color_menu_item_active\":\"#ee7624\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(1961,304,'_elementor_edit_mode','builder'),(1962,304,'_elementor_template_type','header'),(1963,304,'_elementor_version','2.6.8'),(1964,304,'_elementor_pro_version','2.6.5'),(1965,304,'_wp_page_template','default'),(1966,304,'_elementor_elements_usage','a:4:{s:5:\"image\";i:1;s:6:\"column\";i:2;s:8:\"nav-menu\";i:1;s:7:\"section\";i:1;}'),(1967,304,'_elementor_data','[{\"id\":\"1a53ad6a\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1200\",\"sizes\":[]},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"90\",\"sizes\":[]},\"z_index\":\"10\",\"_title\":\"Header\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#0700dd\",\"background_color_b\":\"#00f2ff\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":\"130\",\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"10\",\"blur\":\"20\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0.1)\"},\"sticky\":\"top\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-90\",\"left\":\"0\",\"isLinked\":\"\"},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\"},\"elements\":[{\"id\":\"741ea2d1\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"content_position\":\"center\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"_inline_size\":null,\"_inline_size_tablet\":\"50\",\"_inline_size_mobile\":\"50\",\"_title\":\"Logo Column\"},\"elements\":[{\"id\":\"1a4bfff8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"253\",\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Logo-W.png\"},\"image_size\":\"full\",\"align\":\"left\",\"align_mobile\":\"left\",\"width\":{\"unit\":\"px\",\"size\":\"120\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/edu.elementor.com\\/ekit\\/digital-agency-home\",\"is_external\":\"\",\"nofollow\":\"\"},\"__dynamic__\":{\"link\":\"[elementor-tag id=\\\"52081e4\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":\"\"},{\"id\":\"385d0e0a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"content_position\":\"center\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":50,\"_inline_size_mobile\":\"50\",\"_title\":\"Menu Column\"},\"elements\":[{\"id\":\"2bc4e941\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"right\",\"animation_line\":\"drop-out\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Varela Round\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"menu_typography_font_weight\":\"300\",\"color_menu_item\":\"#ffffff\",\"color_menu_item_hover\":\"#ffffff\",\"pointer_color_menu_item_hover\":\"#ffffff\",\"color_menu_item_active\":\"#ffffff\",\"pointer_color_menu_item_active\":\"#ffffff\",\"pointer_width\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":\"35\",\"sizes\":[]},\"menu_space_between\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"full_width\":\"stretch\",\"text_align\":\"center\",\"toggle_align\":\"right\",\"color_dropdown_item\":\"#3d4459\",\"background_color_dropdown_item\":\"#ffffff\",\"color_dropdown_item_hover\":\"#4632da\",\"background_color_dropdown_item_hover\":\"#ffffff\",\"color_dropdown_item_active\":\"#4632da\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_family\":\"Montserrat\",\"dropdown_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"dropdown_box_shadow_box_shadow_type\":\"yes\",\"dropdown_box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"2\",\"blur\":\"15\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0.1)\"},\"padding_vertical_dropdown_item_tablet\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"dropdown_divider_border\":\"solid\",\"dropdown_divider_color\":\"#efefef\",\"dropdown_divider_width\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"dropdown_top_distance_tablet\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"dropdown_top_distance_mobile\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"toggle_color\":\"#ffffff\",\"toggle_background_color\":\"rgba(255,255,255,0)\",\"toggle_color_hover\":\"#ffffff\",\"toggle_size\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"toggle_border_width\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_horizontal_dropdown_item\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"padding_vertical_dropdown_item\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"dropdown_top_distance\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"indicator\":\"chevron\",\"menu\":\"main-menu\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(1968,302,'_elementor_conditions','a:1:{i:0;s:15:\"include/general\";}'),(1969,305,'_elementor_edit_mode','builder'),(1970,305,'_elementor_template_type','header'),(1971,305,'_elementor_version','2.6.8'),(1972,305,'_elementor_pro_version','2.6.5'),(1973,305,'_wp_page_template','default'),(1974,305,'_elementor_elements_usage','a:4:{s:5:\"image\";i:1;s:6:\"column\";i:2;s:8:\"nav-menu\";i:1;s:7:\"section\";i:1;}'),(1975,305,'_elementor_data','[{\"id\":\"1a53ad6a\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1200\",\"sizes\":[]},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"z_index\":\"10\",\"_title\":\"Header\",\"structure\":\"22\",\"background_background\":\"classic\",\"background_color\":\"#bababa\",\"background_color_b\":\"#00f2ff\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":\"130\",\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"10\",\"blur\":\"20\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0.1)\"},\"sticky\":\"top\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-90\",\"left\":\"0\",\"isLinked\":\"\"},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\"},\"elements\":[{\"id\":\"741ea2d1\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"content_position\":\"center\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"_inline_size\":null,\"_inline_size_tablet\":\"50\",\"_inline_size_mobile\":\"50\",\"_title\":\"Logo Column\"},\"elements\":[{\"id\":\"1a4bfff8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"253\",\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Logo-W.png\"},\"image_size\":\"full\",\"align\":\"left\",\"align_mobile\":\"left\",\"width\":{\"unit\":\"px\",\"size\":\"120\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/edu.elementor.com\\/ekit\\/digital-agency-home\",\"is_external\":\"\",\"nofollow\":\"\"},\"__dynamic__\":{\"link\":\"[elementor-tag id=\\\"52081e4\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":\"\"},{\"id\":\"385d0e0a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"content_position\":\"center\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":50,\"_inline_size_mobile\":\"50\",\"_title\":\"Menu Column\"},\"elements\":[{\"id\":\"2bc4e941\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"right\",\"animation_line\":\"drop-out\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Varela Round\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"menu_typography_font_weight\":\"300\",\"color_menu_item\":\"#ffffff\",\"color_menu_item_hover\":\"#ffffff\",\"pointer_color_menu_item_hover\":\"#ffffff\",\"color_menu_item_active\":\"#ffffff\",\"pointer_color_menu_item_active\":\"#ffffff\",\"pointer_width\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":\"35\",\"sizes\":[]},\"menu_space_between\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"full_width\":\"stretch\",\"text_align\":\"center\",\"toggle_align\":\"right\",\"color_dropdown_item\":\"#3d4459\",\"background_color_dropdown_item\":\"#ffffff\",\"color_dropdown_item_hover\":\"#4632da\",\"background_color_dropdown_item_hover\":\"#ffffff\",\"color_dropdown_item_active\":\"#4632da\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_family\":\"Montserrat\",\"dropdown_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"dropdown_box_shadow_box_shadow_type\":\"yes\",\"dropdown_box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"2\",\"blur\":\"15\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0.1)\"},\"padding_vertical_dropdown_item_tablet\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"dropdown_divider_border\":\"solid\",\"dropdown_divider_color\":\"#efefef\",\"dropdown_divider_width\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"dropdown_top_distance_tablet\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"dropdown_top_distance_mobile\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"toggle_color\":\"#ffffff\",\"toggle_background_color\":\"rgba(255,255,255,0)\",\"toggle_color_hover\":\"#ffffff\",\"toggle_size\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"toggle_border_width\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_horizontal_dropdown_item\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"padding_vertical_dropdown_item\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"dropdown_top_distance\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"indicator\":\"chevron\",\"menu\":\"main-menu\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(1976,305,'_elementor_conditions','a:1:{i:0;s:15:\"include/general\";}'),(1977,306,'_elementor_edit_mode','builder'),(1978,306,'_elementor_template_type','header'),(1979,306,'_elementor_version','2.6.8'),(1980,306,'_elementor_pro_version','2.6.5'),(1981,306,'_wp_page_template','default'),(1982,306,'_elementor_elements_usage','a:4:{s:5:\"image\";i:1;s:6:\"column\";i:2;s:8:\"nav-menu\";i:1;s:7:\"section\";i:1;}'),(1983,306,'_elementor_data','[{\"id\":\"1a53ad6a\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1200\",\"sizes\":[]},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"z_index\":\"10\",\"_title\":\"Header\",\"structure\":\"22\",\"background_background\":\"classic\",\"background_color\":\"#bababa\",\"background_color_b\":\"#00f2ff\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":\"130\",\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"10\",\"blur\":\"20\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0.1)\"},\"sticky\":\"top\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-90\",\"left\":\"0\",\"isLinked\":\"\"},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\"},\"elements\":[{\"id\":\"741ea2d1\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"content_position\":\"center\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"_inline_size\":null,\"_inline_size_tablet\":\"50\",\"_inline_size_mobile\":\"50\",\"_title\":\"Logo Column\"},\"elements\":[{\"id\":\"1a4bfff8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"253\",\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Logo-W.png\"},\"image_size\":\"full\",\"align\":\"left\",\"align_mobile\":\"left\",\"width\":{\"unit\":\"px\",\"size\":\"120\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/edu.elementor.com\\/ekit\\/digital-agency-home\",\"is_external\":\"\",\"nofollow\":\"\"},\"__dynamic__\":{\"link\":\"[elementor-tag id=\\\"52081e4\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":\"\"},{\"id\":\"385d0e0a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"content_position\":\"center\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":50,\"_inline_size_mobile\":\"50\",\"_title\":\"Menu Column\"},\"elements\":[{\"id\":\"2bc4e941\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"right\",\"animation_line\":\"drop-out\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Varela Round\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"menu_typography_font_weight\":\"300\",\"color_menu_item\":\"#16161d\",\"color_menu_item_hover\":\"#ffffff\",\"pointer_color_menu_item_hover\":\"#ffffff\",\"color_menu_item_active\":\"#ffffff\",\"pointer_color_menu_item_active\":\"#ffffff\",\"pointer_width\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":\"35\",\"sizes\":[]},\"menu_space_between\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"full_width\":\"stretch\",\"text_align\":\"center\",\"toggle_align\":\"right\",\"color_dropdown_item\":\"#3d4459\",\"background_color_dropdown_item\":\"#ffffff\",\"color_dropdown_item_hover\":\"#4632da\",\"background_color_dropdown_item_hover\":\"#ffffff\",\"color_dropdown_item_active\":\"#4632da\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_family\":\"Montserrat\",\"dropdown_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"dropdown_box_shadow_box_shadow_type\":\"yes\",\"dropdown_box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"2\",\"blur\":\"15\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0.1)\"},\"padding_vertical_dropdown_item_tablet\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"dropdown_divider_border\":\"solid\",\"dropdown_divider_color\":\"#efefef\",\"dropdown_divider_width\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"dropdown_top_distance_tablet\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"dropdown_top_distance_mobile\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"toggle_color\":\"#ffffff\",\"toggle_background_color\":\"rgba(255,255,255,0)\",\"toggle_color_hover\":\"#ffffff\",\"toggle_size\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"toggle_border_width\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_horizontal_dropdown_item\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"padding_vertical_dropdown_item\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"dropdown_top_distance\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"indicator\":\"chevron\",\"menu\":\"main-menu\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(1984,306,'_elementor_conditions','a:1:{i:0;s:15:\"include/general\";}'),(1985,307,'_elementor_edit_mode','builder'),(1986,307,'_elementor_template_type','header'),(1987,307,'_elementor_version','2.6.8'),(1988,307,'_elementor_pro_version','2.6.5'),(1989,307,'_wp_page_template','default'),(1990,307,'_elementor_elements_usage','a:4:{s:5:\"image\";i:1;s:6:\"column\";i:2;s:8:\"nav-menu\";i:1;s:7:\"section\";i:1;}'),(1991,307,'_elementor_data','[{\"id\":\"1a53ad6a\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1200\",\"sizes\":[]},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"z_index\":\"10\",\"_title\":\"Header\",\"structure\":\"22\",\"background_background\":\"classic\",\"background_color\":\"#bababa\",\"background_color_b\":\"#00f2ff\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":\"130\",\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"10\",\"blur\":\"20\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0.1)\"},\"sticky\":\"top\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-90\",\"left\":\"0\",\"isLinked\":\"\"},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\"},\"elements\":[{\"id\":\"741ea2d1\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"content_position\":\"center\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"_inline_size\":49.332,\"_inline_size_tablet\":\"50\",\"_inline_size_mobile\":\"50\",\"_title\":\"Logo Column\"},\"elements\":[{\"id\":\"1a4bfff8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"253\",\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Logo-W.png\"},\"align\":\"left\",\"align_mobile\":\"left\",\"width\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/edu.elementor.com\\/ekit\\/digital-agency-home\",\"is_external\":\"\",\"nofollow\":\"\"},\"__dynamic__\":{\"link\":\"[elementor-tag id=\\\"52081e4\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"image_custom_dimension\":{\"width\":\"400\",\"height\":\"120\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":\"\"},{\"id\":\"385d0e0a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"content_position\":\"center\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_inline_size\":50,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":50,\"_inline_size_mobile\":\"50\",\"_title\":\"Menu Column\"},\"elements\":[{\"id\":\"2bc4e941\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"right\",\"animation_line\":\"drop-out\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Varela Round\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"menu_typography_font_weight\":\"300\",\"color_menu_item\":\"#16161d\",\"color_menu_item_hover\":\"#ffffff\",\"pointer_color_menu_item_hover\":\"#ffffff\",\"color_menu_item_active\":\"#ffffff\",\"pointer_color_menu_item_active\":\"#ffffff\",\"pointer_width\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":\"35\",\"sizes\":[]},\"menu_space_between\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"full_width\":\"stretch\",\"text_align\":\"center\",\"toggle_align\":\"right\",\"color_dropdown_item\":\"#3d4459\",\"background_color_dropdown_item\":\"#ffffff\",\"color_dropdown_item_hover\":\"#4632da\",\"background_color_dropdown_item_hover\":\"#ffffff\",\"color_dropdown_item_active\":\"#4632da\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_family\":\"Montserrat\",\"dropdown_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"dropdown_box_shadow_box_shadow_type\":\"yes\",\"dropdown_box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"2\",\"blur\":\"15\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0.1)\"},\"padding_vertical_dropdown_item_tablet\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"dropdown_divider_border\":\"solid\",\"dropdown_divider_color\":\"#efefef\",\"dropdown_divider_width\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"dropdown_top_distance_tablet\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"dropdown_top_distance_mobile\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"toggle_color\":\"#ffffff\",\"toggle_background_color\":\"rgba(255,255,255,0)\",\"toggle_color_hover\":\"#ffffff\",\"toggle_size\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"toggle_border_width\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_horizontal_dropdown_item\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"padding_vertical_dropdown_item\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"dropdown_top_distance\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"indicator\":\"chevron\",\"menu\":\"main-menu\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(1992,307,'_elementor_conditions','a:1:{i:0;s:15:\"include/general\";}'),(2010,309,'_elementor_conditions','a:1:{i:0;s:15:\"include/general\";}'),(2005,309,'_elementor_version','2.6.8'),(2006,309,'_elementor_pro_version','2.6.5'),(2007,309,'_wp_page_template','default'),(2008,309,'_elementor_elements_usage','a:4:{s:5:\"image\";i:1;s:6:\"column\";i:2;s:8:\"nav-menu\";i:1;s:7:\"section\";i:1;}'),(2009,309,'_elementor_data','[{\"id\":\"1a53ad6a\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1200\",\"sizes\":[]},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"z_index\":\"10\",\"_title\":\"Header\",\"structure\":\"22\",\"background_background\":\"classic\",\"background_color\":\"#bababa\",\"background_color_b\":\"#00f2ff\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":\"130\",\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"10\",\"blur\":\"20\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0.1)\"},\"sticky\":\"top\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-90\",\"left\":\"0\",\"isLinked\":\"\"},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\"},\"elements\":[{\"id\":\"741ea2d1\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"content_position\":\"center\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"_inline_size\":49.332,\"_inline_size_tablet\":\"50\",\"_inline_size_mobile\":\"50\",\"_title\":\"Logo Column\"},\"elements\":[{\"id\":\"1a4bfff8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":18,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/a.png\"},\"align\":\"left\",\"align_mobile\":\"left\",\"width\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/edu.elementor.com\\/ekit\\/digital-agency-home\",\"is_external\":\"\",\"nofollow\":\"\"},\"__dynamic__\":{\"link\":\"[elementor-tag id=\\\"52081e4\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"image_custom_dimension\":{\"width\":\"400\",\"height\":\"41\"},\"image_size\":\"full\",\"space\":{\"unit\":\"%\",\"size\":1,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":0.1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":\"\"},{\"id\":\"385d0e0a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"content_position\":\"center\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_inline_size\":50,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":50,\"_inline_size_mobile\":\"50\",\"_title\":\"Menu Column\"},\"elements\":[{\"id\":\"2bc4e941\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"right\",\"animation_line\":\"drop-out\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Varela Round\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"menu_typography_font_weight\":\"300\",\"color_menu_item\":\"#16161d\",\"color_menu_item_hover\":\"#ffffff\",\"pointer_color_menu_item_hover\":\"#ffffff\",\"color_menu_item_active\":\"#ffffff\",\"pointer_color_menu_item_active\":\"#ffffff\",\"pointer_width\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":\"35\",\"sizes\":[]},\"menu_space_between\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"full_width\":\"stretch\",\"text_align\":\"center\",\"toggle_align\":\"right\",\"color_dropdown_item\":\"#3d4459\",\"background_color_dropdown_item\":\"#ffffff\",\"color_dropdown_item_hover\":\"#4632da\",\"background_color_dropdown_item_hover\":\"#ffffff\",\"color_dropdown_item_active\":\"#4632da\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_family\":\"Montserrat\",\"dropdown_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"dropdown_box_shadow_box_shadow_type\":\"yes\",\"dropdown_box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"2\",\"blur\":\"15\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0.1)\"},\"padding_vertical_dropdown_item_tablet\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"dropdown_divider_border\":\"solid\",\"dropdown_divider_color\":\"#efefef\",\"dropdown_divider_width\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"dropdown_top_distance_tablet\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"dropdown_top_distance_mobile\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"toggle_color\":\"#ffffff\",\"toggle_background_color\":\"rgba(255,255,255,0)\",\"toggle_color_hover\":\"#ffffff\",\"toggle_size\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"toggle_border_width\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_horizontal_dropdown_item\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"padding_vertical_dropdown_item\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"dropdown_top_distance\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"indicator\":\"chevron\",\"menu\":\"main-menu\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(2004,309,'_elementor_template_type','header'),(2003,309,'_elementor_edit_mode','builder'),(2011,310,'_elementor_edit_mode','builder'),(2012,310,'_elementor_template_type','header'),(2013,310,'_elementor_version','2.6.8'),(2014,310,'_elementor_pro_version','2.6.5'),(2015,310,'_wp_page_template','default'),(2016,310,'_elementor_elements_usage','a:4:{s:5:\"image\";i:1;s:6:\"column\";i:2;s:8:\"nav-menu\";i:1;s:7:\"section\";i:1;}'),(2017,310,'_elementor_data','[{\"id\":\"1a53ad6a\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1200\",\"sizes\":[]},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"z_index\":\"10\",\"_title\":\"Header\",\"structure\":\"22\",\"background_background\":\"classic\",\"background_color\":\"#bababa\",\"background_color_b\":\"#00f2ff\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":\"130\",\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"10\",\"blur\":\"20\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0.1)\"},\"sticky\":\"top\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-90\",\"left\":\"0\",\"isLinked\":\"\"},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\"},\"elements\":[{\"id\":\"741ea2d1\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"content_position\":\"center\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"_inline_size\":49.332,\"_inline_size_tablet\":\"50\",\"_inline_size_mobile\":\"50\",\"_title\":\"Logo Column\"},\"elements\":[{\"id\":\"1a4bfff8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":18,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/a.png\"},\"align\":\"left\",\"align_mobile\":\"left\",\"width\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/edu.elementor.com\\/ekit\\/digital-agency-home\",\"is_external\":\"\",\"nofollow\":\"\"},\"__dynamic__\":{\"link\":\"[elementor-tag id=\\\"52081e4\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"image_custom_dimension\":{\"width\":\"400\",\"height\":\"41\"},\"image_size\":\"medium\",\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":0.1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":\"\"},{\"id\":\"385d0e0a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"content_position\":\"center\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_inline_size\":50,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":50,\"_inline_size_mobile\":\"50\",\"_title\":\"Menu Column\"},\"elements\":[{\"id\":\"2bc4e941\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"right\",\"animation_line\":\"drop-out\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Varela Round\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"menu_typography_font_weight\":\"300\",\"color_menu_item\":\"#16161d\",\"color_menu_item_hover\":\"#ffffff\",\"pointer_color_menu_item_hover\":\"#ffffff\",\"color_menu_item_active\":\"#ffffff\",\"pointer_color_menu_item_active\":\"#ffffff\",\"pointer_width\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":\"35\",\"sizes\":[]},\"menu_space_between\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"full_width\":\"stretch\",\"text_align\":\"center\",\"toggle_align\":\"right\",\"color_dropdown_item\":\"#3d4459\",\"background_color_dropdown_item\":\"#ffffff\",\"color_dropdown_item_hover\":\"#4632da\",\"background_color_dropdown_item_hover\":\"#ffffff\",\"color_dropdown_item_active\":\"#4632da\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_family\":\"Montserrat\",\"dropdown_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"dropdown_box_shadow_box_shadow_type\":\"yes\",\"dropdown_box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"2\",\"blur\":\"15\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0.1)\"},\"padding_vertical_dropdown_item_tablet\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"dropdown_divider_border\":\"solid\",\"dropdown_divider_color\":\"#efefef\",\"dropdown_divider_width\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"dropdown_top_distance_tablet\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"dropdown_top_distance_mobile\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"toggle_color\":\"#ffffff\",\"toggle_background_color\":\"rgba(255,255,255,0)\",\"toggle_color_hover\":\"#ffffff\",\"toggle_size\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"toggle_border_width\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_horizontal_dropdown_item\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"padding_vertical_dropdown_item\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"dropdown_top_distance\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"indicator\":\"chevron\",\"menu\":\"main-menu\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(2018,310,'_elementor_conditions','a:1:{i:0;s:15:\"include/general\";}'),(2037,313,'_elementor_edit_mode','builder'),(2019,311,'_elementor_edit_mode','builder'),(2020,311,'_elementor_template_type','header'),(2021,311,'_elementor_version','2.6.8'),(2022,311,'_elementor_pro_version','2.6.5'),(2023,311,'_wp_page_template','default'),(2024,311,'_elementor_elements_usage','a:4:{s:5:\"image\";i:1;s:6:\"column\";i:2;s:8:\"nav-menu\";i:1;s:7:\"section\";i:1;}'),(2025,311,'_elementor_data','[{\"id\":\"1a53ad6a\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1200\",\"sizes\":[]},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"z_index\":\"10\",\"_title\":\"Header\",\"structure\":\"22\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"background_color_b\":\"#00f2ff\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":\"130\",\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"10\",\"blur\":\"20\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0.1)\"},\"sticky\":\"top\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-90\",\"left\":\"0\",\"isLinked\":\"\"},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\"},\"elements\":[{\"id\":\"741ea2d1\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"content_position\":\"center\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"_inline_size\":49.332,\"_inline_size_tablet\":\"50\",\"_inline_size_mobile\":\"50\",\"_title\":\"Logo Column\"},\"elements\":[{\"id\":\"1a4bfff8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":18,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/a.png\"},\"align\":\"left\",\"align_mobile\":\"left\",\"width\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/edu.elementor.com\\/ekit\\/digital-agency-home\",\"is_external\":\"\",\"nofollow\":\"\"},\"__dynamic__\":{\"link\":\"[elementor-tag id=\\\"52081e4\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"image_custom_dimension\":{\"width\":\"400\",\"height\":\"41\"},\"image_size\":\"medium\",\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":\"\"},{\"id\":\"385d0e0a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"content_position\":\"center\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_inline_size\":50,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":50,\"_inline_size_mobile\":\"50\",\"_title\":\"Menu Column\"},\"elements\":[{\"id\":\"2bc4e941\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"right\",\"animation_line\":\"drop-out\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Varela Round\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"menu_typography_font_weight\":\"300\",\"color_menu_item\":\"#16161d\",\"color_menu_item_hover\":\"#ffffff\",\"pointer_color_menu_item_hover\":\"#ffffff\",\"color_menu_item_active\":\"#ffffff\",\"pointer_color_menu_item_active\":\"#ffffff\",\"pointer_width\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":\"35\",\"sizes\":[]},\"menu_space_between\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"full_width\":\"stretch\",\"text_align\":\"center\",\"toggle_align\":\"right\",\"color_dropdown_item\":\"#3d4459\",\"background_color_dropdown_item\":\"#ffffff\",\"color_dropdown_item_hover\":\"#4632da\",\"background_color_dropdown_item_hover\":\"#ffffff\",\"color_dropdown_item_active\":\"#4632da\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_family\":\"Montserrat\",\"dropdown_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"dropdown_box_shadow_box_shadow_type\":\"yes\",\"dropdown_box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"2\",\"blur\":\"15\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0.1)\"},\"padding_vertical_dropdown_item_tablet\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"dropdown_divider_border\":\"solid\",\"dropdown_divider_color\":\"#efefef\",\"dropdown_divider_width\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"dropdown_top_distance_tablet\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"dropdown_top_distance_mobile\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"toggle_color\":\"#ffffff\",\"toggle_background_color\":\"rgba(255,255,255,0)\",\"toggle_color_hover\":\"#ffffff\",\"toggle_size\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"toggle_border_width\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_horizontal_dropdown_item\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"padding_vertical_dropdown_item\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"dropdown_top_distance\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"indicator\":\"chevron\",\"menu\":\"main-menu\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(2026,311,'_elementor_conditions','a:1:{i:0;s:15:\"include/general\";}'),(2044,313,'_elementor_conditions','a:1:{i:0;s:15:\"include/general\";}'),(2041,313,'_wp_page_template','default'),(2042,313,'_elementor_elements_usage','a:4:{s:5:\"image\";i:1;s:6:\"column\";i:2;s:8:\"nav-menu\";i:1;s:7:\"section\";i:1;}'),(2043,313,'_elementor_data','[{\"id\":\"1a53ad6a\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1200\",\"sizes\":[]},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"z_index\":\"10\",\"_title\":\"Header\",\"structure\":\"22\",\"background_background\":\"classic\",\"background_color\":\"#61ce70\",\"background_color_b\":\"#00f2ff\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":\"130\",\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"10\",\"blur\":\"20\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0.1)\"},\"sticky\":\"top\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-90\",\"left\":\"0\",\"isLinked\":\"\"},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\"},\"elements\":[{\"id\":\"741ea2d1\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"content_position\":\"center\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"_inline_size\":49.332,\"_inline_size_tablet\":\"50\",\"_inline_size_mobile\":\"50\",\"_title\":\"Logo Column\"},\"elements\":[{\"id\":\"1a4bfff8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":18,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/a.png\"},\"align\":\"left\",\"align_mobile\":\"left\",\"width\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/edu.elementor.com\\/ekit\\/digital-agency-home\",\"is_external\":\"\",\"nofollow\":\"\"},\"__dynamic__\":{\"link\":\"[elementor-tag id=\\\"52081e4\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"image_custom_dimension\":{\"width\":\"400\",\"height\":\"41\"},\"image_size\":\"medium\",\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":\"\"},{\"id\":\"385d0e0a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"content_position\":\"center\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_inline_size\":50,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":50,\"_inline_size_mobile\":\"50\",\"_title\":\"Menu Column\"},\"elements\":[{\"id\":\"2bc4e941\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"right\",\"animation_line\":\"drop-out\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"menu_typography_font_weight\":\"300\",\"color_menu_item\":\"#16161d\",\"color_menu_item_hover\":\"#ffffff\",\"pointer_color_menu_item_hover\":\"#ffffff\",\"color_menu_item_active\":\"#ffffff\",\"pointer_color_menu_item_active\":\"#ffffff\",\"pointer_width\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":\"35\",\"sizes\":[]},\"menu_space_between\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"full_width\":\"stretch\",\"text_align\":\"center\",\"toggle_align\":\"right\",\"color_dropdown_item\":\"#3d4459\",\"background_color_dropdown_item\":\"#ffffff\",\"color_dropdown_item_hover\":\"#4632da\",\"background_color_dropdown_item_hover\":\"#ffffff\",\"color_dropdown_item_active\":\"#4632da\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_family\":\"Montserrat\",\"dropdown_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"dropdown_box_shadow_box_shadow_type\":\"yes\",\"dropdown_box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"2\",\"blur\":\"15\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0.1)\"},\"padding_vertical_dropdown_item_tablet\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"dropdown_divider_border\":\"solid\",\"dropdown_divider_color\":\"#efefef\",\"dropdown_divider_width\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"dropdown_top_distance_tablet\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"dropdown_top_distance_mobile\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"toggle_color\":\"#ffffff\",\"toggle_background_color\":\"rgba(255,255,255,0)\",\"toggle_color_hover\":\"#ffffff\",\"toggle_size\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"toggle_border_width\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_horizontal_dropdown_item\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"padding_vertical_dropdown_item\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"dropdown_top_distance\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"indicator\":\"chevron\",\"menu\":\"main-menu\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(2040,313,'_elementor_pro_version','2.6.5'),(2038,313,'_elementor_template_type','header'),(2039,313,'_elementor_version','2.6.8'),(2055,315,'_elementor_version','2.6.8'),(2056,315,'_elementor_pro_version','2.6.5'),(2057,315,'_wp_page_template','default'),(2058,315,'_elementor_elements_usage','a:4:{s:5:\"image\";i:1;s:6:\"column\";i:2;s:8:\"nav-menu\";i:1;s:7:\"section\";i:1;}'),(2059,315,'_elementor_data','[{\"id\":\"1a53ad6a\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1200\",\"sizes\":[]},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"z_index\":\"10\",\"_title\":\"Header\",\"structure\":\"22\",\"background_background\":\"classic\",\"background_color\":\"#61ce70\",\"background_color_b\":\"#00f2ff\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":\"130\",\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"10\",\"blur\":\"20\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0.1)\"},\"sticky\":\"top\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-90\",\"left\":\"0\",\"isLinked\":\"\"},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\"},\"elements\":[{\"id\":\"741ea2d1\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"content_position\":\"center\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"_inline_size\":49.332,\"_inline_size_tablet\":\"50\",\"_inline_size_mobile\":\"50\",\"_title\":\"Logo Column\"},\"elements\":[{\"id\":\"1a4bfff8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":18,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/a.png\"},\"align\":\"left\",\"align_mobile\":\"left\",\"width\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/edu.elementor.com\\/ekit\\/digital-agency-home\",\"is_external\":\"\",\"nofollow\":\"\"},\"__dynamic__\":{\"link\":\"[elementor-tag id=\\\"52081e4\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"image_custom_dimension\":{\"width\":\"400\",\"height\":\"41\"},\"image_size\":\"medium\",\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":\"\"},{\"id\":\"385d0e0a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"content_position\":\"center\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_inline_size\":50,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":50,\"_inline_size_mobile\":\"50\",\"_title\":\"Menu Column\"},\"elements\":[{\"id\":\"2bc4e941\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"right\",\"animation_line\":\"drop-out\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"menu_typography_font_weight\":\"300\",\"color_menu_item\":\"#16161d\",\"color_menu_item_hover\":\"#ffffff\",\"pointer_color_menu_item_hover\":\"#ffffff\",\"color_menu_item_active\":\"#ffffff\",\"pointer_color_menu_item_active\":\"#ffffff\",\"pointer_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":\"35\",\"sizes\":[]},\"menu_space_between\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"text_align\":\"center\",\"toggle_align\":\"right\",\"color_dropdown_item\":\"#3d4459\",\"background_color_dropdown_item\":\"#ffffff\",\"color_dropdown_item_hover\":\"#4632da\",\"background_color_dropdown_item_hover\":\"#ffffff\",\"color_dropdown_item_active\":\"#4632da\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_family\":\"Montserrat\",\"dropdown_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"dropdown_box_shadow_box_shadow_type\":\"yes\",\"dropdown_box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"2\",\"blur\":\"15\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0.1)\"},\"padding_vertical_dropdown_item_tablet\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"dropdown_divider_border\":\"solid\",\"dropdown_divider_color\":\"#efefef\",\"dropdown_divider_width\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"dropdown_top_distance_tablet\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"dropdown_top_distance_mobile\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"toggle_color\":\"#ffffff\",\"toggle_background_color\":\"rgba(255,255,255,0)\",\"toggle_color_hover\":\"#ffffff\",\"toggle_size\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"toggle_border_width\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_horizontal_dropdown_item\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"padding_vertical_dropdown_item\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"dropdown_top_distance\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"indicator\":\"chevron\",\"menu\":\"main-menu\",\"pointer\":\"text\",\"animation_text\":\"none\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(2053,315,'_elementor_edit_mode','builder'),(2054,315,'_elementor_template_type','header'),(2060,315,'_elementor_conditions','a:1:{i:0;s:15:\"include/general\";}'),(2091,333,'_elementor_edit_mode','builder'),(2092,333,'_elementor_template_type','header'),(3596,549,'_wp_attached_file','2019/09/47Meters_02_cropped.jpg.jpg'),(2063,316,'_wp_trash_meta_status','publish'),(2064,316,'_wp_trash_meta_time','1568780643'),(2065,318,'_wp_trash_meta_status','publish'),(2066,318,'_wp_trash_meta_time','1568780662'),(2067,320,'_wp_trash_meta_status','publish'),(2068,320,'_wp_trash_meta_time','1568780694'),(2069,322,'_wp_trash_meta_status','publish'),(2070,322,'_wp_trash_meta_time','1568780748'),(2071,324,'_edit_lock','1568781058:1'),(2072,324,'_wp_trash_meta_status','publish'),(2073,324,'_wp_trash_meta_time','1568781062'),(2074,326,'_edit_lock','1568781118:1'),(2075,326,'_wp_trash_meta_status','publish'),(2076,326,'_wp_trash_meta_time','1568781122'),(2077,328,'_wp_trash_meta_status','publish'),(2078,328,'_wp_trash_meta_time','1568781132'),(2079,330,'_edit_lock','1568781178:1'),(2080,330,'_wp_trash_meta_status','publish'),(2081,330,'_wp_trash_meta_time','1568781195'),(2082,332,'_elementor_edit_mode','builder'),(2083,332,'_elementor_template_type','header'),(2084,332,'_elementor_version','2.6.8'),(2085,332,'_elementor_pro_version','2.6.5'),(2086,332,'_wp_page_template','default'),(2087,332,'_elementor_elements_usage','a:4:{s:5:\"image\";i:1;s:6:\"column\";i:2;s:8:\"nav-menu\";i:1;s:7:\"section\";i:1;}'),(2088,332,'_elementor_data','[{\"id\":\"1a53ad6a\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1200\",\"sizes\":[]},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"z_index\":\"10\",\"_title\":\"Header\",\"structure\":\"22\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"background_color_b\":\"#00f2ff\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":\"130\",\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"10\",\"blur\":\"20\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0.1)\"},\"sticky\":\"top\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-90\",\"left\":\"0\",\"isLinked\":\"\"},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\"},\"elements\":[{\"id\":\"741ea2d1\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"content_position\":\"center\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"_inline_size\":49.332,\"_inline_size_tablet\":\"50\",\"_inline_size_mobile\":\"50\",\"_title\":\"Logo Column\"},\"elements\":[{\"id\":\"1a4bfff8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":18,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/a.png\"},\"align\":\"left\",\"align_mobile\":\"left\",\"width\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/edu.elementor.com\\/ekit\\/digital-agency-home\",\"is_external\":\"\",\"nofollow\":\"\"},\"__dynamic__\":{\"link\":\"[elementor-tag id=\\\"52081e4\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"image_custom_dimension\":{\"width\":\"400\",\"height\":\"41\"},\"image_size\":\"medium\",\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":\"\"},{\"id\":\"385d0e0a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"content_position\":\"center\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_inline_size\":50,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":50,\"_inline_size_mobile\":\"50\",\"_title\":\"Menu Column\"},\"elements\":[{\"id\":\"2bc4e941\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"right\",\"animation_line\":\"drop-out\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"menu_typography_font_weight\":\"300\",\"color_menu_item\":\"#16161d\",\"color_menu_item_hover\":\"#ffffff\",\"pointer_color_menu_item_hover\":\"#ffffff\",\"color_menu_item_active\":\"#ffffff\",\"pointer_color_menu_item_active\":\"#ffffff\",\"pointer_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":\"35\",\"sizes\":[]},\"menu_space_between\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"text_align\":\"center\",\"toggle_align\":\"right\",\"color_dropdown_item\":\"#3d4459\",\"background_color_dropdown_item\":\"#ffffff\",\"color_dropdown_item_hover\":\"#4632da\",\"background_color_dropdown_item_hover\":\"#ffffff\",\"color_dropdown_item_active\":\"#4632da\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_family\":\"Montserrat\",\"dropdown_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"dropdown_box_shadow_box_shadow_type\":\"yes\",\"dropdown_box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"2\",\"blur\":\"15\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0.1)\"},\"padding_vertical_dropdown_item_tablet\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"dropdown_divider_border\":\"solid\",\"dropdown_divider_color\":\"#efefef\",\"dropdown_divider_width\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"dropdown_top_distance_tablet\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"dropdown_top_distance_mobile\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"toggle_color\":\"#ffffff\",\"toggle_background_color\":\"rgba(255,255,255,0)\",\"toggle_color_hover\":\"#ffffff\",\"toggle_size\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"toggle_border_width\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_horizontal_dropdown_item\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"padding_vertical_dropdown_item\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"dropdown_top_distance\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"indicator\":\"chevron\",\"menu\":\"main-menu\",\"pointer\":\"text\",\"animation_text\":\"none\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(2089,332,'_elementor_conditions','a:1:{i:0;s:15:\"include/general\";}'),(2090,332,'_elementor_css','a:5:{s:4:\"time\";i:1568780627;s:5:\"fonts\";a:1:{i:0;s:10:\"Montserrat\";}s:5:\"icons\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(2093,333,'_elementor_version','2.6.8'),(2094,333,'_elementor_pro_version','2.6.5'),(2095,333,'_wp_page_template','default'),(2096,333,'_elementor_elements_usage','a:4:{s:5:\"image\";i:1;s:6:\"column\";i:2;s:8:\"nav-menu\";i:1;s:7:\"section\";i:1;}'),(2097,333,'_elementor_data','[{\"id\":\"1a53ad6a\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1200\",\"sizes\":[]},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"z_index\":\"10\",\"_title\":\"Header\",\"structure\":\"22\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"background_color_b\":\"#00f2ff\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":\"130\",\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"10\",\"blur\":\"20\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0.1)\"},\"sticky\":\"top\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-90\",\"left\":\"0\",\"isLinked\":\"\"},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\"},\"elements\":[{\"id\":\"741ea2d1\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"content_position\":\"center\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"_inline_size\":49.332,\"_inline_size_tablet\":\"50\",\"_inline_size_mobile\":\"50\",\"_title\":\"Logo Column\"},\"elements\":[{\"id\":\"1a4bfff8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":18,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/a.png\"},\"align\":\"left\",\"align_mobile\":\"left\",\"width\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/edu.elementor.com\\/ekit\\/digital-agency-home\",\"is_external\":\"\",\"nofollow\":\"\"},\"__dynamic__\":{\"link\":\"[elementor-tag id=\\\"52081e4\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"image_custom_dimension\":{\"width\":\"400\",\"height\":\"41\"},\"image_size\":\"medium\",\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":\"\"},{\"id\":\"385d0e0a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"content_position\":\"center\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_inline_size\":50,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":50,\"_inline_size_mobile\":\"50\",\"_title\":\"Menu Column\"},\"elements\":[{\"id\":\"2bc4e941\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"right\",\"animation_line\":\"drop-out\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"menu_typography_font_weight\":\"300\",\"color_menu_item\":\"#16161d\",\"color_menu_item_hover\":\"#ffffff\",\"pointer_color_menu_item_hover\":\"#ffffff\",\"color_menu_item_active\":\"#ffffff\",\"pointer_color_menu_item_active\":\"#ffffff\",\"pointer_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":\"35\",\"sizes\":[]},\"menu_space_between\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"text_align\":\"center\",\"toggle_align\":\"right\",\"color_dropdown_item\":\"#3d4459\",\"background_color_dropdown_item\":\"#ffffff\",\"color_dropdown_item_hover\":\"#4632da\",\"background_color_dropdown_item_hover\":\"#ffffff\",\"color_dropdown_item_active\":\"#4632da\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_family\":\"Montserrat\",\"dropdown_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"dropdown_box_shadow_box_shadow_type\":\"yes\",\"dropdown_box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"2\",\"blur\":\"15\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0.1)\"},\"padding_vertical_dropdown_item_tablet\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"dropdown_divider_border\":\"solid\",\"dropdown_divider_color\":\"#efefef\",\"dropdown_divider_width\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"dropdown_top_distance_tablet\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"dropdown_top_distance_mobile\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"toggle_color\":\"#16161d\",\"toggle_background_color\":\"rgba(255,255,255,0)\",\"toggle_color_hover\":\"#ffffff\",\"toggle_size\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"toggle_border_width\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_horizontal_dropdown_item\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"padding_vertical_dropdown_item\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"dropdown_top_distance\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"indicator\":\"chevron\",\"menu\":\"main-menu\",\"pointer\":\"text\",\"animation_text\":\"none\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(2098,333,'_elementor_conditions','a:1:{i:0;s:15:\"include/general\";}'),(2122,338,'_elementor_edit_mode','builder'),(2123,338,'_elementor_template_type','header'),(2100,334,'_wp_trash_meta_status','publish'),(2101,334,'_wp_trash_meta_time','1568781533'),(2102,302,'_edit_last','1'),(2103,336,'_elementor_edit_mode','builder'),(2104,336,'_elementor_template_type','header'),(2105,336,'_elementor_version','2.6.8'),(2106,336,'_elementor_pro_version','2.6.5'),(2107,336,'_wp_page_template','default'),(2108,336,'_elementor_elements_usage','a:4:{s:5:\"image\";i:1;s:6:\"column\";i:2;s:8:\"nav-menu\";i:1;s:7:\"section\";i:1;}'),(2109,336,'_elementor_data','[{\"id\":\"1a53ad6a\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1200\",\"sizes\":[]},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"z_index\":\"10\",\"_title\":\"Header\",\"structure\":\"22\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"background_color_b\":\"#00f2ff\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":\"130\",\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"10\",\"blur\":\"20\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0.1)\"},\"sticky\":\"top\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-90\",\"left\":\"0\",\"isLinked\":\"\"},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\"},\"elements\":[{\"id\":\"741ea2d1\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"content_position\":\"center\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"_inline_size\":49.332,\"_inline_size_tablet\":\"50\",\"_inline_size_mobile\":\"50\",\"_title\":\"Logo Column\"},\"elements\":[{\"id\":\"1a4bfff8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":18,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/a.png\"},\"align\":\"left\",\"align_mobile\":\"left\",\"width\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/edu.elementor.com\\/ekit\\/digital-agency-home\",\"is_external\":\"\",\"nofollow\":\"\"},\"__dynamic__\":{\"link\":\"[elementor-tag id=\\\"52081e4\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"image_custom_dimension\":{\"width\":\"400\",\"height\":\"41\"},\"image_size\":\"medium\",\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":\"\"},{\"id\":\"385d0e0a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"content_position\":\"center\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_inline_size\":50,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":50,\"_inline_size_mobile\":\"50\",\"_title\":\"Menu Column\"},\"elements\":[{\"id\":\"2bc4e941\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"right\",\"animation_line\":\"drop-out\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"menu_typography_font_weight\":\"300\",\"color_menu_item\":\"#16161d\",\"color_menu_item_hover\":\"#ffffff\",\"pointer_color_menu_item_hover\":\"#ffffff\",\"color_menu_item_active\":\"#ffffff\",\"pointer_color_menu_item_active\":\"#ffffff\",\"pointer_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":\"35\",\"sizes\":[]},\"menu_space_between\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"text_align\":\"center\",\"toggle_align\":\"right\",\"color_dropdown_item\":\"#3d4459\",\"background_color_dropdown_item\":\"#ffffff\",\"color_dropdown_item_hover\":\"#4632da\",\"background_color_dropdown_item_hover\":\"#ffffff\",\"color_dropdown_item_active\":\"#4632da\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_family\":\"Montserrat\",\"dropdown_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"dropdown_box_shadow_box_shadow_type\":\"yes\",\"dropdown_box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"2\",\"blur\":\"15\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0.1)\"},\"padding_vertical_dropdown_item_tablet\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"dropdown_divider_border\":\"solid\",\"dropdown_divider_color\":\"#efefef\",\"dropdown_divider_width\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"dropdown_top_distance_tablet\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"dropdown_top_distance_mobile\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"toggle_color\":\"#16161d\",\"toggle_background_color\":\"rgba(255,255,255,0)\",\"toggle_color_hover\":\"#ffffff\",\"toggle_size\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"toggle_border_width\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_horizontal_dropdown_item\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"padding_vertical_dropdown_item\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"dropdown_top_distance\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"indicator\":\"chevron\",\"menu\":\"main-menu\",\"pointer\":\"text\",\"animation_text\":\"none\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(2110,336,'_elementor_conditions','a:1:{i:0;s:15:\"include/general\";}'),(2111,336,'_elementor_css','a:5:{s:4:\"time\";i:1568781528;s:5:\"fonts\";a:1:{i:0;s:10:\"Montserrat\";}s:5:\"icons\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(2112,302,'theme-transparent-header-meta','default'),(2113,337,'_elementor_edit_mode','builder'),(2114,337,'_elementor_template_type','header'),(2115,337,'_elementor_version','2.6.8'),(2116,337,'_elementor_pro_version','2.6.5'),(2117,337,'_wp_page_template','default'),(2118,337,'_elementor_elements_usage','a:4:{s:5:\"image\";i:1;s:6:\"column\";i:2;s:8:\"nav-menu\";i:1;s:7:\"section\";i:1;}'),(2119,337,'_elementor_data','[{\"id\":\"1a53ad6a\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1200\",\"sizes\":[]},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"z_index\":\"10\",\"_title\":\"Header\",\"structure\":\"22\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"background_color_b\":\"#00f2ff\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":\"130\",\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"10\",\"blur\":\"20\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0.1)\"},\"sticky\":\"top\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-90\",\"left\":\"0\",\"isLinked\":\"\"},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\"},\"elements\":[{\"id\":\"741ea2d1\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"content_position\":\"center\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"_inline_size\":49.332,\"_inline_size_tablet\":\"50\",\"_inline_size_mobile\":\"50\",\"_title\":\"Logo Column\"},\"elements\":[{\"id\":\"1a4bfff8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":18,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/a.png\"},\"align\":\"left\",\"align_mobile\":\"left\",\"width\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/edu.elementor.com\\/ekit\\/digital-agency-home\",\"is_external\":\"\",\"nofollow\":\"\"},\"__dynamic__\":{\"link\":\"[elementor-tag id=\\\"52081e4\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"image_custom_dimension\":{\"width\":\"400\",\"height\":\"41\"},\"image_size\":\"medium\",\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":\"\"},{\"id\":\"385d0e0a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"content_position\":\"center\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_inline_size\":50,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":50,\"_inline_size_mobile\":\"50\",\"_title\":\"Menu Column\"},\"elements\":[{\"id\":\"2bc4e941\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"right\",\"animation_line\":\"drop-out\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"menu_typography_font_weight\":\"300\",\"color_menu_item\":\"#16161d\",\"color_menu_item_hover\":\"#ffffff\",\"pointer_color_menu_item_hover\":\"#ffffff\",\"color_menu_item_active\":\"#ffffff\",\"pointer_color_menu_item_active\":\"#ffffff\",\"pointer_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":\"35\",\"sizes\":[]},\"menu_space_between\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"text_align\":\"center\",\"toggle_align\":\"right\",\"color_dropdown_item\":\"#3d4459\",\"background_color_dropdown_item\":\"#ffffff\",\"color_dropdown_item_hover\":\"#4632da\",\"background_color_dropdown_item_hover\":\"#ffffff\",\"color_dropdown_item_active\":\"#4632da\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_family\":\"Montserrat\",\"dropdown_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"dropdown_box_shadow_box_shadow_type\":\"yes\",\"dropdown_box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"2\",\"blur\":\"15\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0.1)\"},\"padding_vertical_dropdown_item_tablet\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"dropdown_divider_border\":\"solid\",\"dropdown_divider_color\":\"#efefef\",\"dropdown_divider_width\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"dropdown_top_distance_tablet\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"dropdown_top_distance_mobile\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"toggle_color\":\"#16161d\",\"toggle_background_color\":\"rgba(255,255,255,0)\",\"toggle_color_hover\":\"#ffffff\",\"toggle_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_horizontal_dropdown_item\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"padding_vertical_dropdown_item\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"dropdown_top_distance\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"indicator\":\"chevron\",\"menu\":\"main-menu\",\"pointer\":\"text\",\"animation_text\":\"none\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(2120,337,'_elementor_conditions','a:1:{i:0;s:15:\"include/general\";}'),(2121,337,'_elementor_css','a:5:{s:4:\"time\";i:1568781528;s:5:\"fonts\";a:1:{i:0;s:10:\"Montserrat\";}s:5:\"icons\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(2124,338,'_elementor_version','2.6.8'),(2125,338,'_elementor_pro_version','2.6.5'),(2126,338,'_wp_page_template','default'),(2127,338,'_elementor_elements_usage','a:4:{s:5:\"image\";i:1;s:6:\"column\";i:2;s:8:\"nav-menu\";i:1;s:7:\"section\";i:1;}'),(2128,338,'_elementor_data','[{\"id\":\"1a53ad6a\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1200\",\"sizes\":[]},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"z_index\":\"10\",\"_title\":\"Header\",\"structure\":\"22\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"background_color_b\":\"#00f2ff\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":\"130\",\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"10\",\"blur\":\"20\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0.1)\"},\"sticky\":\"top\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-90\",\"left\":\"0\",\"isLinked\":\"\"},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\"},\"elements\":[{\"id\":\"741ea2d1\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"content_position\":\"center\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"_inline_size\":49.332,\"_inline_size_tablet\":\"50\",\"_inline_size_mobile\":\"50\",\"_title\":\"Logo Column\"},\"elements\":[{\"id\":\"1a4bfff8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":18,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/a.png\"},\"align\":\"left\",\"align_mobile\":\"left\",\"width\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/edu.elementor.com\\/ekit\\/digital-agency-home\",\"is_external\":\"\",\"nofollow\":\"\"},\"__dynamic__\":{\"link\":\"[elementor-tag id=\\\"52081e4\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"image_custom_dimension\":{\"width\":\"400\",\"height\":\"41\"},\"image_size\":\"medium\",\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":\"\"},{\"id\":\"385d0e0a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"content_position\":\"center\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_inline_size\":50,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":50,\"_inline_size_mobile\":\"50\",\"_title\":\"Menu Column\"},\"elements\":[{\"id\":\"2bc4e941\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"right\",\"animation_line\":\"drop-out\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"menu_typography_font_weight\":\"300\",\"color_menu_item\":\"#16161d\",\"color_menu_item_hover\":\"#ffffff\",\"pointer_color_menu_item_hover\":\"#ffffff\",\"color_menu_item_active\":\"#ffffff\",\"pointer_color_menu_item_active\":\"#ffffff\",\"pointer_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":\"35\",\"sizes\":[]},\"menu_space_between\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"text_align\":\"center\",\"toggle_align\":\"right\",\"color_dropdown_item\":\"#3d4459\",\"background_color_dropdown_item\":\"#ffffff\",\"color_dropdown_item_hover\":\"#4632da\",\"background_color_dropdown_item_hover\":\"#ffffff\",\"color_dropdown_item_active\":\"#4632da\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_family\":\"Montserrat\",\"dropdown_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"dropdown_box_shadow_box_shadow_type\":\"yes\",\"dropdown_box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"2\",\"blur\":\"15\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0.1)\"},\"padding_vertical_dropdown_item_tablet\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"dropdown_divider_border\":\"solid\",\"dropdown_divider_color\":\"#efefef\",\"dropdown_divider_width\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"dropdown_top_distance_tablet\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"dropdown_top_distance_mobile\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"toggle_color\":\"#16161d\",\"toggle_background_color\":\"rgba(255,255,255,0)\",\"toggle_color_hover\":\"#ee7624\",\"toggle_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_horizontal_dropdown_item\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"padding_vertical_dropdown_item\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"dropdown_top_distance\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"indicator\":\"chevron\",\"menu\":\"main-menu\",\"pointer\":\"text\",\"animation_text\":\"none\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(2129,338,'_elementor_conditions','a:1:{i:0;s:15:\"include/general\";}'),(2130,339,'_elementor_edit_mode','builder'),(2131,339,'_elementor_template_type','header'),(2132,339,'_elementor_version','2.6.8'),(2133,339,'_elementor_pro_version','2.6.5'),(2134,339,'_wp_page_template','default'),(2135,339,'_elementor_elements_usage','a:4:{s:5:\"image\";i:1;s:6:\"column\";i:2;s:8:\"nav-menu\";i:1;s:7:\"section\";i:1;}'),(2136,339,'_elementor_data','[{\"id\":\"1a53ad6a\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1200\",\"sizes\":[]},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"z_index\":\"10\",\"_title\":\"Header\",\"structure\":\"22\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"background_color_b\":\"#00f2ff\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":\"130\",\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"10\",\"blur\":\"20\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0.1)\"},\"sticky\":\"top\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-90\",\"left\":\"0\",\"isLinked\":\"\"},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\"},\"elements\":[{\"id\":\"741ea2d1\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"content_position\":\"center\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"_inline_size\":49.332,\"_inline_size_tablet\":\"50\",\"_inline_size_mobile\":\"50\",\"_title\":\"Logo Column\"},\"elements\":[{\"id\":\"1a4bfff8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":18,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/a.png\"},\"align\":\"left\",\"align_mobile\":\"left\",\"width\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/edu.elementor.com\\/ekit\\/digital-agency-home\",\"is_external\":\"\",\"nofollow\":\"\"},\"__dynamic__\":{\"link\":\"[elementor-tag id=\\\"52081e4\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"image_custom_dimension\":{\"width\":\"400\",\"height\":\"41\"},\"image_size\":\"medium\",\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":\"\"},{\"id\":\"385d0e0a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"content_position\":\"center\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_inline_size\":50,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":50,\"_inline_size_mobile\":\"50\",\"_title\":\"Menu Column\"},\"elements\":[{\"id\":\"2bc4e941\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"right\",\"animation_line\":\"drop-out\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"menu_typography_font_weight\":\"300\",\"color_menu_item\":\"#16161d\",\"color_menu_item_hover\":\"#ee7624\",\"pointer_color_menu_item_hover\":\"#ffffff\",\"color_menu_item_active\":\"#ffffff\",\"pointer_color_menu_item_active\":\"#ffffff\",\"pointer_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":\"35\",\"sizes\":[]},\"menu_space_between\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"text_align\":\"center\",\"toggle_align\":\"right\",\"color_dropdown_item\":\"#3d4459\",\"background_color_dropdown_item\":\"#ffffff\",\"color_dropdown_item_hover\":\"#4632da\",\"background_color_dropdown_item_hover\":\"#ffffff\",\"color_dropdown_item_active\":\"#4632da\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_family\":\"Montserrat\",\"dropdown_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"dropdown_box_shadow_box_shadow_type\":\"yes\",\"dropdown_box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"2\",\"blur\":\"15\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0.1)\"},\"padding_vertical_dropdown_item_tablet\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"dropdown_divider_border\":\"solid\",\"dropdown_divider_color\":\"#efefef\",\"dropdown_divider_width\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"dropdown_top_distance_tablet\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"dropdown_top_distance_mobile\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"toggle_color\":\"#16161d\",\"toggle_background_color\":\"rgba(255,255,255,0)\",\"toggle_color_hover\":\"#ee7624\",\"toggle_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_horizontal_dropdown_item\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"padding_vertical_dropdown_item\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"dropdown_top_distance\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"indicator\":\"chevron\",\"menu\":\"main-menu\",\"pointer\":\"text\",\"animation_text\":\"none\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(2137,339,'_elementor_conditions','a:1:{i:0;s:15:\"include/general\";}'),(2205,346,'_elementor_conditions','a:1:{i:0;s:15:\"include/general\";}'),(2216,348,'_elementor_edit_mode','builder'),(2139,340,'_elementor_edit_mode','builder'),(2140,340,'_elementor_template_type','header'),(2141,340,'_elementor_version','2.6.8'),(2142,340,'_elementor_pro_version','2.6.5'),(2143,340,'_wp_page_template','default'),(2144,340,'_elementor_elements_usage','a:4:{s:5:\"image\";i:1;s:6:\"column\";i:2;s:8:\"nav-menu\";i:1;s:7:\"section\";i:1;}'),(2145,340,'_elementor_data','[{\"id\":\"1a53ad6a\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1200\",\"sizes\":[]},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"z_index\":\"10\",\"_title\":\"Header\",\"structure\":\"22\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"background_color_b\":\"#00f2ff\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":\"130\",\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"10\",\"blur\":\"20\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0.1)\"},\"sticky\":\"top\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-90\",\"left\":\"0\",\"isLinked\":\"\"},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\"},\"elements\":[{\"id\":\"741ea2d1\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"content_position\":\"center\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"_inline_size\":49.332,\"_inline_size_tablet\":\"50\",\"_inline_size_mobile\":\"50\",\"_title\":\"Logo Column\"},\"elements\":[{\"id\":\"1a4bfff8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":18,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/a.png\"},\"align\":\"left\",\"align_mobile\":\"left\",\"width\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/edu.elementor.com\\/ekit\\/digital-agency-home\",\"is_external\":\"\",\"nofollow\":\"\"},\"__dynamic__\":{\"link\":\"[elementor-tag id=\\\"52081e4\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"image_custom_dimension\":{\"width\":\"400\",\"height\":\"41\"},\"image_size\":\"medium\",\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":\"\"},{\"id\":\"385d0e0a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"content_position\":\"center\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_inline_size\":50,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":50,\"_inline_size_mobile\":\"50\",\"_title\":\"Menu Column\"},\"elements\":[{\"id\":\"2bc4e941\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"right\",\"animation_line\":\"drop-out\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"menu_typography_font_weight\":\"300\",\"color_menu_item\":\"#16161d\",\"color_menu_item_hover\":\"#ee7624\",\"pointer_color_menu_item_hover\":\"#ffffff\",\"pointer_color_menu_item_active\":\"#ffffff\",\"pointer_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":\"35\",\"sizes\":[]},\"menu_space_between\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"text_align\":\"center\",\"toggle_align\":\"right\",\"color_dropdown_item\":\"#3d4459\",\"background_color_dropdown_item\":\"#ffffff\",\"color_dropdown_item_hover\":\"#4632da\",\"background_color_dropdown_item_hover\":\"#ffffff\",\"color_dropdown_item_active\":\"#4632da\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_family\":\"Montserrat\",\"dropdown_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"dropdown_box_shadow_box_shadow_type\":\"yes\",\"dropdown_box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"2\",\"blur\":\"15\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0.1)\"},\"padding_vertical_dropdown_item_tablet\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"dropdown_divider_border\":\"solid\",\"dropdown_divider_color\":\"#efefef\",\"dropdown_divider_width\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"dropdown_top_distance_tablet\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"dropdown_top_distance_mobile\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"toggle_color\":\"#16161d\",\"toggle_background_color\":\"rgba(255,255,255,0)\",\"toggle_color_hover\":\"#ee7624\",\"toggle_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_horizontal_dropdown_item\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"padding_vertical_dropdown_item\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"dropdown_top_distance\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"indicator\":\"chevron\",\"menu\":\"main-menu\",\"pointer\":\"text\",\"animation_text\":\"none\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(2146,340,'_elementor_conditions','a:1:{i:0;s:15:\"include/general\";}'),(2147,340,'_elementor_css','a:5:{s:4:\"time\";i:1568781902;s:5:\"fonts\";a:1:{i:0;s:10:\"Montserrat\";}s:5:\"icons\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(2149,341,'_elementor_edit_mode','builder'),(2150,341,'_elementor_template_type','header'),(2151,341,'_elementor_version','2.6.8'),(2152,341,'_elementor_pro_version','2.6.5'),(2153,341,'_wp_page_template','default'),(2154,341,'_elementor_elements_usage','a:4:{s:5:\"image\";i:1;s:6:\"column\";i:2;s:8:\"nav-menu\";i:1;s:7:\"section\";i:1;}'),(2155,341,'_elementor_data','[{\"id\":\"1a53ad6a\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1200\",\"sizes\":[]},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"z_index\":\"10\",\"_title\":\"Header\",\"structure\":\"22\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"background_color_b\":\"#00f2ff\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":\"130\",\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"10\",\"blur\":\"20\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0.1)\"},\"sticky\":\"top\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-90\",\"left\":\"0\",\"isLinked\":\"\"},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"layout\":\"full_width\"},\"elements\":[{\"id\":\"741ea2d1\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"content_position\":\"center\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"_inline_size\":49.332,\"_inline_size_tablet\":\"50\",\"_inline_size_mobile\":\"50\",\"_title\":\"Logo Column\"},\"elements\":[{\"id\":\"1a4bfff8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":18,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/a.png\"},\"align\":\"left\",\"align_mobile\":\"left\",\"width\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/edu.elementor.com\\/ekit\\/digital-agency-home\",\"is_external\":\"\",\"nofollow\":\"\"},\"__dynamic__\":{\"link\":\"[elementor-tag id=\\\"52081e4\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"image_custom_dimension\":{\"width\":\"400\",\"height\":\"41\"},\"image_size\":\"medium\",\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":\"\"},{\"id\":\"385d0e0a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"content_position\":\"center\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_inline_size\":50,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":50,\"_inline_size_mobile\":\"50\",\"_title\":\"Menu Column\"},\"elements\":[{\"id\":\"2bc4e941\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"right\",\"animation_line\":\"drop-out\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"menu_typography_font_weight\":\"300\",\"color_menu_item\":\"#16161d\",\"color_menu_item_hover\":\"#ee7624\",\"pointer_color_menu_item_hover\":\"#ffffff\",\"pointer_color_menu_item_active\":\"#ffffff\",\"pointer_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":\"35\",\"sizes\":[]},\"menu_space_between\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"text_align\":\"center\",\"toggle_align\":\"right\",\"color_dropdown_item\":\"#3d4459\",\"background_color_dropdown_item\":\"#ffffff\",\"color_dropdown_item_hover\":\"#4632da\",\"background_color_dropdown_item_hover\":\"#ffffff\",\"color_dropdown_item_active\":\"#4632da\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_family\":\"Montserrat\",\"dropdown_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"dropdown_box_shadow_box_shadow_type\":\"yes\",\"dropdown_box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"2\",\"blur\":\"15\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0.1)\"},\"padding_vertical_dropdown_item_tablet\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"dropdown_divider_border\":\"solid\",\"dropdown_divider_color\":\"#efefef\",\"dropdown_divider_width\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"dropdown_top_distance_tablet\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"dropdown_top_distance_mobile\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"toggle_color\":\"#16161d\",\"toggle_background_color\":\"rgba(255,255,255,0)\",\"toggle_color_hover\":\"#ee7624\",\"toggle_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_horizontal_dropdown_item\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"padding_vertical_dropdown_item\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"dropdown_top_distance\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"indicator\":\"chevron\",\"menu\":\"main-menu\",\"pointer\":\"text\",\"animation_text\":\"none\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(2156,341,'_elementor_conditions','a:1:{i:0;s:15:\"include/general\";}'),(2157,341,'_elementor_css','a:5:{s:4:\"time\";i:1568781971;s:5:\"fonts\";a:1:{i:0;s:10:\"Montserrat\";}s:5:\"icons\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(2179,344,'_elementor_edit_mode','builder'),(2159,342,'_elementor_edit_mode','builder'),(2160,342,'_elementor_template_type','header'),(2161,342,'_elementor_version','2.6.8'),(2162,342,'_elementor_pro_version','2.6.5'),(2163,342,'_wp_page_template','default'),(2164,342,'_elementor_elements_usage','a:4:{s:5:\"image\";i:1;s:6:\"column\";i:2;s:8:\"nav-menu\";i:1;s:7:\"section\";i:1;}'),(2165,342,'_elementor_data','[{\"id\":\"1a53ad6a\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1200\",\"sizes\":[]},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"z_index\":\"10\",\"_title\":\"Header\",\"structure\":\"22\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"background_color_b\":\"#00f2ff\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":\"130\",\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"10\",\"blur\":\"20\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0.1)\"},\"sticky\":\"top\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-90\",\"left\":0,\"isLinked\":\"\"},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"layout\":\"full_width\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[{\"id\":\"741ea2d1\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"content_position\":\"center\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"_inline_size\":49.332,\"_inline_size_tablet\":\"50\",\"_inline_size_mobile\":\"50\",\"_title\":\"Logo Column\"},\"elements\":[{\"id\":\"1a4bfff8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":18,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/a.png\"},\"align\":\"left\",\"align_mobile\":\"left\",\"width\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/edu.elementor.com\\/ekit\\/digital-agency-home\",\"is_external\":\"\",\"nofollow\":\"\"},\"__dynamic__\":{\"link\":\"[elementor-tag id=\\\"52081e4\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"image_custom_dimension\":{\"width\":\"400\",\"height\":\"41\"},\"image_size\":\"medium\",\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":\"\"},{\"id\":\"385d0e0a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"content_position\":\"center\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_inline_size\":50,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":50,\"_inline_size_mobile\":\"50\",\"_title\":\"Menu Column\"},\"elements\":[{\"id\":\"2bc4e941\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"right\",\"animation_line\":\"drop-out\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"menu_typography_font_weight\":\"300\",\"color_menu_item\":\"#16161d\",\"color_menu_item_hover\":\"#ee7624\",\"pointer_color_menu_item_hover\":\"#ffffff\",\"pointer_color_menu_item_active\":\"#ffffff\",\"pointer_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":\"35\",\"sizes\":[]},\"menu_space_between\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"text_align\":\"center\",\"toggle_align\":\"right\",\"color_dropdown_item\":\"#3d4459\",\"background_color_dropdown_item\":\"#ffffff\",\"color_dropdown_item_hover\":\"#4632da\",\"background_color_dropdown_item_hover\":\"#ffffff\",\"color_dropdown_item_active\":\"#4632da\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_family\":\"Montserrat\",\"dropdown_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"dropdown_box_shadow_box_shadow_type\":\"yes\",\"dropdown_box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"2\",\"blur\":\"15\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0.1)\"},\"padding_vertical_dropdown_item_tablet\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"dropdown_divider_border\":\"solid\",\"dropdown_divider_color\":\"#efefef\",\"dropdown_divider_width\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"dropdown_top_distance_tablet\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"dropdown_top_distance_mobile\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"toggle_color\":\"#16161d\",\"toggle_background_color\":\"rgba(255,255,255,0)\",\"toggle_color_hover\":\"#ee7624\",\"toggle_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_horizontal_dropdown_item\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"padding_vertical_dropdown_item\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"dropdown_top_distance\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"indicator\":\"chevron\",\"menu\":\"main-menu\",\"pointer\":\"text\",\"animation_text\":\"none\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(2166,342,'_elementor_conditions','a:1:{i:0;s:15:\"include/general\";}'),(2167,342,'_elementor_css','a:5:{s:4:\"time\";i:1568782047;s:5:\"fonts\";a:1:{i:0;s:10:\"Montserrat\";}s:5:\"icons\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(2169,343,'_elementor_edit_mode','builder'),(2170,343,'_elementor_template_type','header'),(2171,343,'_elementor_version','2.6.8'),(2172,343,'_elementor_pro_version','2.6.5'),(2173,343,'_wp_page_template','default'),(2174,343,'_elementor_elements_usage','a:4:{s:5:\"image\";i:1;s:6:\"column\";i:2;s:8:\"nav-menu\";i:1;s:7:\"section\";i:1;}'),(2175,343,'_elementor_data','[{\"id\":\"1a53ad6a\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1200\",\"sizes\":[]},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"z_index\":\"10\",\"_title\":\"Header\",\"structure\":\"22\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"background_color_b\":\"#00f2ff\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":\"130\",\"sizes\":[]},\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"10\",\"blur\":\"20\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0.1)\"},\"sticky\":\"top\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-90\",\"left\":0,\"isLinked\":\"\"},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"layout\":\"full_width\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[{\"id\":\"741ea2d1\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"content_position\":\"center\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"_inline_size\":49.332,\"_inline_size_tablet\":\"50\",\"_inline_size_mobile\":\"50\",\"_title\":\"Logo Column\"},\"elements\":[{\"id\":\"1a4bfff8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":18,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/a.png\"},\"align\":\"left\",\"align_mobile\":\"left\",\"width\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/edu.elementor.com\\/ekit\\/digital-agency-home\",\"is_external\":\"\",\"nofollow\":\"\"},\"__dynamic__\":{\"link\":\"[elementor-tag id=\\\"52081e4\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"image_custom_dimension\":{\"width\":\"400\",\"height\":\"41\"},\"image_size\":\"medium\",\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":\"\"},{\"id\":\"385d0e0a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"content_position\":\"center\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_inline_size\":50,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":50,\"_inline_size_mobile\":\"50\",\"_title\":\"Menu Column\"},\"elements\":[{\"id\":\"2bc4e941\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"right\",\"animation_line\":\"drop-out\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"menu_typography_font_weight\":\"300\",\"color_menu_item\":\"#16161d\",\"color_menu_item_hover\":\"#ee7624\",\"pointer_color_menu_item_hover\":\"#ffffff\",\"pointer_color_menu_item_active\":\"#ffffff\",\"pointer_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":\"35\",\"sizes\":[]},\"menu_space_between\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"text_align\":\"center\",\"toggle_align\":\"right\",\"color_dropdown_item\":\"#3d4459\",\"background_color_dropdown_item\":\"#ffffff\",\"color_dropdown_item_hover\":\"#4632da\",\"background_color_dropdown_item_hover\":\"#ffffff\",\"color_dropdown_item_active\":\"#4632da\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_family\":\"Montserrat\",\"dropdown_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"dropdown_box_shadow_box_shadow_type\":\"yes\",\"dropdown_box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"2\",\"blur\":\"15\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0.1)\"},\"padding_vertical_dropdown_item_tablet\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"dropdown_divider_border\":\"solid\",\"dropdown_divider_color\":\"#efefef\",\"dropdown_divider_width\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"dropdown_top_distance_tablet\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"dropdown_top_distance_mobile\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"toggle_color\":\"#16161d\",\"toggle_background_color\":\"rgba(255,255,255,0)\",\"toggle_color_hover\":\"#ee7624\",\"toggle_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_horizontal_dropdown_item\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"padding_vertical_dropdown_item\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"dropdown_top_distance\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"indicator\":\"chevron\",\"menu\":\"main-menu\",\"pointer\":\"text\",\"animation_text\":\"none\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(2176,343,'_elementor_conditions','a:1:{i:0;s:15:\"include/general\";}'),(2177,343,'_elementor_css','a:5:{s:4:\"time\";i:1568782131;s:5:\"fonts\";a:1:{i:0;s:10:\"Montserrat\";}s:5:\"icons\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(2180,344,'_elementor_template_type','header'),(2181,344,'_elementor_version','2.6.8'),(2182,344,'_elementor_pro_version','2.6.5'),(2183,344,'_wp_page_template','default'),(2184,344,'_elementor_elements_usage','a:4:{s:5:\"image\";i:1;s:6:\"column\";i:2;s:8:\"nav-menu\";i:1;s:7:\"section\";i:1;}'),(2185,344,'_elementor_data','[{\"id\":\"1a53ad6a\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1200\",\"sizes\":[]},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"z_index\":\"10\",\"_title\":\"Header\",\"structure\":\"22\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"background_color_b\":\"#00f2ff\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":\"130\",\"sizes\":[]},\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"10\",\"blur\":\"20\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0.1)\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-90\",\"left\":0,\"isLinked\":\"\"},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"layout\":\"full_width\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[{\"id\":\"741ea2d1\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"content_position\":\"center\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"_inline_size\":49.332,\"_inline_size_tablet\":\"50\",\"_inline_size_mobile\":\"50\",\"_title\":\"Logo Column\"},\"elements\":[{\"id\":\"1a4bfff8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":18,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/a.png\"},\"align\":\"left\",\"align_mobile\":\"left\",\"width\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/edu.elementor.com\\/ekit\\/digital-agency-home\",\"is_external\":\"\",\"nofollow\":\"\"},\"__dynamic__\":{\"link\":\"[elementor-tag id=\\\"52081e4\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"image_custom_dimension\":{\"width\":\"400\",\"height\":\"41\"},\"image_size\":\"medium\",\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":\"\"},{\"id\":\"385d0e0a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"content_position\":\"center\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_inline_size\":50,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":50,\"_inline_size_mobile\":\"50\",\"_title\":\"Menu Column\"},\"elements\":[{\"id\":\"2bc4e941\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"right\",\"animation_line\":\"drop-out\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"menu_typography_font_weight\":\"300\",\"color_menu_item\":\"#16161d\",\"color_menu_item_hover\":\"#ee7624\",\"pointer_color_menu_item_hover\":\"#ffffff\",\"pointer_color_menu_item_active\":\"#ffffff\",\"pointer_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":\"35\",\"sizes\":[]},\"menu_space_between\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"text_align\":\"center\",\"toggle_align\":\"right\",\"color_dropdown_item\":\"#3d4459\",\"background_color_dropdown_item\":\"#ffffff\",\"color_dropdown_item_hover\":\"#4632da\",\"background_color_dropdown_item_hover\":\"#ffffff\",\"color_dropdown_item_active\":\"#4632da\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_family\":\"Montserrat\",\"dropdown_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"dropdown_box_shadow_box_shadow_type\":\"yes\",\"dropdown_box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"2\",\"blur\":\"15\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0.1)\"},\"padding_vertical_dropdown_item_tablet\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"dropdown_divider_border\":\"solid\",\"dropdown_divider_color\":\"#efefef\",\"dropdown_divider_width\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"dropdown_top_distance_tablet\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"dropdown_top_distance_mobile\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"toggle_color\":\"#16161d\",\"toggle_background_color\":\"rgba(255,255,255,0)\",\"toggle_color_hover\":\"#ee7624\",\"toggle_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_horizontal_dropdown_item\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"padding_vertical_dropdown_item\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"dropdown_top_distance\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"indicator\":\"chevron\",\"menu\":\"main-menu\",\"pointer\":\"text\",\"animation_text\":\"none\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(2186,344,'_elementor_conditions','a:1:{i:0;s:15:\"include/general\";}'),(2187,344,'_elementor_css','a:5:{s:4:\"time\";i:1568782613;s:5:\"fonts\";a:1:{i:0;s:10:\"Montserrat\";}s:5:\"icons\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(2201,346,'_elementor_pro_version','2.6.5'),(2202,346,'_wp_page_template','default'),(2203,346,'_elementor_elements_usage','a:4:{s:5:\"image\";i:1;s:6:\"column\";i:2;s:8:\"nav-menu\";i:1;s:7:\"section\";i:1;}'),(2204,346,'_elementor_data','[{\"id\":\"1a53ad6a\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1200\",\"sizes\":[]},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"z_index\":\"10\",\"_title\":\"Header\",\"structure\":\"22\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"background_color_b\":\"#00f2ff\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":\"130\",\"sizes\":[]},\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"10\",\"blur\":\"20\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0.1)\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-90\",\"left\":0,\"isLinked\":\"\"},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"layout\":\"full_width\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[{\"id\":\"741ea2d1\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"content_position\":\"center\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"_inline_size\":49.332,\"_inline_size_tablet\":\"50\",\"_inline_size_mobile\":\"50\",\"_title\":\"Logo Column\",\"align\":\"center\"},\"elements\":[{\"id\":\"1a4bfff8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":18,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/a.png\"},\"align\":\"left\",\"align_mobile\":\"left\",\"width\":{\"unit\":\"px\",\"size\":704,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/edu.elementor.com\\/ekit\\/digital-agency-home\",\"is_external\":\"\",\"nofollow\":\"\"},\"__dynamic__\":{\"link\":\"[elementor-tag id=\\\"52081e4\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"image_custom_dimension\":{\"width\":\"400\",\"height\":\"41\"},\"image_size\":\"medium\",\"space\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":\"\"},{\"id\":\"385d0e0a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"content_position\":\"center\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_inline_size\":50,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":50,\"_inline_size_mobile\":\"50\",\"_title\":\"Menu Column\"},\"elements\":[{\"id\":\"2bc4e941\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"right\",\"animation_line\":\"drop-out\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"menu_typography_font_weight\":\"300\",\"color_menu_item\":\"#16161d\",\"color_menu_item_hover\":\"#ee7624\",\"pointer_color_menu_item_hover\":\"#ffffff\",\"pointer_color_menu_item_active\":\"#ffffff\",\"pointer_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":\"35\",\"sizes\":[]},\"menu_space_between\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"text_align\":\"center\",\"toggle_align\":\"right\",\"color_dropdown_item\":\"#3d4459\",\"background_color_dropdown_item\":\"#ffffff\",\"color_dropdown_item_hover\":\"#4632da\",\"background_color_dropdown_item_hover\":\"#ffffff\",\"color_dropdown_item_active\":\"#4632da\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_family\":\"Montserrat\",\"dropdown_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"dropdown_box_shadow_box_shadow_type\":\"yes\",\"dropdown_box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"2\",\"blur\":\"15\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0.1)\"},\"padding_vertical_dropdown_item_tablet\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"dropdown_divider_border\":\"solid\",\"dropdown_divider_color\":\"#efefef\",\"dropdown_divider_width\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"dropdown_top_distance_tablet\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"dropdown_top_distance_mobile\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"toggle_color\":\"#16161d\",\"toggle_background_color\":\"rgba(255,255,255,0)\",\"toggle_color_hover\":\"#ee7624\",\"toggle_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_horizontal_dropdown_item\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"padding_vertical_dropdown_item\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"dropdown_top_distance\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"indicator\":\"chevron\",\"menu\":\"main-menu\",\"pointer\":\"text\",\"animation_text\":\"none\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(2200,346,'_elementor_version','2.6.8'),(2198,346,'_elementor_edit_mode','builder'),(2199,346,'_elementor_template_type','header'),(2207,347,'_elementor_edit_mode','builder'),(2208,347,'_elementor_template_type','header'),(2209,347,'_elementor_version','2.6.8'),(2210,347,'_elementor_pro_version','2.6.5'),(2211,347,'_wp_page_template','default'),(2212,347,'_elementor_elements_usage','a:4:{s:5:\"image\";i:1;s:6:\"column\";i:2;s:8:\"nav-menu\";i:1;s:7:\"section\";i:1;}'),(2213,347,'_elementor_data','[{\"id\":\"1a53ad6a\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1200\",\"sizes\":[]},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"z_index\":\"10\",\"_title\":\"Header\",\"structure\":\"22\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"background_color_b\":\"#00f2ff\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":\"130\",\"sizes\":[]},\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"10\",\"blur\":\"20\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0.1)\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-90\",\"left\":0,\"isLinked\":\"\"},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"layout\":\"full_width\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[{\"id\":\"741ea2d1\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"content_position\":\"center\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"_inline_size\":49.332,\"_inline_size_tablet\":\"50\",\"_inline_size_mobile\":\"50\",\"_title\":\"Logo Column\",\"align\":\"center\"},\"elements\":[{\"id\":\"1a4bfff8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":18,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/a.png\"},\"align\":\"left\",\"align_mobile\":\"left\",\"width\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/edu.elementor.com\\/ekit\\/digital-agency-home\",\"is_external\":\"\",\"nofollow\":\"\"},\"__dynamic__\":{\"link\":\"[elementor-tag id=\\\"52081e4\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"image_custom_dimension\":{\"width\":\"400\",\"height\":\"41\"},\"image_size\":\"medium\",\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":\"\"},{\"id\":\"385d0e0a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"content_position\":\"center\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_inline_size\":50,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":50,\"_inline_size_mobile\":\"50\",\"_title\":\"Menu Column\"},\"elements\":[{\"id\":\"2bc4e941\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"right\",\"animation_line\":\"drop-out\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"menu_typography_font_weight\":\"300\",\"color_menu_item\":\"#16161d\",\"color_menu_item_hover\":\"#ee7624\",\"pointer_color_menu_item_hover\":\"#ffffff\",\"pointer_color_menu_item_active\":\"#ffffff\",\"pointer_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":\"35\",\"sizes\":[]},\"menu_space_between\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"text_align\":\"center\",\"toggle_align\":\"right\",\"color_dropdown_item\":\"#3d4459\",\"background_color_dropdown_item\":\"#ffffff\",\"color_dropdown_item_hover\":\"#4632da\",\"background_color_dropdown_item_hover\":\"#ffffff\",\"color_dropdown_item_active\":\"#4632da\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_family\":\"Montserrat\",\"dropdown_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"dropdown_box_shadow_box_shadow_type\":\"yes\",\"dropdown_box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"2\",\"blur\":\"15\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0.1)\"},\"padding_vertical_dropdown_item_tablet\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"dropdown_divider_border\":\"solid\",\"dropdown_divider_color\":\"#efefef\",\"dropdown_divider_width\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"dropdown_top_distance_tablet\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"dropdown_top_distance_mobile\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"toggle_color\":\"#16161d\",\"toggle_background_color\":\"rgba(255,255,255,0)\",\"toggle_color_hover\":\"#ee7624\",\"toggle_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_horizontal_dropdown_item\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"padding_vertical_dropdown_item\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"dropdown_top_distance\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"indicator\":\"chevron\",\"menu\":\"main-menu\",\"pointer\":\"text\",\"animation_text\":\"none\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(2214,347,'_elementor_conditions','a:1:{i:0;s:15:\"include/general\";}'),(2215,347,'_elementor_css','a:5:{s:4:\"time\";i:1568782878;s:5:\"fonts\";a:1:{i:0;s:10:\"Montserrat\";}s:5:\"icons\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(2217,348,'_elementor_template_type','header'),(2218,348,'_elementor_version','2.6.8'),(2219,348,'_elementor_pro_version','2.6.5'),(2220,348,'_wp_page_template','default'),(2221,348,'_elementor_elements_usage','a:4:{s:5:\"image\";i:1;s:6:\"column\";i:2;s:8:\"nav-menu\";i:1;s:7:\"section\";i:1;}'),(2222,348,'_elementor_data','[{\"id\":\"1a53ad6a\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1200\",\"sizes\":[]},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"z_index\":\"10\",\"_title\":\"Header\",\"structure\":\"22\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"background_color_b\":\"#00f2ff\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":\"130\",\"sizes\":[]},\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"10\",\"blur\":\"20\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0.1)\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-90\",\"left\":0,\"isLinked\":\"\"},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"layout\":\"full_width\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[{\"id\":\"741ea2d1\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"content_position\":\"center\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"_inline_size\":60,\"_inline_size_tablet\":\"50\",\"_inline_size_mobile\":\"50\",\"_title\":\"Logo Column\",\"align\":\"center\"},\"elements\":[{\"id\":\"1a4bfff8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":18,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/a.png\"},\"align\":\"left\",\"align_mobile\":\"left\",\"width\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":1000,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/edu.elementor.com\\/ekit\\/digital-agency-home\",\"is_external\":\"\",\"nofollow\":\"\"},\"__dynamic__\":{\"link\":\"[elementor-tag id=\\\"52081e4\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"image_custom_dimension\":{\"width\":\"400\",\"height\":\"41\"},\"image_size\":\"medium_large\",\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"space_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":\"\"},{\"id\":\"385d0e0a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"content_position\":\"center\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_inline_size\":39.332,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":50,\"_inline_size_mobile\":\"50\",\"_title\":\"Menu Column\"},\"elements\":[{\"id\":\"2bc4e941\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"right\",\"animation_line\":\"drop-out\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"menu_typography_font_weight\":\"300\",\"color_menu_item\":\"#16161d\",\"color_menu_item_hover\":\"#ee7624\",\"pointer_color_menu_item_hover\":\"#ffffff\",\"pointer_color_menu_item_active\":\"#ffffff\",\"pointer_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":\"35\",\"sizes\":[]},\"menu_space_between\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"text_align\":\"center\",\"toggle_align\":\"right\",\"color_dropdown_item\":\"#3d4459\",\"background_color_dropdown_item\":\"#ffffff\",\"color_dropdown_item_hover\":\"#4632da\",\"background_color_dropdown_item_hover\":\"#ffffff\",\"color_dropdown_item_active\":\"#4632da\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_family\":\"Montserrat\",\"dropdown_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"dropdown_box_shadow_box_shadow_type\":\"yes\",\"dropdown_box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"2\",\"blur\":\"15\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0.1)\"},\"padding_vertical_dropdown_item_tablet\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"dropdown_divider_border\":\"solid\",\"dropdown_divider_color\":\"#efefef\",\"dropdown_divider_width\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"dropdown_top_distance_tablet\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"dropdown_top_distance_mobile\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"toggle_color\":\"#16161d\",\"toggle_background_color\":\"rgba(255,255,255,0)\",\"toggle_color_hover\":\"#ee7624\",\"toggle_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_horizontal_dropdown_item\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"padding_vertical_dropdown_item\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"dropdown_top_distance\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"indicator\":\"chevron\",\"menu\":\"main-menu\",\"pointer\":\"text\",\"animation_text\":\"none\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(2223,348,'_elementor_conditions','a:1:{i:0;s:15:\"include/general\";}'),(2244,351,'_elementor_edit_mode','builder'),(2245,351,'_elementor_template_type','header'),(2252,352,'_elementor_edit_mode','builder'),(2225,349,'_elementor_edit_mode','builder'),(2226,349,'_elementor_template_type','header'),(2227,349,'_elementor_version','2.6.8'),(2228,349,'_elementor_pro_version','2.6.5'),(2229,349,'_wp_page_template','default'),(2230,349,'_elementor_elements_usage','a:4:{s:5:\"image\";i:1;s:6:\"column\";i:2;s:8:\"nav-menu\";i:1;s:7:\"section\";i:1;}'),(2231,349,'_elementor_data','[{\"id\":\"1a53ad6a\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1200\",\"sizes\":[]},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"z_index\":\"10\",\"_title\":\"Header\",\"structure\":\"22\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"background_color_b\":\"#00f2ff\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":\"130\",\"sizes\":[]},\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"10\",\"blur\":\"20\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0.1)\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-90\",\"left\":0,\"isLinked\":\"\"},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"layout\":\"full_width\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[{\"id\":\"741ea2d1\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"content_position\":\"center\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"_inline_size\":60,\"_inline_size_tablet\":\"50\",\"_inline_size_mobile\":\"50\",\"_title\":\"Logo Column\",\"align\":\"center\"},\"elements\":[{\"id\":\"1a4bfff8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":18,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/a.png\"},\"align\":\"left\",\"align_mobile\":\"left\",\"width\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":1000,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/edu.elementor.com\\/ekit\\/digital-agency-home\",\"is_external\":\"\",\"nofollow\":\"\"},\"__dynamic__\":{\"link\":\"[elementor-tag id=\\\"52081e4\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"image_custom_dimension\":{\"width\":\"400\",\"height\":\"41\"},\"image_size\":\"medium_large\",\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"space_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":\"\"},{\"id\":\"385d0e0a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"content_position\":\"center\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_inline_size\":39.332,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":50,\"_inline_size_mobile\":\"50\",\"_title\":\"Menu Column\"},\"elements\":[{\"id\":\"2bc4e941\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"right\",\"animation_line\":\"drop-out\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"menu_typography_font_weight\":\"300\",\"color_menu_item\":\"#16161d\",\"color_menu_item_hover\":\"#ee7624\",\"pointer_color_menu_item_hover\":\"#ffffff\",\"pointer_color_menu_item_active\":\"#ffffff\",\"pointer_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":\"35\",\"sizes\":[]},\"menu_space_between\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"text_align\":\"center\",\"toggle_align\":\"right\",\"color_dropdown_item\":\"#3d4459\",\"background_color_dropdown_item\":\"#ffffff\",\"color_dropdown_item_hover\":\"#4632da\",\"background_color_dropdown_item_hover\":\"#ffffff\",\"color_dropdown_item_active\":\"#4632da\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_family\":\"Montserrat\",\"dropdown_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"dropdown_box_shadow_box_shadow_type\":\"yes\",\"dropdown_box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"2\",\"blur\":\"15\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0.1)\"},\"padding_vertical_dropdown_item_tablet\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"dropdown_divider_border\":\"solid\",\"dropdown_divider_color\":\"#efefef\",\"dropdown_divider_width\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"dropdown_top_distance_tablet\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"dropdown_top_distance_mobile\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"toggle_color\":\"#16161d\",\"toggle_background_color\":\"rgba(255,255,255,0)\",\"toggle_color_hover\":\"#ee7624\",\"toggle_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_horizontal_dropdown_item\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"padding_vertical_dropdown_item\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"dropdown_top_distance\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"indicator\":\"chevron\",\"menu\":\"main-menu\",\"pointer\":\"text\",\"animation_text\":\"none\",\"full_width\":\"stretch\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(2232,349,'_elementor_conditions','a:1:{i:0;s:15:\"include/general\";}'),(2233,349,'_elementor_css','a:5:{s:4:\"time\";i:1568810029;s:5:\"fonts\";a:1:{i:0;s:10:\"Montserrat\";}s:5:\"icons\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(2235,350,'_elementor_edit_mode','builder'),(2236,350,'_elementor_template_type','header'),(2237,350,'_elementor_version','2.6.8'),(2238,350,'_elementor_pro_version','2.6.5'),(2239,350,'_wp_page_template','default'),(2240,350,'_elementor_elements_usage','a:4:{s:5:\"image\";i:1;s:6:\"column\";i:2;s:8:\"nav-menu\";i:1;s:7:\"section\";i:1;}'),(2241,350,'_elementor_data','[{\"id\":\"1a53ad6a\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1200\",\"sizes\":[]},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"z_index\":\"10\",\"_title\":\"Header\",\"structure\":\"22\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"background_color_b\":\"#00f2ff\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":\"130\",\"sizes\":[]},\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"10\",\"blur\":\"20\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0.1)\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-90\",\"left\":0,\"isLinked\":\"\"},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"layout\":\"full_width\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[{\"id\":\"741ea2d1\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"content_position\":\"center\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"_inline_size\":60,\"_inline_size_tablet\":\"50\",\"_inline_size_mobile\":\"50\",\"_title\":\"Logo Column\",\"align\":\"center\"},\"elements\":[{\"id\":\"1a4bfff8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":18,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/a.png\"},\"align\":\"left\",\"align_mobile\":\"left\",\"width\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":1000,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/edu.elementor.com\\/ekit\\/digital-agency-home\",\"is_external\":\"\",\"nofollow\":\"\"},\"__dynamic__\":{\"link\":\"[elementor-tag id=\\\"52081e4\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"image_custom_dimension\":{\"width\":\"400\",\"height\":\"41\"},\"image_size\":\"medium_large\",\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"space_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":\"\"},{\"id\":\"385d0e0a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"content_position\":\"center\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_inline_size\":39.332,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":50,\"_inline_size_mobile\":\"50\",\"_title\":\"Menu Column\"},\"elements\":[{\"id\":\"2bc4e941\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"right\",\"animation_line\":\"drop-out\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"menu_typography_font_weight\":\"300\",\"color_menu_item\":\"#16161d\",\"color_menu_item_hover\":\"#020aed\",\"pointer_color_menu_item_hover\":\"#ffffff\",\"pointer_color_menu_item_active\":\"#ffffff\",\"pointer_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":\"35\",\"sizes\":[]},\"menu_space_between\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"text_align\":\"center\",\"toggle_align\":\"right\",\"color_dropdown_item\":\"#3d4459\",\"background_color_dropdown_item\":\"#ffffff\",\"color_dropdown_item_hover\":\"#4632da\",\"background_color_dropdown_item_hover\":\"#ffffff\",\"color_dropdown_item_active\":\"#4632da\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_family\":\"Montserrat\",\"dropdown_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"dropdown_box_shadow_box_shadow_type\":\"yes\",\"dropdown_box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"2\",\"blur\":\"15\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0.1)\"},\"padding_vertical_dropdown_item_tablet\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"dropdown_divider_border\":\"solid\",\"dropdown_divider_color\":\"#efefef\",\"dropdown_divider_width\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"dropdown_top_distance_tablet\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"dropdown_top_distance_mobile\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"toggle_color\":\"#16161d\",\"toggle_background_color\":\"rgba(255,255,255,0)\",\"toggle_color_hover\":\"#ee7624\",\"toggle_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_horizontal_dropdown_item\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"padding_vertical_dropdown_item\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"dropdown_top_distance\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"indicator\":\"chevron\",\"menu\":\"main-menu\",\"pointer\":\"text\",\"animation_text\":\"none\",\"full_width\":\"stretch\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(2242,350,'_elementor_conditions','a:1:{i:0;s:15:\"include/general\";}'),(2243,350,'_elementor_css','a:5:{s:4:\"time\";i:1568810935;s:5:\"fonts\";a:1:{i:0;s:10:\"Montserrat\";}s:5:\"icons\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(2246,351,'_elementor_version','2.6.8'),(2247,351,'_elementor_pro_version','2.6.5'),(2248,351,'_wp_page_template','default'),(2249,351,'_elementor_elements_usage','a:4:{s:5:\"image\";i:1;s:6:\"column\";i:2;s:8:\"nav-menu\";i:1;s:7:\"section\";i:1;}'),(2250,351,'_elementor_data','[{\"id\":\"1a53ad6a\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1200\",\"sizes\":[]},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"z_index\":\"10\",\"_title\":\"Header\",\"structure\":\"22\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"background_color_b\":\"#00f2ff\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":\"130\",\"sizes\":[]},\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"10\",\"blur\":\"20\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0.1)\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-90\",\"left\":0,\"isLinked\":\"\"},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"layout\":\"full_width\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[{\"id\":\"741ea2d1\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"content_position\":\"center\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"_inline_size\":60,\"_inline_size_tablet\":\"50\",\"_inline_size_mobile\":\"50\",\"_title\":\"Logo Column\",\"align\":\"center\"},\"elements\":[{\"id\":\"1a4bfff8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":18,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/a.png\"},\"align\":\"left\",\"align_mobile\":\"left\",\"width\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":1000,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/edu.elementor.com\\/ekit\\/digital-agency-home\",\"is_external\":\"\",\"nofollow\":\"\"},\"__dynamic__\":{\"link\":\"[elementor-tag id=\\\"52081e4\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"image_custom_dimension\":{\"width\":\"400\",\"height\":\"41\"},\"image_size\":\"medium_large\",\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"space_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":\"\"},{\"id\":\"385d0e0a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"content_position\":\"center\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_inline_size\":39.332,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":50,\"_inline_size_mobile\":\"50\",\"_title\":\"Menu Column\"},\"elements\":[{\"id\":\"2bc4e941\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"right\",\"animation_line\":\"drop-out\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"menu_typography_font_weight\":\"300\",\"color_menu_item\":\"#16161d\",\"color_menu_item_hover\":\"#ee7624\",\"pointer_color_menu_item_hover\":\"#ffffff\",\"pointer_color_menu_item_active\":\"#ffffff\",\"pointer_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":\"35\",\"sizes\":[]},\"menu_space_between\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"text_align\":\"center\",\"toggle_align\":\"right\",\"color_dropdown_item\":\"#3d4459\",\"background_color_dropdown_item\":\"#ffffff\",\"color_dropdown_item_hover\":\"#4632da\",\"background_color_dropdown_item_hover\":\"#ffffff\",\"color_dropdown_item_active\":\"#4632da\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_family\":\"Montserrat\",\"dropdown_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"dropdown_box_shadow_box_shadow_type\":\"yes\",\"dropdown_box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"2\",\"blur\":\"15\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0.1)\"},\"padding_vertical_dropdown_item_tablet\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"dropdown_divider_border\":\"solid\",\"dropdown_divider_color\":\"#efefef\",\"dropdown_divider_width\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"dropdown_top_distance_tablet\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"dropdown_top_distance_mobile\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"toggle_color\":\"#16161d\",\"toggle_background_color\":\"rgba(255,255,255,0)\",\"toggle_color_hover\":\"#ee7624\",\"toggle_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_horizontal_dropdown_item\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"padding_vertical_dropdown_item\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"dropdown_top_distance\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"indicator\":\"chevron\",\"menu\":\"main-menu\",\"pointer\":\"text\",\"animation_text\":\"none\",\"full_width\":\"stretch\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(2251,351,'_elementor_conditions','a:1:{i:0;s:15:\"include/general\";}'),(2253,352,'_elementor_template_type','header'),(2254,352,'_elementor_version','2.6.8'),(2255,352,'_elementor_pro_version','2.6.5'),(2256,352,'_wp_page_template','default'),(2257,352,'_elementor_elements_usage','a:4:{s:5:\"image\";i:1;s:6:\"column\";i:2;s:8:\"nav-menu\";i:1;s:7:\"section\";i:1;}'),(2258,352,'_elementor_data','[{\"id\":\"1a53ad6a\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1200\",\"sizes\":[]},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"z_index\":\"10\",\"_title\":\"Header\",\"structure\":\"22\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"background_color_b\":\"#00f2ff\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":\"130\",\"sizes\":[]},\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"10\",\"blur\":\"20\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0.1)\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-90\",\"left\":0,\"isLinked\":\"\"},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"layout\":\"full_width\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[{\"id\":\"741ea2d1\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"content_position\":\"center\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"_inline_size\":60,\"_inline_size_tablet\":\"50\",\"_inline_size_mobile\":\"50\",\"_title\":\"Logo Column\",\"align\":\"center\"},\"elements\":[{\"id\":\"1a4bfff8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":18,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/a.png\"},\"align\":\"left\",\"align_mobile\":\"left\",\"width\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":1000,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/edu.elementor.com\\/ekit\\/digital-agency-home\",\"is_external\":\"\",\"nofollow\":\"\"},\"__dynamic__\":{\"link\":\"[elementor-tag id=\\\"52081e4\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"image_custom_dimension\":{\"width\":\"400\",\"height\":\"41\"},\"image_size\":\"medium_large\",\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"space_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":\"\"},{\"id\":\"385d0e0a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"content_position\":\"center\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_inline_size\":39.332,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":50,\"_inline_size_mobile\":\"50\",\"_title\":\"Menu Column\"},\"elements\":[{\"id\":\"2bc4e941\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"right\",\"animation_line\":\"drop-out\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"menu_typography_font_weight\":\"300\",\"color_menu_item\":\"#16161d\",\"color_menu_item_hover\":\"#ee7624\",\"pointer_color_menu_item_hover\":\"#ffffff\",\"pointer_color_menu_item_active\":\"#ffffff\",\"pointer_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":\"35\",\"sizes\":[]},\"menu_space_between\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"toggle_align\":\"right\",\"color_dropdown_item\":\"#3d4459\",\"background_color_dropdown_item\":\"#ffffff\",\"color_dropdown_item_hover\":\"#4632da\",\"background_color_dropdown_item_hover\":\"#ffffff\",\"color_dropdown_item_active\":\"#4632da\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_family\":\"Montserrat\",\"dropdown_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"dropdown_box_shadow_box_shadow_type\":\"yes\",\"dropdown_box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"2\",\"blur\":\"15\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0.1)\"},\"padding_vertical_dropdown_item_tablet\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"dropdown_divider_border\":\"solid\",\"dropdown_divider_color\":\"#efefef\",\"dropdown_divider_width\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"dropdown_top_distance_tablet\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"dropdown_top_distance_mobile\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"toggle_color\":\"#16161d\",\"toggle_background_color\":\"rgba(255,255,255,0)\",\"toggle_color_hover\":\"#ee7624\",\"toggle_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_horizontal_dropdown_item\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"padding_vertical_dropdown_item\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"dropdown_top_distance\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"indicator\":\"chevron\",\"menu\":\"main-menu\",\"pointer\":\"text\",\"animation_text\":\"none\",\"full_width\":\"stretch\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(2259,352,'_elementor_conditions','a:1:{i:0;s:15:\"include/general\";}'),(2261,353,'_elementor_edit_mode','builder'),(2262,353,'_elementor_template_type','header'),(2263,353,'_elementor_version','2.6.8'),(2264,353,'_elementor_pro_version','2.6.5'),(2265,353,'_wp_page_template','default'),(2266,353,'_elementor_elements_usage','a:4:{s:5:\"image\";i:1;s:6:\"column\";i:2;s:8:\"nav-menu\";i:1;s:7:\"section\";i:1;}'),(2267,353,'_elementor_data','[{\"id\":\"1a53ad6a\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1200\",\"sizes\":[]},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"z_index\":\"10\",\"_title\":\"Header\",\"structure\":\"22\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"background_color_b\":\"#00f2ff\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":\"130\",\"sizes\":[]},\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"10\",\"blur\":\"20\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0.1)\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-90\",\"left\":0,\"isLinked\":\"\"},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"layout\":\"full_width\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[{\"id\":\"741ea2d1\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"content_position\":\"center\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"_inline_size\":60,\"_inline_size_tablet\":\"50\",\"_inline_size_mobile\":\"50\",\"_title\":\"Logo Column\",\"align\":\"center\"},\"elements\":[{\"id\":\"1a4bfff8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":18,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/a.png\"},\"align\":\"left\",\"align_mobile\":\"left\",\"width\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":1000,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/edu.elementor.com\\/ekit\\/digital-agency-home\",\"is_external\":\"\",\"nofollow\":\"\"},\"__dynamic__\":{\"link\":\"[elementor-tag id=\\\"52081e4\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"image_custom_dimension\":{\"width\":\"400\",\"height\":\"41\"},\"image_size\":\"medium_large\",\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"space_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":\"\"},{\"id\":\"385d0e0a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"content_position\":\"center\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_inline_size\":39.332,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":50,\"_inline_size_mobile\":\"50\",\"_title\":\"Menu Column\"},\"elements\":[{\"id\":\"2bc4e941\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"right\",\"animation_line\":\"drop-out\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"menu_typography_font_weight\":\"300\",\"color_menu_item\":\"#16161d\",\"color_menu_item_hover\":\"#ee7624\",\"pointer_color_menu_item_hover\":\"#ffffff\",\"pointer_color_menu_item_active\":\"#ffffff\",\"pointer_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":\"35\",\"sizes\":[]},\"menu_space_between\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"text_align\":\"center\",\"toggle_align\":\"right\",\"color_dropdown_item\":\"#3d4459\",\"background_color_dropdown_item\":\"#ffffff\",\"color_dropdown_item_hover\":\"#4632da\",\"background_color_dropdown_item_hover\":\"#ffffff\",\"color_dropdown_item_active\":\"#4632da\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_family\":\"Montserrat\",\"dropdown_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"dropdown_box_shadow_box_shadow_type\":\"yes\",\"dropdown_box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"2\",\"blur\":\"15\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0.1)\"},\"padding_vertical_dropdown_item_tablet\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"dropdown_divider_border\":\"solid\",\"dropdown_divider_color\":\"#efefef\",\"dropdown_divider_width\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"dropdown_top_distance_tablet\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"dropdown_top_distance_mobile\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"toggle_color\":\"#16161d\",\"toggle_background_color\":\"rgba(255,255,255,0)\",\"toggle_color_hover\":\"#ee7624\",\"toggle_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_horizontal_dropdown_item\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"padding_vertical_dropdown_item\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"dropdown_top_distance\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"indicator\":\"chevron\",\"menu\":\"main-menu\",\"pointer\":\"text\",\"animation_text\":\"none\",\"full_width\":\"stretch\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(2268,353,'_elementor_conditions','a:1:{i:0;s:15:\"include/general\";}'),(2269,353,'_elementor_css','a:5:{s:4:\"time\";i:1568811132;s:5:\"fonts\";a:1:{i:0;s:10:\"Montserrat\";}s:5:\"icons\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(2271,354,'_elementor_edit_mode','builder'),(2272,354,'_elementor_template_type','header'),(2273,354,'_elementor_version','2.6.8'),(2274,354,'_elementor_pro_version','2.6.5'),(2275,354,'_wp_page_template','default'),(2276,354,'_elementor_elements_usage','a:4:{s:5:\"image\";i:1;s:6:\"column\";i:2;s:8:\"nav-menu\";i:1;s:7:\"section\";i:1;}'),(2277,354,'_elementor_data','[{\"id\":\"1a53ad6a\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1200\",\"sizes\":[]},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"z_index\":\"10\",\"_title\":\"Header\",\"structure\":\"22\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"background_color_b\":\"#00f2ff\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":\"130\",\"sizes\":[]},\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"10\",\"blur\":\"20\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0.1)\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-90\",\"left\":0,\"isLinked\":\"\"},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"layout\":\"full_width\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[{\"id\":\"741ea2d1\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"content_position\":\"center\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"_inline_size\":60,\"_inline_size_tablet\":\"50\",\"_inline_size_mobile\":\"50\",\"_title\":\"Logo Column\",\"align\":\"center\"},\"elements\":[{\"id\":\"1a4bfff8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":18,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/a.png\"},\"align\":\"left\",\"align_mobile\":\"left\",\"width\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":1000,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/edu.elementor.com\\/ekit\\/digital-agency-home\",\"is_external\":\"\",\"nofollow\":\"\"},\"__dynamic__\":{\"link\":\"[elementor-tag id=\\\"52081e4\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"image_custom_dimension\":{\"width\":\"400\",\"height\":\"41\"},\"image_size\":\"medium_large\",\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"space_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":\"\"},{\"id\":\"385d0e0a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"content_position\":\"center\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_inline_size\":39.332,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":50,\"_inline_size_mobile\":\"50\",\"_title\":\"Menu Column\"},\"elements\":[{\"id\":\"2bc4e941\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"right\",\"animation_line\":\"drop-out\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"menu_typography_font_weight\":\"300\",\"color_menu_item\":\"#16161d\",\"color_menu_item_hover\":\"#ee7624\",\"pointer_color_menu_item_hover\":\"#ffffff\",\"pointer_color_menu_item_active\":\"#ffffff\",\"pointer_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":\"35\",\"sizes\":[]},\"menu_space_between\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"text_align\":\"center\",\"toggle_align\":\"right\",\"color_dropdown_item\":\"#3d4459\",\"background_color_dropdown_item\":\"#ffffff\",\"color_dropdown_item_hover\":\"#4632da\",\"background_color_dropdown_item_hover\":\"#ffffff\",\"color_dropdown_item_active\":\"#4632da\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_family\":\"Montserrat\",\"dropdown_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"dropdown_box_shadow_box_shadow_type\":\"yes\",\"dropdown_box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"2\",\"blur\":\"15\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0.1)\"},\"padding_vertical_dropdown_item_tablet\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"dropdown_divider_border\":\"solid\",\"dropdown_divider_color\":\"#efefef\",\"dropdown_divider_width\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"dropdown_top_distance_tablet\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"dropdown_top_distance_mobile\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"toggle_color\":\"#16161d\",\"toggle_background_color\":\"rgba(255,255,255,0)\",\"toggle_color_hover\":\"#ee7624\",\"toggle_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_horizontal_dropdown_item\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"padding_vertical_dropdown_item\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"dropdown_top_distance\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"indicator\":\"chevron\",\"menu\":\"main-menu\",\"pointer\":\"text\",\"animation_text\":\"none\",\"full_width\":\"stretch\",\"color_menu_item_active\":\"#16161d\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(2278,354,'_elementor_conditions','a:1:{i:0;s:15:\"include/general\";}'),(2279,354,'_elementor_css','a:5:{s:4:\"time\";i:1568811162;s:5:\"fonts\";a:1:{i:0;s:10:\"Montserrat\";}s:5:\"icons\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(2281,355,'_elementor_edit_mode','builder'),(2282,355,'_elementor_template_type','header'),(2283,355,'_elementor_version','2.6.8'),(2284,355,'_elementor_pro_version','2.6.5'),(2285,355,'_wp_page_template','default'),(2286,355,'_elementor_elements_usage','a:4:{s:5:\"image\";i:1;s:6:\"column\";i:2;s:8:\"nav-menu\";i:1;s:7:\"section\";i:1;}'),(2287,355,'_elementor_data','[{\"id\":\"1a53ad6a\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1200\",\"sizes\":[]},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"z_index\":\"10\",\"_title\":\"Header\",\"structure\":\"22\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"background_color_b\":\"#00f2ff\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":\"130\",\"sizes\":[]},\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"10\",\"blur\":\"20\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0.1)\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-90\",\"left\":0,\"isLinked\":\"\"},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"layout\":\"full_width\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[{\"id\":\"741ea2d1\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"content_position\":\"center\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"_inline_size\":60,\"_inline_size_tablet\":\"50\",\"_inline_size_mobile\":\"50\",\"_title\":\"Logo Column\",\"align\":\"center\"},\"elements\":[{\"id\":\"1a4bfff8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":18,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/a.png\"},\"align\":\"left\",\"align_mobile\":\"left\",\"width\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":1000,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/edu.elementor.com\\/ekit\\/digital-agency-home\",\"is_external\":\"\",\"nofollow\":\"\"},\"__dynamic__\":{\"link\":\"[elementor-tag id=\\\"52081e4\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"60\"},\"image_size\":\"full\",\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"space_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":\"\"},{\"id\":\"385d0e0a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"content_position\":\"center\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_inline_size\":39.332,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":50,\"_inline_size_mobile\":\"50\",\"_title\":\"Menu Column\"},\"elements\":[{\"id\":\"2bc4e941\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"right\",\"animation_line\":\"drop-out\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"menu_typography_font_weight\":\"300\",\"color_menu_item\":\"#16161d\",\"color_menu_item_hover\":\"#ee7624\",\"pointer_color_menu_item_hover\":\"#ffffff\",\"pointer_color_menu_item_active\":\"#ffffff\",\"pointer_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":\"35\",\"sizes\":[]},\"menu_space_between\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"text_align\":\"center\",\"toggle_align\":\"right\",\"color_dropdown_item\":\"#3d4459\",\"background_color_dropdown_item\":\"#ffffff\",\"color_dropdown_item_hover\":\"#4632da\",\"background_color_dropdown_item_hover\":\"#ffffff\",\"color_dropdown_item_active\":\"#4632da\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_family\":\"Montserrat\",\"dropdown_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"dropdown_box_shadow_box_shadow_type\":\"yes\",\"dropdown_box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"2\",\"blur\":\"15\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0.1)\"},\"padding_vertical_dropdown_item_tablet\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"dropdown_divider_border\":\"solid\",\"dropdown_divider_color\":\"#efefef\",\"dropdown_divider_width\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"dropdown_top_distance_tablet\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"dropdown_top_distance_mobile\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"toggle_color\":\"#16161d\",\"toggle_background_color\":\"rgba(255,255,255,0)\",\"toggle_color_hover\":\"#ee7624\",\"toggle_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_horizontal_dropdown_item\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"padding_vertical_dropdown_item\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"dropdown_top_distance\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"indicator\":\"chevron\",\"menu\":\"main-menu\",\"pointer\":\"text\",\"animation_text\":\"none\",\"full_width\":\"stretch\",\"color_menu_item_active\":\"#16161d\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(2288,355,'_elementor_conditions','a:1:{i:0;s:15:\"include/general\";}'),(2289,355,'_elementor_css','a:5:{s:4:\"time\";i:1568811624;s:5:\"fonts\";a:1:{i:0;s:10:\"Montserrat\";}s:5:\"icons\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(2291,356,'_edit_lock','1569085455:1'),(2292,356,'_edit_last','1'),(2293,356,'site-sidebar-layout','no-sidebar'),(2294,356,'site-content-layout','page-builder'),(2295,356,'theme-transparent-header-meta','default'),(2296,356,'_elementor_template_type','post'),(2297,356,'_elementor_version','2.6.8'),(2298,356,'_elementor_pro_version','2.6.5'),(2299,356,'_astra_content_layout_flag','disabled'),(2300,356,'site-post-title','disabled'),(2301,356,'ast-title-bar-display','disabled'),(2302,356,'ast-featured-img','disabled'),(2303,356,'_wp_page_template','default'),(2304,356,'_elementor_data','[{\"id\":\"55396f27\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":50,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Theatrical_Display_V003C.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_range\":\"viewport\",\"motion_fx_motion_fx_scrolling\":\"yes\",\"layout\":\"full_width\",\"column_position\":\"top\"},\"elements\":[{\"id\":\"905a97c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ad7f3f6\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"175\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2489c07\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c0bbe21\",\"elType\":\"widget\",\"settings\":{\"title\":\"#WHAT\'S COOL\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"dc881ae\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"18630a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"870a9ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"INNOVATIONS FROM ONDISPLAY CREATIVE\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7df48509\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\"},\"elements\":[{\"id\":\"1147078d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"23bbc68\",\"elType\":\"widget\",\"settings\":{\"title\":\"LIVING STANDEES HAUNTING THEATERS\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b40d155\",\"elType\":\"widget\",\"settings\":{\"title\":\"ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"700\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86cff8b\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"225341d\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS \\u2013 THE LAST KEY\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a680ae8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"be59fa3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e36fe5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"d4d2039\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2.jpg\",\"id\":88},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3c9b758\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"79e122a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2-1.jpg\",\"id\":87},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3dc9df5\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"start\":0},\"elements\":[],\"widgetType\":\"video\"},{\"id\":\"b61a90b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"8f63560\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"08c588a\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS CHAPTER 3\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0e612c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>OnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7e77f5a\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"gap\":\"wide\"},\"elements\":[{\"id\":\"7eb5a21\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.332},\"elements\":[{\"id\":\"ae25867\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/image-asset.jpeg\",\"id\":196},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"24c773b\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":58},\"elements\":[{\"id\":\"93ad602\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/130807026\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"236bdcf\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\"},\"elements\":[{\"id\":\"8a0b6da\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"e28765e\",\"elType\":\"widget\",\"settings\":{\"title\":\"VIRTUAL REALITY EXPERIENCE\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4d0f48c\",\"elType\":\"widget\",\"settings\":{\"title\":\"SOMETHING SOMETHING SOMETHING\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"700\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5a6ec50\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"93d4126\",\"elType\":\"widget\",\"settings\":{\"title\":\"SPIDER-MAN HOMECOMING DISPLAY\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bccfc67\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Submerse yourself in the world of your friendly neighborhood Spider-Man in this fun and thrilling VR Theatrical Display.\\u00a0\\u00a0Based on the all-new 2017 film, the Spider-Man Homecoming VR Experience is a first-person look through the eyes of Spidey himself.<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f786650\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"ec1b52b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":76},\"elements\":[{\"id\":\"74ca310\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Spidey_Home_V4_002.jpg\",\"id\":230},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"css_filters_css_filter\":\"custom\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"265cdc0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":24},\"elements\":[{\"id\":\"35c3d80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/IMG_3834.jpg\",\"id\":231},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"677c7e5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/IMG_3788.jpg\",\"id\":233}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"c22aabe\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"9a54f1a\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b747fda\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":700},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":900},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7eab781\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"43661634\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our company is a collective of amazing people striving to build delightful products.\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.4},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70cc6d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.<\\/p>\",\"align\":\"center\",\"text_color\":\"#686868\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"615dfb3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1000},\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"6414755f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3bb26eed\",\"elType\":\"widget\",\"settings\":{\"text\":\"Read More\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3},\"button_text_color\":\"#ffffff\",\"background_color\":\"rgba(0,0,0,0)\",\"hover_color\":\"#00ce1b\",\"button_hover_border_color\":\"#00ce1b\",\"hover_animation\":\"grow\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"123f6d1\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"25fcf2e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"64f593f\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"596f429\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(2305,356,'_elementor_edit_mode','builder'),(2306,356,'_elementor_elements_usage','a:9:{s:7:\"heading\";i:10;s:6:\"column\";i:15;s:7:\"section\";i:12;s:7:\"divider\";i:4;s:11:\"text-editor\";i:4;s:5:\"image\";i:6;s:5:\"video\";i:2;s:6:\"spacer\";i:2;s:6:\"button\";i:1;}'),(2307,356,'_oembed_716ef4742e78124fc3af93f9a5adead9','<iframe title=\"vimeo placeholder\" src=\"https://player.vimeo.com/video/235215203?dnt=1&amp;app_id=122963\" width=\"1200\" height=\"675\" frameborder=\"0\" allow=\"autoplay; fullscreen\" allowfullscreen></iframe>'),(2308,356,'_oembed_time_716ef4742e78124fc3af93f9a5adead9','1568415948'),(2309,356,'_oembed_e6d64697975779fabdc4f171c0e483ef','<iframe title=\"THE LAST KEYS\" src=\"https://player.vimeo.com/video/257088337?dnt=1&amp;app_id=122963\" width=\"1200\" height=\"675\" frameborder=\"0\" allow=\"autoplay; fullscreen\" allowfullscreen></iframe>'),(2310,356,'_oembed_time_e6d64697975779fabdc4f171c0e483ef','1568416156'),(2311,356,'_oembed_279ad5f32a0cbffcb010fb545e057300','<iframe title=\"THE LAST KEYS\" src=\"https://player.vimeo.com/video/257088337?dnt=1&amp;app_id=122963\" width=\"500\" height=\"281\" frameborder=\"0\" allow=\"autoplay; fullscreen\" allowfullscreen></iframe>'),(2312,356,'_oembed_time_279ad5f32a0cbffcb010fb545e057300','1568417794'),(2313,356,'_oembed_e13e37e158f1a96aa51308acb0afc6e0','<iframe title=\"INSIDIOUS 3 - LIVING STANDEE\" src=\"https://player.vimeo.com/video/130807026?dnt=1&amp;app_id=122963\" width=\"640\" height=\"362\" frameborder=\"0\" allow=\"autoplay; fullscreen\" allowfullscreen></iframe>'),(2314,356,'_oembed_time_e13e37e158f1a96aa51308acb0afc6e0','1568479205'),(2315,356,'_oembed_54d24d33cdea7e3fdd01357656b94060','<iframe title=\"INSIDIOUS 3 - LIVING STANDEE\" src=\"https://player.vimeo.com/video/130807026?dnt=1&amp;app_id=122963\" width=\"500\" height=\"283\" frameborder=\"0\" allow=\"autoplay; fullscreen\" allowfullscreen></iframe>'),(2316,356,'_oembed_time_54d24d33cdea7e3fdd01357656b94060','1568480131'),(2317,356,'_elementor_css','a:5:{s:4:\"time\";i:1568596789;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:1:{i:0;s:0:\"\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(2318,357,'_elementor_template_type','post'),(2319,357,'_elementor_version','2.6.8'),(2320,357,'_elementor_pro_version','2.6.5'),(2321,357,'_wp_page_template','default'),(2322,357,'_elementor_data','[{\"id\":\"55396f27\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":50,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Theatrical_Display_V003C.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_range\":\"viewport\",\"motion_fx_motion_fx_scrolling\":\"yes\",\"layout\":\"full_width\",\"column_position\":\"top\"},\"elements\":[{\"id\":\"905a97c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ad7f3f6\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"175\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2489c07\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c0bbe21\",\"elType\":\"widget\",\"settings\":{\"title\":\"#WHAT\'S COOL\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"dc881ae\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"18630a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"870a9ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"INNOVATIONS FROM ONDISPLAY CREATIVE\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7df48509\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\"},\"elements\":[{\"id\":\"1147078d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"23bbc68\",\"elType\":\"widget\",\"settings\":{\"title\":\"LIVING STANDEES HAUNTING THEATERS\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b40d155\",\"elType\":\"widget\",\"settings\":{\"title\":\"ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"700\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86cff8b\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"225341d\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS \\u2013 THE LAST KEY\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a680ae8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"be59fa3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e36fe5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"d4d2039\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2.jpg\",\"id\":88},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3c9b758\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"79e122a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2-1.jpg\",\"id\":87},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3dc9df5\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"start\":0},\"elements\":[],\"widgetType\":\"video\"},{\"id\":\"b61a90b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"8f63560\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"08c588a\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS CHAPTER 3\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0e612c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>OnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7e77f5a\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"gap\":\"wide\"},\"elements\":[{\"id\":\"7eb5a21\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.332},\"elements\":[{\"id\":\"ae25867\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/image-asset.jpeg\",\"id\":196},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"24c773b\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":58},\"elements\":[{\"id\":\"93ad602\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/130807026\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"236bdcf\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\"},\"elements\":[{\"id\":\"8a0b6da\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"e28765e\",\"elType\":\"widget\",\"settings\":{\"title\":\"VIRTUAL REALITY EXPERIENCE\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4d0f48c\",\"elType\":\"widget\",\"settings\":{\"title\":\"SOMETHING SOMETHING SOMETHING\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"700\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5a6ec50\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"93d4126\",\"elType\":\"widget\",\"settings\":{\"title\":\"SPIDER-MAN HOMECOMING DISPLAY\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bccfc67\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Submerse yourself in the world of your friendly neighborhood Spider-Man in this fun and thrilling VR Theatrical Display.\\u00a0\\u00a0Based on the all-new 2017 film, the Spider-Man Homecoming VR Experience is a first-person look through the eyes of Spidey himself.<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f786650\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"ec1b52b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":76},\"elements\":[{\"id\":\"74ca310\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Spidey_Home_V4_002.jpg\",\"id\":230},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"css_filters_css_filter\":\"custom\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"265cdc0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":24},\"elements\":[{\"id\":\"35c3d80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/IMG_3834.jpg\",\"id\":231},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"677c7e5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/IMG_3788.jpg\",\"id\":233}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"c22aabe\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"9a54f1a\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b747fda\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":700},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":900},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7eab781\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"43661634\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our company is a collective of amazing people striving to build delightful products.\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.4},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70cc6d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.<\\/p>\",\"align\":\"center\",\"text_color\":\"#686868\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"615dfb3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1000},\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"6414755f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3bb26eed\",\"elType\":\"widget\",\"settings\":{\"text\":\"Read More\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3},\"button_text_color\":\"#ffffff\",\"background_color\":\"rgba(0,0,0,0)\",\"hover_color\":\"#00ce1b\",\"button_hover_border_color\":\"#00ce1b\",\"hover_animation\":\"grow\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"123f6d1\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"25fcf2e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"64f593f\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"596f429\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(2323,357,'_elementor_edit_mode','builder'),(2324,357,'_elementor_elements_usage','a:9:{s:7:\"heading\";i:10;s:6:\"column\";i:15;s:7:\"section\";i:12;s:7:\"divider\";i:4;s:11:\"text-editor\";i:4;s:5:\"image\";i:6;s:5:\"video\";i:2;s:6:\"spacer\";i:2;s:6:\"button\";i:1;}'),(2325,357,'_elementor_css','a:5:{s:4:\"time\";i:1568596789;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:1:{i:0;s:0:\"\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(2326,358,'_elementor_template_type','post'),(2327,358,'_elementor_version','2.6.8'),(2328,358,'_elementor_pro_version','2.6.5'),(2329,358,'_wp_page_template','default'),(2330,358,'_elementor_data','[{\"id\":\"55396f27\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":50,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Theatrical_Display_V003C.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_range\":\"viewport\",\"motion_fx_motion_fx_scrolling\":\"yes\",\"layout\":\"full_width\",\"column_position\":\"top\"},\"elements\":[{\"id\":\"905a97c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ad7f3f6\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"175\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2489c07\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c0bbe21\",\"elType\":\"widget\",\"settings\":{\"title\":\"#WHAT\'S COOL\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"dc881ae\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"18630a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"870a9ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"INNOVATIONS FROM ONDISPLAY CREATIVE\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7df48509\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\"},\"elements\":[{\"id\":\"1147078d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"23bbc68\",\"elType\":\"widget\",\"settings\":{\"title\":\"LIVING STANDEES HAUNTING THEATERS\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b40d155\",\"elType\":\"widget\",\"settings\":{\"title\":\"ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"700\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86cff8b\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"225341d\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS \\u2013 THE LAST KEY\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a680ae8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"be59fa3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e36fe5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"d4d2039\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2.jpg\",\"id\":88},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3c9b758\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"79e122a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2-1.jpg\",\"id\":87},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3dc9df5\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"start\":0},\"elements\":[],\"widgetType\":\"video\"},{\"id\":\"b61a90b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"8f63560\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"08c588a\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS CHAPTER 3\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0e612c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>OnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7e77f5a\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"gap\":\"wide\"},\"elements\":[{\"id\":\"7eb5a21\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.332},\"elements\":[{\"id\":\"ae25867\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/image-asset.jpeg\",\"id\":196},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"24c773b\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":58},\"elements\":[{\"id\":\"93ad602\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/130807026\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"236bdcf\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\"},\"elements\":[{\"id\":\"8a0b6da\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"e28765e\",\"elType\":\"widget\",\"settings\":{\"title\":\"VIRTUAL REALITY EXPERIENCE\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4d0f48c\",\"elType\":\"widget\",\"settings\":{\"title\":\"SOMETHING SOMETHING SOMETHING\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"700\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5a6ec50\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"93d4126\",\"elType\":\"widget\",\"settings\":{\"title\":\"SPIDER-MAN HOMECOMING DISPLAY\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bccfc67\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Submerse yourself in the world of your friendly neighborhood Spider-Man in this fun and thrilling VR Theatrical Display.\\u00a0\\u00a0Based on the all-new 2017 film, the Spider-Man Homecoming VR Experience is a first-person look through the eyes of Spidey himself.<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f786650\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"ec1b52b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":76},\"elements\":[{\"id\":\"74ca310\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Spidey_Home_V4_002.jpg\",\"id\":230},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"css_filters_css_filter\":\"custom\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"265cdc0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":24},\"elements\":[{\"id\":\"35c3d80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/IMG_3834.jpg\",\"id\":231},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"677c7e5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/IMG_3788.jpg\",\"id\":233}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"c22aabe\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"9a54f1a\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b747fda\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":700},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":900},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7eab781\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"43661634\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our company is a collective of amazing people striving to build delightful products.\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.4},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70cc6d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.<\\/p>\",\"align\":\"center\",\"text_color\":\"#686868\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"615dfb3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1000},\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"6414755f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3bb26eed\",\"elType\":\"widget\",\"settings\":{\"text\":\"Read More\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3},\"button_text_color\":\"#ffffff\",\"background_color\":\"rgba(0,0,0,0)\",\"hover_color\":\"#00ce1b\",\"button_hover_border_color\":\"#00ce1b\",\"hover_animation\":\"grow\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"123f6d1\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"25fcf2e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"64f593f\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"596f429\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(2331,358,'_elementor_edit_mode','builder'),(2332,358,'_elementor_elements_usage','a:9:{s:7:\"heading\";i:10;s:6:\"column\";i:15;s:7:\"section\";i:12;s:7:\"divider\";i:4;s:11:\"text-editor\";i:4;s:5:\"image\";i:6;s:5:\"video\";i:2;s:6:\"spacer\";i:2;s:6:\"button\";i:1;}'),(2333,358,'_elementor_css','a:5:{s:4:\"time\";i:1568596789;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:1:{i:0;s:0:\"\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(2335,359,'_elementor_template_type','post'),(2336,359,'_elementor_version','2.6.8'),(2337,359,'_elementor_pro_version','2.6.5'),(2338,359,'_wp_page_template','default'),(2339,359,'_elementor_data','[{\"id\":\"55396f27\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":50,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Theatrical_Display_V003C.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_range\":\"viewport\",\"layout\":\"full_width\",\"column_position\":\"top\"},\"elements\":[{\"id\":\"905a97c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ad7f3f6\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"175\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2489c07\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c0bbe21\",\"elType\":\"widget\",\"settings\":{\"title\":\"#WHAT\'S COOL\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"dc881ae\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"18630a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"870a9ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"INNOVATIONS FROM ONDISPLAY CREATIVE\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7df48509\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\"},\"elements\":[{\"id\":\"1147078d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"23bbc68\",\"elType\":\"widget\",\"settings\":{\"title\":\"LIVING STANDEES HAUNTING THEATERS\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b40d155\",\"elType\":\"widget\",\"settings\":{\"title\":\"ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"700\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86cff8b\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"225341d\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS \\u2013 THE LAST KEY\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a680ae8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"be59fa3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e36fe5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"d4d2039\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2.jpg\",\"id\":88},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3c9b758\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"79e122a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2-1.jpg\",\"id\":87},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3dc9df5\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"start\":0},\"elements\":[],\"widgetType\":\"video\"},{\"id\":\"b61a90b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"8f63560\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"08c588a\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS CHAPTER 3\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0e612c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>OnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7e77f5a\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"gap\":\"wide\"},\"elements\":[{\"id\":\"7eb5a21\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.332},\"elements\":[{\"id\":\"ae25867\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/image-asset.jpeg\",\"id\":196},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"24c773b\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":58},\"elements\":[{\"id\":\"93ad602\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/130807026\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"236bdcf\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\"},\"elements\":[{\"id\":\"8a0b6da\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"e28765e\",\"elType\":\"widget\",\"settings\":{\"title\":\"VIRTUAL REALITY EXPERIENCE\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4d0f48c\",\"elType\":\"widget\",\"settings\":{\"title\":\"SOMETHING SOMETHING SOMETHING\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"700\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5a6ec50\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"93d4126\",\"elType\":\"widget\",\"settings\":{\"title\":\"SPIDER-MAN HOMECOMING DISPLAY\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bccfc67\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Submerse yourself in the world of your friendly neighborhood Spider-Man in this fun and thrilling VR Theatrical Display.\\u00a0\\u00a0Based on the all-new 2017 film, the Spider-Man Homecoming VR Experience is a first-person look through the eyes of Spidey himself.<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f786650\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"ec1b52b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":76},\"elements\":[{\"id\":\"74ca310\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Spidey_Home_V4_002.jpg\",\"id\":230},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"css_filters_css_filter\":\"custom\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"265cdc0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":24},\"elements\":[{\"id\":\"35c3d80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/IMG_3834.jpg\",\"id\":231},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"677c7e5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/IMG_3788.jpg\",\"id\":233}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"c22aabe\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"9a54f1a\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b747fda\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":700},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":900},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7eab781\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"43661634\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our company is a collective of amazing people striving to build delightful products.\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.4},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70cc6d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.<\\/p>\",\"align\":\"center\",\"text_color\":\"#686868\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"615dfb3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1000},\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"6414755f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3bb26eed\",\"elType\":\"widget\",\"settings\":{\"text\":\"Read More\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3},\"button_text_color\":\"#ffffff\",\"background_color\":\"rgba(0,0,0,0)\",\"hover_color\":\"#00ce1b\",\"button_hover_border_color\":\"#00ce1b\",\"hover_animation\":\"grow\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"123f6d1\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"25fcf2e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"64f593f\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"596f429\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(2340,359,'_elementor_edit_mode','builder'),(2341,359,'_elementor_elements_usage','a:9:{s:7:\"heading\";i:10;s:6:\"column\";i:15;s:7:\"section\";i:12;s:7:\"divider\";i:4;s:11:\"text-editor\";i:4;s:5:\"image\";i:6;s:5:\"video\";i:2;s:6:\"spacer\";i:2;s:6:\"button\";i:1;}'),(2342,359,'_elementor_css','a:5:{s:4:\"time\";i:1569085572;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:1:{i:0;s:0:\"\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(2346,360,'_elementor_pro_version','2.6.5'),(2347,360,'_wp_page_template','default'),(2348,360,'_elementor_data','[{\"id\":\"55396f27\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":50,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Theatrical_Display_V003C.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_range\":\"viewport\",\"layout\":\"full_width\",\"column_position\":\"top\"},\"elements\":[{\"id\":\"905a97c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ad7f3f6\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"175\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2489c07\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c0bbe21\",\"elType\":\"widget\",\"settings\":{\"title\":\"#WHAT\'S COOL\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"dc881ae\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"18630a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"870a9ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"INNOVATIONS FROM ONDISPLAY CREATIVE\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7df48509\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\"},\"elements\":[{\"id\":\"1147078d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"23bbc68\",\"elType\":\"widget\",\"settings\":{\"title\":\"LIVING STANDEES HAUNTING THEATERS\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b40d155\",\"elType\":\"widget\",\"settings\":{\"title\":\"ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"700\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86cff8b\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"225341d\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS \\u2013 THE LAST KEY\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a680ae8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"be59fa3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e36fe5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"d4d2039\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2.jpg\",\"id\":88},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3c9b758\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"79e122a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2-1.jpg\",\"id\":87},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3dc9df5\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"start\":0},\"elements\":[],\"widgetType\":\"video\"},{\"id\":\"b61a90b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"8f63560\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"08c588a\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS CHAPTER 3\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0e612c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>OnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7e77f5a\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"gap\":\"wide\"},\"elements\":[{\"id\":\"7eb5a21\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.332},\"elements\":[{\"id\":\"ae25867\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/image-asset.jpeg\",\"id\":196},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"24c773b\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":58},\"elements\":[{\"id\":\"93ad602\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/130807026\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"236bdcf\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\"},\"elements\":[{\"id\":\"8a0b6da\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"e28765e\",\"elType\":\"widget\",\"settings\":{\"title\":\"VIRTUAL REALITY EXPERIENCE\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4d0f48c\",\"elType\":\"widget\",\"settings\":{\"title\":\"SOMETHING SOMETHING SOMETHING\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"700\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5a6ec50\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"93d4126\",\"elType\":\"widget\",\"settings\":{\"title\":\"SPIDER-MAN HOMECOMING DISPLAY\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bccfc67\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Submerse yourself in the world of your friendly neighborhood Spider-Man in this fun and thrilling VR Theatrical Display.\\u00a0\\u00a0Based on the all-new 2017 film, the Spider-Man Homecoming VR Experience is a first-person look through the eyes of Spidey himself.<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f786650\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"ec1b52b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":76},\"elements\":[{\"id\":\"74ca310\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Spidey_Home_V4_002.jpg\",\"id\":230},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"css_filters_css_filter\":\"custom\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"265cdc0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":24},\"elements\":[{\"id\":\"35c3d80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/IMG_3834.jpg\",\"id\":231},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"677c7e5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/IMG_3788.jpg\",\"id\":233}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"c22aabe\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"9a54f1a\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b747fda\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":700},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":900},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7eab781\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"43661634\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our company is a collective of amazing people striving to build delightful products.\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.4},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70cc6d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.<\\/p>\",\"align\":\"center\",\"text_color\":\"#686868\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"615dfb3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1000},\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"6414755f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3bb26eed\",\"elType\":\"widget\",\"settings\":{\"text\":\"Read More\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3},\"button_text_color\":\"#ffffff\",\"background_color\":\"rgba(0,0,0,0)\",\"hover_color\":\"#00ce1b\",\"button_hover_border_color\":\"#00ce1b\",\"hover_animation\":\"grow\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"123f6d1\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"25fcf2e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"64f593f\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"596f429\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(2349,360,'_elementor_edit_mode','builder'),(2350,360,'_elementor_elements_usage','a:9:{s:7:\"heading\";i:10;s:6:\"column\";i:15;s:7:\"section\";i:12;s:7:\"divider\";i:4;s:11:\"text-editor\";i:4;s:5:\"image\";i:6;s:5:\"video\";i:2;s:6:\"spacer\";i:2;s:6:\"button\";i:1;}'),(2351,360,'_elementor_css','a:5:{s:4:\"time\";i:1569085592;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:1:{i:0;s:0:\"\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(2353,361,'_elementor_template_type','post'),(2354,361,'_elementor_version','2.6.8'),(2355,361,'_elementor_pro_version','2.6.5'),(2356,361,'_wp_page_template','default'),(2357,361,'_elementor_data','[{\"id\":\"55396f27\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":50,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Theatrical_Display_V003C.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_range\":\"viewport\",\"layout\":\"full_width\",\"column_position\":\"top\"},\"elements\":[{\"id\":\"905a97c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ad7f3f6\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"175\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2489c07\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c0bbe21\",\"elType\":\"widget\",\"settings\":{\"title\":\"#WHAT\'S COOL\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"dc881ae\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"18630a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"870a9ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"INNOVATIONS FROM ONDISPLAY CREATIVE\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7df48509\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\"},\"elements\":[{\"id\":\"1147078d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"23bbc68\",\"elType\":\"widget\",\"settings\":{\"title\":\"LIVING STANDEES HAUNTING THEATERS\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b40d155\",\"elType\":\"widget\",\"settings\":{\"title\":\"ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"700\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86cff8b\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"225341d\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS \\u2013 THE LAST KEY\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a680ae8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"be59fa3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e36fe5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"d4d2039\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2.jpg\",\"id\":88},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3c9b758\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"79e122a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2-1.jpg\",\"id\":87},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3dc9df5\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"start\":0},\"elements\":[],\"widgetType\":\"video\"},{\"id\":\"b61a90b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"8f63560\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"08c588a\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS CHAPTER 3\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0e612c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>OnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7e77f5a\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"gap\":\"wide\"},\"elements\":[{\"id\":\"7eb5a21\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.332},\"elements\":[{\"id\":\"ae25867\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/image-asset.jpeg\",\"id\":196},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"24c773b\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":58},\"elements\":[{\"id\":\"93ad602\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/130807026\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"236bdcf\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\"},\"elements\":[{\"id\":\"8a0b6da\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"e28765e\",\"elType\":\"widget\",\"settings\":{\"title\":\"VIRTUAL REALITY EXPERIENCE\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4d0f48c\",\"elType\":\"widget\",\"settings\":{\"title\":\"SOMETHING SOMETHING SOMETHING\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"700\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5a6ec50\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"93d4126\",\"elType\":\"widget\",\"settings\":{\"title\":\"SPIDER-MAN HOMECOMING DISPLAY\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bccfc67\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Submerse yourself in the world of your friendly neighborhood Spider-Man in this fun and thrilling VR Theatrical Display.\\u00a0\\u00a0Based on the all-new 2017 film, the Spider-Man Homecoming VR Experience is a first-person look through the eyes of Spidey himself.<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f786650\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"ec1b52b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":76},\"elements\":[{\"id\":\"74ca310\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Spidey_Home_V4_002.jpg\",\"id\":230},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"css_filters_css_filter\":\"custom\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"265cdc0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":24},\"elements\":[{\"id\":\"35c3d80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/IMG_3834.jpg\",\"id\":231},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"677c7e5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/IMG_3788.jpg\",\"id\":233}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"c22aabe\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"9a54f1a\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b747fda\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":700},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":900},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7eab781\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"43661634\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our company is a collective of amazing people striving to build delightful products.\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.4},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70cc6d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.<\\/p>\",\"align\":\"center\",\"text_color\":\"#686868\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"615dfb3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1000},\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"6414755f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3bb26eed\",\"elType\":\"widget\",\"settings\":{\"text\":\"Read More\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3},\"button_text_color\":\"#ffffff\",\"background_color\":\"rgba(0,0,0,0)\",\"hover_color\":\"#00ce1b\",\"button_hover_border_color\":\"#00ce1b\",\"hover_animation\":\"grow\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"123f6d1\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"25fcf2e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"64f593f\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"596f429\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(2358,361,'_elementor_edit_mode','builder'),(2359,361,'_elementor_elements_usage','a:9:{s:7:\"heading\";i:10;s:6:\"column\";i:15;s:7:\"section\";i:12;s:7:\"divider\";i:4;s:11:\"text-editor\";i:4;s:5:\"image\";i:6;s:5:\"video\";i:2;s:6:\"spacer\";i:2;s:6:\"button\";i:1;}'),(2360,361,'_elementor_css','a:5:{s:4:\"time\";i:1569085697;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:1:{i:0;s:0:\"\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(2362,362,'_elementor_template_type','post'),(2363,362,'_elementor_version','2.6.8'),(2364,362,'_elementor_pro_version','2.6.5'),(2365,362,'_wp_page_template','default'),(2366,362,'_elementor_data','[{\"id\":\"55396f27\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":50,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Theatrical_Display_V003C.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_range\":\"viewport\",\"layout\":\"full_width\",\"column_position\":\"top\"},\"elements\":[{\"id\":\"905a97c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ad7f3f6\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"175\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2489c07\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c0bbe21\",\"elType\":\"widget\",\"settings\":{\"title\":\"#WHAT\'S COOL\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"dc881ae\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"18630a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"870a9ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"INNOVATIONS FROM ONDISPLAY CREATIVE\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7df48509\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\"},\"elements\":[{\"id\":\"1147078d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"23bbc68\",\"elType\":\"widget\",\"settings\":{\"title\":\"LIVING STANDEES HAUNTING THEATERS\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b40d155\",\"elType\":\"widget\",\"settings\":{\"title\":\"ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"700\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86cff8b\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"225341d\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS \\u2013 THE LAST KEY\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a680ae8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"be59fa3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e36fe5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"d4d2039\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2.jpg\",\"id\":88},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3c9b758\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"79e122a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2-1.jpg\",\"id\":87},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3dc9df5\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"start\":0},\"elements\":[],\"widgetType\":\"video\"},{\"id\":\"b61a90b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"8f63560\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"08c588a\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS CHAPTER 3\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0e612c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>OnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7e77f5a\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"gap\":\"wide\"},\"elements\":[{\"id\":\"7eb5a21\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.332},\"elements\":[{\"id\":\"ae25867\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/image-asset.jpeg\",\"id\":196},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"24c773b\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":58},\"elements\":[{\"id\":\"93ad602\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/130807026\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"236bdcf\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\"},\"elements\":[{\"id\":\"8a0b6da\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"e28765e\",\"elType\":\"widget\",\"settings\":{\"title\":\"VIRTUAL REALITY EXPERIENCE\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4d0f48c\",\"elType\":\"widget\",\"settings\":{\"title\":\"SOMETHING SOMETHING SOMETHING\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"700\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5a6ec50\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"93d4126\",\"elType\":\"widget\",\"settings\":{\"title\":\"SPIDER-MAN HOMECOMING DISPLAY\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bccfc67\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Submerse yourself in the world of your friendly neighborhood Spider-Man in this fun and thrilling VR Theatrical Display.\\u00a0\\u00a0Based on the all-new 2017 film, the Spider-Man Homecoming VR Experience is a first-person look through the eyes of Spidey himself.<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f786650\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"ec1b52b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":76},\"elements\":[{\"id\":\"74ca310\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Spidey_Home_V4_002.jpg\",\"id\":230},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"css_filters_css_filter\":\"custom\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"265cdc0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":24},\"elements\":[{\"id\":\"35c3d80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/IMG_3834.jpg\",\"id\":231},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"677c7e5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/IMG_3788.jpg\",\"id\":233}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"c22aabe\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"9a54f1a\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b747fda\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":700},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":900},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7eab781\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"43661634\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our company is a collective of amazing people striving to build delightful products.\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.4},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70cc6d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.<\\/p>\",\"align\":\"center\",\"text_color\":\"#686868\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"615dfb3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1000},\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"6414755f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3bb26eed\",\"elType\":\"widget\",\"settings\":{\"text\":\"Read More\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3},\"button_text_color\":\"#ffffff\",\"background_color\":\"rgba(0,0,0,0)\",\"hover_color\":\"#00ce1b\",\"button_hover_border_color\":\"#00ce1b\",\"hover_animation\":\"grow\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"123f6d1\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"25fcf2e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"64f593f\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"596f429\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(2367,362,'_elementor_edit_mode','builder'),(2368,362,'_elementor_elements_usage','a:9:{s:7:\"heading\";i:10;s:6:\"column\";i:15;s:7:\"section\";i:12;s:7:\"divider\";i:4;s:11:\"text-editor\";i:4;s:5:\"image\";i:6;s:5:\"video\";i:2;s:6:\"spacer\";i:2;s:6:\"button\";i:1;}'),(2369,362,'_elementor_css','a:5:{s:4:\"time\";i:1569085812;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:1:{i:0;s:0:\"\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(2371,363,'_elementor_template_type','post'),(2372,363,'_elementor_version','2.6.8'),(2373,363,'_elementor_pro_version','2.6.5'),(2374,363,'_wp_page_template','default'),(2375,363,'_elementor_data','[{\"id\":\"55396f27\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":50,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Theatrical_Display_V003C.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_range\":\"viewport\",\"layout\":\"full_width\",\"column_position\":\"top\"},\"elements\":[{\"id\":\"905a97c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ad7f3f6\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"162\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2489c07\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c0bbe21\",\"elType\":\"widget\",\"settings\":{\"title\":\"#WHAT\'S COOL\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"dc881ae\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"18630a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"870a9ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"INNOVATIONS FROM ONDISPLAY CREATIVE\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7df48509\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\"},\"elements\":[{\"id\":\"1147078d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"23bbc68\",\"elType\":\"widget\",\"settings\":{\"title\":\"LIVING STANDEES HAUNTING THEATERS\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b40d155\",\"elType\":\"widget\",\"settings\":{\"title\":\"ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"700\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86cff8b\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"225341d\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS \\u2013 THE LAST KEY\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a680ae8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"be59fa3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e36fe5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"d4d2039\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2.jpg\",\"id\":88},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3c9b758\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"79e122a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2-1.jpg\",\"id\":87},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3dc9df5\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"start\":0},\"elements\":[],\"widgetType\":\"video\"},{\"id\":\"b61a90b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"8f63560\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"08c588a\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS CHAPTER 3\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0e612c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>OnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7e77f5a\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"gap\":\"wide\"},\"elements\":[{\"id\":\"7eb5a21\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.332},\"elements\":[{\"id\":\"ae25867\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/image-asset.jpeg\",\"id\":196},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"24c773b\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":58},\"elements\":[{\"id\":\"93ad602\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/130807026\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"236bdcf\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\"},\"elements\":[{\"id\":\"8a0b6da\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"e28765e\",\"elType\":\"widget\",\"settings\":{\"title\":\"VIRTUAL REALITY EXPERIENCE\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4d0f48c\",\"elType\":\"widget\",\"settings\":{\"title\":\"SOMETHING SOMETHING SOMETHING\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"700\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5a6ec50\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"93d4126\",\"elType\":\"widget\",\"settings\":{\"title\":\"SPIDER-MAN HOMECOMING DISPLAY\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bccfc67\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Submerse yourself in the world of your friendly neighborhood Spider-Man in this fun and thrilling VR Theatrical Display.\\u00a0\\u00a0Based on the all-new 2017 film, the Spider-Man Homecoming VR Experience is a first-person look through the eyes of Spidey himself.<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f786650\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"ec1b52b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":76},\"elements\":[{\"id\":\"74ca310\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Spidey_Home_V4_002.jpg\",\"id\":230},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"css_filters_css_filter\":\"custom\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"265cdc0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":24},\"elements\":[{\"id\":\"35c3d80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/IMG_3834.jpg\",\"id\":231},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"677c7e5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/IMG_3788.jpg\",\"id\":233}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"c22aabe\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"9a54f1a\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b747fda\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":700},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":900},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7eab781\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"43661634\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our company is a collective of amazing people striving to build delightful products.\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.4},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70cc6d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.<\\/p>\",\"align\":\"center\",\"text_color\":\"#686868\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"615dfb3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1000},\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"6414755f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3bb26eed\",\"elType\":\"widget\",\"settings\":{\"text\":\"Read More\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3},\"button_text_color\":\"#ffffff\",\"background_color\":\"rgba(0,0,0,0)\",\"hover_color\":\"#00ce1b\",\"button_hover_border_color\":\"#00ce1b\",\"hover_animation\":\"grow\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"123f6d1\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"25fcf2e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"64f593f\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"596f429\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false}]');
INSERT INTO `wp_postmeta` VALUES (2376,363,'_elementor_edit_mode','builder'),(2377,363,'_elementor_elements_usage','a:9:{s:7:\"heading\";i:10;s:6:\"column\";i:15;s:7:\"section\";i:12;s:7:\"divider\";i:4;s:11:\"text-editor\";i:4;s:5:\"image\";i:6;s:5:\"video\";i:2;s:6:\"spacer\";i:2;s:6:\"button\";i:1;}'),(2378,363,'_elementor_css','a:5:{s:4:\"time\";i:1569085834;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:1:{i:0;s:0:\"\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(2380,364,'_elementor_template_type','post'),(2381,364,'_elementor_version','2.6.8'),(2382,364,'_elementor_pro_version','2.6.5'),(2383,364,'_wp_page_template','default'),(2384,364,'_elementor_data','[{\"id\":\"55396f27\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":50,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Theatrical_Display_V003C.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_range\":\"viewport\",\"layout\":\"full_width\",\"column_position\":\"top\"},\"elements\":[{\"id\":\"905a97c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ad7f3f6\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"162\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2489c07\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c0bbe21\",\"elType\":\"widget\",\"settings\":{\"title\":\"#WHAT\'S COOL\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"dc881ae\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"18630a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"870a9ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"INNOVATIONS FROM ONDISPLAY CREATIVE\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7df48509\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\"},\"elements\":[{\"id\":\"1147078d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"23bbc68\",\"elType\":\"widget\",\"settings\":{\"title\":\"LIVING STANDEES HAUNTING THEATERS\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b40d155\",\"elType\":\"widget\",\"settings\":{\"title\":\"ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"700\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86cff8b\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"225341d\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS \\u2013 THE LAST KEY\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a680ae8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"be59fa3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e36fe5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"d4d2039\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2.jpg\",\"id\":88},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3c9b758\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"79e122a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2-1.jpg\",\"id\":87},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3dc9df5\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"start\":0},\"elements\":[],\"widgetType\":\"video\"},{\"id\":\"b61a90b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"8f63560\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"08c588a\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS CHAPTER 3\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0e612c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>OnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7e77f5a\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"gap\":\"wide\"},\"elements\":[{\"id\":\"7eb5a21\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.332},\"elements\":[{\"id\":\"ae25867\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/image-asset.jpeg\",\"id\":196},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"24c773b\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":58},\"elements\":[{\"id\":\"93ad602\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/130807026\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"236bdcf\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\"},\"elements\":[{\"id\":\"8a0b6da\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"e28765e\",\"elType\":\"widget\",\"settings\":{\"title\":\"VIRTUAL REALITY EXPERIENCE\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4d0f48c\",\"elType\":\"widget\",\"settings\":{\"title\":\"SOMETHING SOMETHING SOMETHING\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"700\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5a6ec50\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"93d4126\",\"elType\":\"widget\",\"settings\":{\"title\":\"SPIDER-MAN HOMECOMING DISPLAY\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bccfc67\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Submerse yourself in the world of your friendly neighborhood Spider-Man in this fun and thrilling VR Theatrical Display.\\u00a0\\u00a0Based on the all-new 2017 film, the Spider-Man Homecoming VR Experience is a first-person look through the eyes of Spidey himself.<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f786650\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"ec1b52b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":76},\"elements\":[{\"id\":\"74ca310\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Spidey_Home_V4_002.jpg\",\"id\":230},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"css_filters_css_filter\":\"custom\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"265cdc0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":24},\"elements\":[{\"id\":\"35c3d80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/IMG_3834.jpg\",\"id\":231},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"677c7e5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/IMG_3788.jpg\",\"id\":233}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"c22aabe\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"9a54f1a\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b747fda\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":700},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":900},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7eab781\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"43661634\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our company is a collective of amazing people striving to build delightful products.\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.4},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70cc6d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.<\\/p>\",\"align\":\"center\",\"text_color\":\"#686868\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"615dfb3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1000},\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"6414755f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3bb26eed\",\"elType\":\"widget\",\"settings\":{\"text\":\"Read More\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3},\"button_text_color\":\"#ffffff\",\"background_color\":\"rgba(0,0,0,0)\",\"hover_color\":\"#00ce1b\",\"button_hover_border_color\":\"#00ce1b\",\"hover_animation\":\"grow\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"123f6d1\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"25fcf2e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"64f593f\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"596f429\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(2385,364,'_elementor_edit_mode','builder'),(2386,364,'_elementor_elements_usage','a:9:{s:7:\"heading\";i:10;s:6:\"column\";i:15;s:7:\"section\";i:12;s:7:\"divider\";i:4;s:11:\"text-editor\";i:4;s:5:\"image\";i:6;s:5:\"video\";i:2;s:6:\"spacer\";i:2;s:6:\"button\";i:1;}'),(2387,364,'_elementor_css','a:5:{s:4:\"time\";i:1569087153;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:1:{i:0;s:0:\"\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(2388,365,'_elementor_template_type','post'),(2389,365,'_elementor_version','2.6.8'),(2390,365,'_elementor_pro_version','2.6.5'),(2391,365,'_wp_page_template','default'),(2392,365,'_elementor_data','[{\"id\":\"55396f27\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":50,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Theatrical_Display_V003C.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_range\":\"viewport\",\"layout\":\"full_width\",\"column_position\":\"top\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"905a97c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ad7f3f6\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"162\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2489c07\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c0bbe21\",\"elType\":\"widget\",\"settings\":{\"title\":\"#WHAT\'S COOL\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"dc881ae\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"18630a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"870a9ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"INNOVATIONS FROM ONDISPLAY CREATIVE\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7df48509\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\"},\"elements\":[{\"id\":\"1147078d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"23bbc68\",\"elType\":\"widget\",\"settings\":{\"title\":\"LIVING STANDEES HAUNTING THEATERS\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b40d155\",\"elType\":\"widget\",\"settings\":{\"title\":\"ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"700\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86cff8b\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"225341d\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS \\u2013 THE LAST KEY\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a680ae8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"be59fa3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e36fe5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"d4d2039\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2.jpg\",\"id\":88},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3c9b758\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"79e122a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2-1.jpg\",\"id\":87},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3dc9df5\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"start\":0},\"elements\":[],\"widgetType\":\"video\"},{\"id\":\"b61a90b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"8f63560\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"08c588a\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS CHAPTER 3\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0e612c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>OnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7e77f5a\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"gap\":\"wide\"},\"elements\":[{\"id\":\"7eb5a21\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.332},\"elements\":[{\"id\":\"ae25867\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/image-asset.jpeg\",\"id\":196},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"24c773b\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":58},\"elements\":[{\"id\":\"93ad602\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/130807026\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"236bdcf\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\"},\"elements\":[{\"id\":\"8a0b6da\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"e28765e\",\"elType\":\"widget\",\"settings\":{\"title\":\"VIRTUAL REALITY EXPERIENCE\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4d0f48c\",\"elType\":\"widget\",\"settings\":{\"title\":\"SOMETHING SOMETHING SOMETHING\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"700\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5a6ec50\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"93d4126\",\"elType\":\"widget\",\"settings\":{\"title\":\"SPIDER-MAN HOMECOMING DISPLAY\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bccfc67\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Submerse yourself in the world of your friendly neighborhood Spider-Man in this fun and thrilling VR Theatrical Display.\\u00a0\\u00a0Based on the all-new 2017 film, the Spider-Man Homecoming VR Experience is a first-person look through the eyes of Spidey himself.<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f786650\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"ec1b52b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":76},\"elements\":[{\"id\":\"74ca310\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Spidey_Home_V4_002.jpg\",\"id\":230},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"css_filters_css_filter\":\"custom\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"265cdc0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":24},\"elements\":[{\"id\":\"35c3d80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/IMG_3834.jpg\",\"id\":231},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"677c7e5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/IMG_3788.jpg\",\"id\":233}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"c22aabe\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"9a54f1a\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b747fda\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":700},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":900},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7eab781\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"43661634\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our company is a collective of amazing people striving to build delightful products.\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.4},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70cc6d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.<\\/p>\",\"align\":\"center\",\"text_color\":\"#686868\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"615dfb3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1000},\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"6414755f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3bb26eed\",\"elType\":\"widget\",\"settings\":{\"text\":\"Read More\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3},\"button_text_color\":\"#ffffff\",\"background_color\":\"rgba(0,0,0,0)\",\"hover_color\":\"#00ce1b\",\"button_hover_border_color\":\"#00ce1b\",\"hover_animation\":\"grow\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"123f6d1\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"25fcf2e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"64f593f\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"596f429\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(2393,365,'_elementor_edit_mode','builder'),(2394,365,'_elementor_elements_usage','a:9:{s:7:\"heading\";i:10;s:6:\"column\";i:15;s:7:\"section\";i:12;s:7:\"divider\";i:4;s:11:\"text-editor\";i:4;s:5:\"image\";i:6;s:5:\"video\";i:2;s:6:\"spacer\";i:2;s:6:\"button\";i:1;}'),(2395,365,'_elementor_css','a:5:{s:4:\"time\";i:1569087153;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:1:{i:0;s:0:\"\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(2398,366,'_elementor_pro_version','2.6.5'),(2399,366,'_wp_page_template','default'),(2400,366,'_elementor_data','[{\"id\":\"55396f27\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":50,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Theatrical_Display_V003C.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_range\":\"viewport\",\"layout\":\"full_width\",\"column_position\":\"top\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"905a97c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ad7f3f6\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"162\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2489c07\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c0bbe21\",\"elType\":\"widget\",\"settings\":{\"title\":\"#WHAT\'S COOL\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"dc881ae\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"18630a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"870a9ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"INNOVATIONS FROM ONDISPLAY CREATIVE\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7df48509\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\"},\"elements\":[{\"id\":\"1147078d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"23bbc68\",\"elType\":\"widget\",\"settings\":{\"title\":\"LIVING STANDEES HAUNTING THEATERS\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b40d155\",\"elType\":\"widget\",\"settings\":{\"title\":\"ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"700\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86cff8b\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"225341d\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS \\u2013 THE LAST KEY\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a680ae8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"be59fa3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e36fe5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"d4d2039\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2.jpg\",\"id\":88},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3c9b758\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"79e122a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2-1.jpg\",\"id\":87},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3dc9df5\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"start\":0},\"elements\":[],\"widgetType\":\"video\"},{\"id\":\"b61a90b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"8f63560\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"08c588a\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS CHAPTER 3\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0e612c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>OnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7e77f5a\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"gap\":\"wide\"},\"elements\":[{\"id\":\"7eb5a21\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.332},\"elements\":[{\"id\":\"ae25867\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/image-asset.jpeg\",\"id\":196},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"24c773b\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":58},\"elements\":[{\"id\":\"93ad602\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/130807026\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"236bdcf\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\"},\"elements\":[{\"id\":\"8a0b6da\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"e28765e\",\"elType\":\"widget\",\"settings\":{\"title\":\"VIRTUAL REALITY EXPERIENCE\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4d0f48c\",\"elType\":\"widget\",\"settings\":{\"title\":\"SOMETHING SOMETHING SOMETHING\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"700\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5a6ec50\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"93d4126\",\"elType\":\"widget\",\"settings\":{\"title\":\"SPIDER-MAN HOMECOMING DISPLAY\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bccfc67\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Submerse yourself in the world of your friendly neighborhood Spider-Man in this fun and thrilling VR Theatrical Display.\\u00a0\\u00a0Based on the all-new 2017 film, the Spider-Man Homecoming VR Experience is a first-person look through the eyes of Spidey himself.<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f786650\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"ec1b52b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":76},\"elements\":[{\"id\":\"74ca310\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Spidey_Home_V4_002.jpg\",\"id\":230},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"css_filters_css_filter\":\"custom\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"265cdc0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":24},\"elements\":[{\"id\":\"35c3d80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/IMG_3834.jpg\",\"id\":231},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"677c7e5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/IMG_3788.jpg\",\"id\":233}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"c22aabe\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"9a54f1a\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b747fda\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":700},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":900},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7eab781\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"43661634\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our company is a collective of amazing people striving to build delightful products.\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.4},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70cc6d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.<\\/p>\",\"align\":\"center\",\"text_color\":\"#686868\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"615dfb3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1000},\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"6414755f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3bb26eed\",\"elType\":\"widget\",\"settings\":{\"text\":\"Read More\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3},\"button_text_color\":\"#ffffff\",\"background_color\":\"rgba(0,0,0,0)\",\"hover_color\":\"#00ce1b\",\"button_hover_border_color\":\"#00ce1b\",\"hover_animation\":\"grow\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"123f6d1\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"25fcf2e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"64f593f\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"596f429\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(2401,366,'_elementor_edit_mode','builder'),(2402,366,'_elementor_elements_usage','a:9:{s:7:\"heading\";i:10;s:6:\"column\";i:15;s:7:\"section\";i:12;s:7:\"divider\";i:4;s:11:\"text-editor\";i:4;s:5:\"image\";i:6;s:5:\"video\";i:2;s:6:\"spacer\";i:2;s:6:\"button\";i:1;}'),(2404,367,'_elementor_template_type','post'),(2405,367,'_elementor_version','2.6.8'),(2406,367,'_elementor_pro_version','2.6.5'),(2407,367,'_wp_page_template','default'),(2408,367,'_elementor_data','[{\"id\":\"55396f27\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":50,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Theatrical_Display_V003C.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_range\":\"viewport\",\"layout\":\"full_width\",\"column_position\":\"top\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"905a97c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ad7f3f6\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"162\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2489c07\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c0bbe21\",\"elType\":\"widget\",\"settings\":{\"title\":\"#WHAT\'S COOL\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"dc881ae\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"18630a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"870a9ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"INNOVATIONS FROM ONDISPLAY CREATIVE\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7df48509\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\"},\"elements\":[{\"id\":\"1147078d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"23bbc68\",\"elType\":\"widget\",\"settings\":{\"title\":\"LIVING STANDEES HAUNTING THEATERS\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b40d155\",\"elType\":\"widget\",\"settings\":{\"title\":\"ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"700\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86cff8b\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"225341d\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS \\u2013 THE LAST KEY\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a680ae8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"be59fa3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e36fe5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"d4d2039\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2.jpg\",\"id\":88},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3c9b758\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"79e122a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2-1.jpg\",\"id\":87},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3dc9df5\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"start\":0},\"elements\":[],\"widgetType\":\"video\"},{\"id\":\"b61a90b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"8f63560\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"08c588a\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS CHAPTER 3\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0e612c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>OnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7e77f5a\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"gap\":\"wide\"},\"elements\":[{\"id\":\"7eb5a21\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.332},\"elements\":[{\"id\":\"ae25867\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/image-asset.jpeg\",\"id\":196},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"24c773b\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":58},\"elements\":[{\"id\":\"93ad602\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/130807026\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"236bdcf\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\"},\"elements\":[{\"id\":\"8a0b6da\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"e28765e\",\"elType\":\"widget\",\"settings\":{\"title\":\"VIRTUAL REALITY EXPERIENCE\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4d0f48c\",\"elType\":\"widget\",\"settings\":{\"title\":\"SOMETHING SOMETHING SOMETHING\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"700\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5a6ec50\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"93d4126\",\"elType\":\"widget\",\"settings\":{\"title\":\"SPIDER-MAN HOMECOMING DISPLAY\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bccfc67\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Submerse yourself in the world of your friendly neighborhood Spider-Man in this fun and thrilling VR Theatrical Display.\\u00a0\\u00a0Based on the all-new 2017 film, the Spider-Man Homecoming VR Experience is a first-person look through the eyes of Spidey himself.<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f786650\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"ec1b52b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":76},\"elements\":[{\"id\":\"74ca310\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Spidey_Home_V4_002.jpg\",\"id\":230},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"css_filters_css_filter\":\"custom\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"265cdc0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":24},\"elements\":[{\"id\":\"35c3d80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/IMG_3834.jpg\",\"id\":231},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"677c7e5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/IMG_3788.jpg\",\"id\":233}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"c22aabe\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"9a54f1a\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b747fda\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":700},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":900},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7eab781\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"43661634\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our company is a collective of amazing people striving to build delightful products.\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.4},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70cc6d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.<\\/p>\",\"align\":\"center\",\"text_color\":\"#686868\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"615dfb3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1000},\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"6414755f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3bb26eed\",\"elType\":\"widget\",\"settings\":{\"text\":\"Read More\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3},\"button_text_color\":\"#ffffff\",\"background_color\":\"rgba(0,0,0,0)\",\"hover_color\":\"#00ce1b\",\"button_hover_border_color\":\"#00ce1b\",\"hover_animation\":\"grow\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"123f6d1\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"25fcf2e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"64f593f\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"596f429\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(2409,367,'_elementor_edit_mode','builder'),(2410,367,'_elementor_elements_usage','a:9:{s:7:\"heading\";i:10;s:6:\"column\";i:15;s:7:\"section\";i:12;s:7:\"divider\";i:4;s:11:\"text-editor\";i:4;s:5:\"image\";i:6;s:5:\"video\";i:2;s:6:\"spacer\";i:2;s:6:\"button\";i:1;}'),(2411,367,'_elementor_css','a:5:{s:4:\"time\";i:1569090803;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:1:{i:0;s:0:\"\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(2412,368,'_elementor_template_type','post'),(2413,368,'_elementor_version','2.6.8'),(2414,368,'_elementor_pro_version','2.6.5'),(2415,368,'_wp_page_template','default'),(2416,368,'_elementor_data','[{\"id\":\"55396f27\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":50,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Theatrical_Display_V003C.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_range\":\"viewport\",\"layout\":\"full_width\",\"column_position\":\"top\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"905a97c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ad7f3f6\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"162\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2489c07\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"c0bbe21\",\"elType\":\"widget\",\"settings\":{\"title\":\"#WHAT\'S COOL\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"dc881ae\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"18630a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"870a9ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"INNOVATIONS FROM ONDISPLAY CREATIVE\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7df48509\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\"},\"elements\":[{\"id\":\"1147078d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"23bbc68\",\"elType\":\"widget\",\"settings\":{\"title\":\"LIVING STANDEES HAUNTING THEATERS\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b40d155\",\"elType\":\"widget\",\"settings\":{\"title\":\"ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"700\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86cff8b\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"225341d\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS \\u2013 THE LAST KEY\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a680ae8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"be59fa3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e36fe5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"d4d2039\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2.jpg\",\"id\":88},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3c9b758\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"79e122a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2-1.jpg\",\"id\":87},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3dc9df5\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"start\":0},\"elements\":[],\"widgetType\":\"video\"},{\"id\":\"b61a90b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"8f63560\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"08c588a\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS CHAPTER 3\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0e612c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>OnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7e77f5a\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"gap\":\"wide\"},\"elements\":[{\"id\":\"7eb5a21\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.332},\"elements\":[{\"id\":\"ae25867\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/image-asset.jpeg\",\"id\":196},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"24c773b\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":58},\"elements\":[{\"id\":\"93ad602\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/130807026\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"236bdcf\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\"},\"elements\":[{\"id\":\"8a0b6da\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"e28765e\",\"elType\":\"widget\",\"settings\":{\"title\":\"VIRTUAL REALITY EXPERIENCE\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4d0f48c\",\"elType\":\"widget\",\"settings\":{\"title\":\"SOMETHING SOMETHING SOMETHING\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"700\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5a6ec50\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"93d4126\",\"elType\":\"widget\",\"settings\":{\"title\":\"SPIDER-MAN HOMECOMING DISPLAY\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bccfc67\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Submerse yourself in the world of your friendly neighborhood Spider-Man in this fun and thrilling VR Theatrical Display.\\u00a0\\u00a0Based on the all-new 2017 film, the Spider-Man Homecoming VR Experience is a first-person look through the eyes of Spidey himself.<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f786650\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"ec1b52b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":76},\"elements\":[{\"id\":\"74ca310\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Spidey_Home_V4_002.jpg\",\"id\":230},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"css_filters_css_filter\":\"custom\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"265cdc0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":24},\"elements\":[{\"id\":\"35c3d80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/IMG_3834.jpg\",\"id\":231},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"677c7e5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/IMG_3788.jpg\",\"id\":233}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"c22aabe\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"9a54f1a\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b747fda\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":700},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":900},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7eab781\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"43661634\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our company is a collective of amazing people striving to build delightful products.\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.4},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70cc6d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.<\\/p>\",\"align\":\"center\",\"text_color\":\"#686868\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"615dfb3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1000},\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"6414755f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3bb26eed\",\"elType\":\"widget\",\"settings\":{\"text\":\"Read More\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3},\"button_text_color\":\"#ffffff\",\"background_color\":\"rgba(0,0,0,0)\",\"hover_color\":\"#00ce1b\",\"button_hover_border_color\":\"#00ce1b\",\"hover_animation\":\"grow\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"123f6d1\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"25fcf2e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"64f593f\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"596f429\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(2417,368,'_elementor_edit_mode','builder'),(2418,368,'_elementor_elements_usage','a:9:{s:7:\"heading\";i:10;s:6:\"column\";i:15;s:7:\"section\";i:12;s:7:\"divider\";i:4;s:11:\"text-editor\";i:4;s:5:\"image\";i:6;s:5:\"video\";i:2;s:6:\"spacer\";i:2;s:6:\"button\";i:1;}'),(2420,369,'_elementor_template_type','post'),(2421,369,'_elementor_version','2.6.8'),(2422,369,'_elementor_pro_version','2.6.5'),(2423,369,'_wp_page_template','default'),(2424,369,'_elementor_data','[{\"id\":\"55396f27\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":50,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Theatrical_Display_V003C.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_range\":\"viewport\",\"layout\":\"full_width\",\"column_position\":\"top\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"905a97c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ad7f3f6\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"162\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2489c07\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"c0bbe21\",\"elType\":\"widget\",\"settings\":{\"title\":\"#WHAT\'S COOL\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"dc881ae\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"18630a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"870a9ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"INNOVATIONS FROM ONDISPLAY CREATIVE\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7df48509\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\"},\"elements\":[{\"id\":\"1147078d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"23bbc68\",\"elType\":\"widget\",\"settings\":{\"title\":\"LIVING STANDEES HAUNTING THEATERS\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b40d155\",\"elType\":\"widget\",\"settings\":{\"title\":\"ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"700\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86cff8b\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"225341d\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS \\u2013 THE LAST KEY\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a680ae8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"be59fa3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e36fe5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"d4d2039\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2.jpg\",\"id\":88},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3c9b758\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"79e122a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2-1.jpg\",\"id\":87},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3dc9df5\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"start\":0},\"elements\":[],\"widgetType\":\"video\"},{\"id\":\"b61a90b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"8f63560\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"08c588a\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS CHAPTER 3\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0e612c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>OnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7e77f5a\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"gap\":\"wide\"},\"elements\":[{\"id\":\"7eb5a21\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.332},\"elements\":[{\"id\":\"ae25867\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/image-asset.jpeg\",\"id\":196},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"24c773b\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":58},\"elements\":[{\"id\":\"93ad602\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/130807026\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"236bdcf\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\"},\"elements\":[{\"id\":\"8a0b6da\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"e28765e\",\"elType\":\"widget\",\"settings\":{\"title\":\"VIRTUAL REALITY EXPERIENCE\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4d0f48c\",\"elType\":\"widget\",\"settings\":{\"title\":\"SOMETHING SOMETHING SOMETHING\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"700\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5a6ec50\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"93d4126\",\"elType\":\"widget\",\"settings\":{\"title\":\"SPIDER-MAN HOMECOMING DISPLAY\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bccfc67\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Submerse yourself in the world of your friendly neighborhood Spider-Man in this fun and thrilling VR Theatrical Display.\\u00a0\\u00a0Based on the all-new 2017 film, the Spider-Man Homecoming VR Experience is a first-person look through the eyes of Spidey himself.<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f786650\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"ec1b52b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":76},\"elements\":[{\"id\":\"74ca310\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Spidey_Home_V4_002.jpg\",\"id\":230},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"css_filters_css_filter\":\"custom\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"265cdc0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":24},\"elements\":[{\"id\":\"35c3d80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/IMG_3834.jpg\",\"id\":231},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"677c7e5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/IMG_3788.jpg\",\"id\":233}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"c22aabe\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"9a54f1a\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b747fda\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":700},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":900},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7eab781\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"43661634\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our company is a collective of amazing people striving to build delightful products.\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.4},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70cc6d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.<\\/p>\",\"align\":\"center\",\"text_color\":\"#686868\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"615dfb3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1000},\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"6414755f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3bb26eed\",\"elType\":\"widget\",\"settings\":{\"text\":\"Read More\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3},\"button_text_color\":\"#ffffff\",\"background_color\":\"rgba(0,0,0,0)\",\"hover_color\":\"#00ce1b\",\"button_hover_border_color\":\"#00ce1b\",\"hover_animation\":\"grow\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"123f6d1\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"25fcf2e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"64f593f\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"596f429\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(2425,369,'_elementor_edit_mode','builder'),(2426,369,'_elementor_elements_usage','a:9:{s:7:\"heading\";i:10;s:6:\"column\";i:15;s:7:\"section\";i:12;s:7:\"divider\";i:4;s:11:\"text-editor\";i:4;s:5:\"image\";i:6;s:5:\"video\";i:2;s:6:\"spacer\";i:2;s:6:\"button\";i:1;}'),(2427,369,'_elementor_css','a:5:{s:4:\"time\";i:1569091077;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:1:{i:0;s:0:\"\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(2445,371,'_elementor_conditions','a:1:{i:0;s:15:\"include/general\";}'),(2441,371,'_elementor_pro_version','2.6.5'),(2442,371,'_wp_page_template','default'),(2443,371,'_elementor_elements_usage','a:4:{s:5:\"image\";i:1;s:6:\"column\";i:2;s:8:\"nav-menu\";i:1;s:7:\"section\";i:1;}'),(2444,371,'_elementor_data','[{\"id\":\"1a53ad6a\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1200\",\"sizes\":[]},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"z_index\":\"10\",\"_title\":\"Header\",\"structure\":\"22\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"background_color_b\":\"#00f2ff\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":\"130\",\"sizes\":[]},\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"10\",\"blur\":\"20\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0.1)\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-90\",\"left\":0,\"isLinked\":\"\"},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"layout\":\"full_width\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[{\"id\":\"741ea2d1\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"content_position\":\"center\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"_inline_size\":64.332,\"_inline_size_tablet\":65,\"_inline_size_mobile\":80,\"_title\":\"Logo Column\",\"align\":\"center\"},\"elements\":[{\"id\":\"1a4bfff8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":18,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/a.png\"},\"align\":\"left\",\"align_mobile\":\"left\",\"width\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":1000,\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":72,\"sizes\":[]},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/edu.elementor.com\\/ekit\\/digital-agency-home\",\"is_external\":\"\",\"nofollow\":\"\"},\"__dynamic__\":{\"link\":\"[elementor-tag id=\\\"52081e4\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"60\"},\"image_size\":\"full\",\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"space_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":\"\"},{\"id\":\"385d0e0a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"content_position\":\"center\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_inline_size\":35,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":35,\"_inline_size_mobile\":20,\"_title\":\"Menu Column\"},\"elements\":[{\"id\":\"2bc4e941\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"right\",\"animation_line\":\"drop-out\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"menu_typography_font_weight\":\"300\",\"color_menu_item\":\"#16161d\",\"color_menu_item_hover\":\"#ee7624\",\"pointer_color_menu_item_hover\":\"#ffffff\",\"pointer_color_menu_item_active\":\"#ffffff\",\"pointer_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":\"35\",\"sizes\":[]},\"menu_space_between\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"text_align\":\"center\",\"toggle_align\":\"right\",\"color_dropdown_item\":\"#3d4459\",\"background_color_dropdown_item\":\"#ffffff\",\"color_dropdown_item_hover\":\"#4632da\",\"background_color_dropdown_item_hover\":\"#ffffff\",\"color_dropdown_item_active\":\"#4632da\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_family\":\"Montserrat\",\"dropdown_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"dropdown_box_shadow_box_shadow_type\":\"yes\",\"dropdown_box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"2\",\"blur\":\"15\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0.1)\"},\"padding_vertical_dropdown_item_tablet\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"dropdown_divider_border\":\"solid\",\"dropdown_divider_color\":\"#efefef\",\"dropdown_divider_width\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"dropdown_top_distance_tablet\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"dropdown_top_distance_mobile\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"toggle_color\":\"#16161d\",\"toggle_background_color\":\"rgba(255,255,255,0)\",\"toggle_color_hover\":\"#ee7624\",\"toggle_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_horizontal_dropdown_item\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"padding_vertical_dropdown_item\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"dropdown_top_distance\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"indicator\":\"chevron\",\"menu\":\"main-menu\",\"pointer\":\"text\",\"animation_text\":\"none\",\"full_width\":\"stretch\",\"color_menu_item_active\":\"#16161d\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(2440,371,'_elementor_version','2.6.8'),(2438,371,'_elementor_edit_mode','builder'),(2439,371,'_elementor_template_type','header'),(2446,372,'_elementor_edit_mode','builder'),(2447,372,'_elementor_template_type','header'),(2448,372,'_elementor_version','2.6.8'),(2449,372,'_elementor_pro_version','2.6.5'),(2450,372,'_wp_page_template','default'),(2451,372,'_elementor_elements_usage','a:4:{s:5:\"image\";i:1;s:6:\"column\";i:2;s:8:\"nav-menu\";i:1;s:7:\"section\";i:1;}'),(2452,372,'_elementor_data','[{\"id\":\"1a53ad6a\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1200\",\"sizes\":[]},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"z_index\":\"10\",\"_title\":\"Header\",\"structure\":\"22\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"background_color_b\":\"#00f2ff\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":\"130\",\"sizes\":[]},\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"10\",\"blur\":\"20\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0.1)\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-90\",\"left\":0,\"isLinked\":\"\"},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"layout\":\"full_width\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[{\"id\":\"741ea2d1\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"content_position\":\"center\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"_inline_size\":64.332,\"_inline_size_tablet\":65,\"_inline_size_mobile\":80,\"_title\":\"Logo Column\",\"align\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-25\",\"isLinked\":false}},\"elements\":[{\"id\":\"1a4bfff8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":18,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/a.png\"},\"align\":\"left\",\"align_mobile\":\"left\",\"width\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":1000,\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":239,\"sizes\":[]},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/edu.elementor.com\\/ekit\\/digital-agency-home\",\"is_external\":\"\",\"nofollow\":\"\"},\"__dynamic__\":{\"link\":\"[elementor-tag id=\\\"52081e4\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"60\"},\"image_size\":\"full\",\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"space_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":\"\"},{\"id\":\"385d0e0a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"content_position\":\"center\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_inline_size\":35,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":35,\"_inline_size_mobile\":20,\"_title\":\"Menu Column\"},\"elements\":[{\"id\":\"2bc4e941\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"right\",\"animation_line\":\"drop-out\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"menu_typography_font_weight\":\"300\",\"color_menu_item\":\"#16161d\",\"color_menu_item_hover\":\"#ee7624\",\"pointer_color_menu_item_hover\":\"#ffffff\",\"pointer_color_menu_item_active\":\"#ffffff\",\"pointer_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":\"35\",\"sizes\":[]},\"menu_space_between\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"text_align\":\"center\",\"toggle_align\":\"right\",\"color_dropdown_item\":\"#3d4459\",\"background_color_dropdown_item\":\"#ffffff\",\"color_dropdown_item_hover\":\"#4632da\",\"background_color_dropdown_item_hover\":\"#ffffff\",\"color_dropdown_item_active\":\"#4632da\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_family\":\"Montserrat\",\"dropdown_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"dropdown_box_shadow_box_shadow_type\":\"yes\",\"dropdown_box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"2\",\"blur\":\"15\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0.1)\"},\"padding_vertical_dropdown_item_tablet\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"dropdown_divider_border\":\"solid\",\"dropdown_divider_color\":\"#efefef\",\"dropdown_divider_width\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"dropdown_top_distance_tablet\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"dropdown_top_distance_mobile\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"toggle_color\":\"#16161d\",\"toggle_background_color\":\"rgba(255,255,255,0)\",\"toggle_color_hover\":\"#ee7624\",\"toggle_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_horizontal_dropdown_item\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"padding_vertical_dropdown_item\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"dropdown_top_distance\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"indicator\":\"chevron\",\"menu\":\"main-menu\",\"pointer\":\"text\",\"animation_text\":\"none\",\"full_width\":\"stretch\",\"color_menu_item_active\":\"#16161d\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(2453,372,'_elementor_conditions','a:1:{i:0;s:15:\"include/general\";}'),(2494,377,'_elementor_edit_mode','builder'),(2495,377,'_elementor_template_type','header'),(2455,373,'_elementor_edit_mode','builder'),(2456,373,'_elementor_template_type','header'),(2457,373,'_elementor_version','2.6.8'),(2458,373,'_elementor_pro_version','2.6.5'),(2459,373,'_wp_page_template','default'),(2460,373,'_elementor_elements_usage','a:4:{s:5:\"image\";i:1;s:6:\"column\";i:2;s:8:\"nav-menu\";i:1;s:7:\"section\";i:1;}'),(2461,373,'_elementor_data','[{\"id\":\"1a53ad6a\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1200\",\"sizes\":[]},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"z_index\":\"10\",\"_title\":\"Header\",\"structure\":\"22\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"background_color_b\":\"#00f2ff\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":\"130\",\"sizes\":[]},\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"10\",\"blur\":\"20\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0.1)\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-90\",\"left\":0,\"isLinked\":\"\"},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"layout\":\"full_width\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[{\"id\":\"741ea2d1\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"content_position\":\"center\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"_inline_size\":64.332,\"_inline_size_tablet\":65,\"_inline_size_mobile\":80,\"_title\":\"Logo Column\",\"align\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1a4bfff8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":18,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/a.png\"},\"align\":\"left\",\"align_mobile\":\"left\",\"width\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":1000,\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":239,\"sizes\":[]},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/edu.elementor.com\\/ekit\\/digital-agency-home\",\"is_external\":\"\",\"nofollow\":\"\"},\"__dynamic__\":{\"link\":\"[elementor-tag id=\\\"52081e4\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"60\"},\"image_size\":\"full\",\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"space_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":\"\"},{\"id\":\"385d0e0a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"content_position\":\"center\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_inline_size\":35,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":35,\"_inline_size_mobile\":20,\"_title\":\"Menu Column\"},\"elements\":[{\"id\":\"2bc4e941\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"right\",\"animation_line\":\"drop-out\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"menu_typography_font_weight\":\"300\",\"color_menu_item\":\"#16161d\",\"color_menu_item_hover\":\"#ee7624\",\"pointer_color_menu_item_hover\":\"#ffffff\",\"pointer_color_menu_item_active\":\"#ffffff\",\"pointer_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":\"35\",\"sizes\":[]},\"menu_space_between\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"text_align\":\"center\",\"toggle_align\":\"right\",\"color_dropdown_item\":\"#3d4459\",\"background_color_dropdown_item\":\"#ffffff\",\"color_dropdown_item_hover\":\"#4632da\",\"background_color_dropdown_item_hover\":\"#ffffff\",\"color_dropdown_item_active\":\"#4632da\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_family\":\"Montserrat\",\"dropdown_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"dropdown_box_shadow_box_shadow_type\":\"yes\",\"dropdown_box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"2\",\"blur\":\"15\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0.1)\"},\"padding_vertical_dropdown_item_tablet\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"dropdown_divider_border\":\"solid\",\"dropdown_divider_color\":\"#efefef\",\"dropdown_divider_width\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"dropdown_top_distance_tablet\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"dropdown_top_distance_mobile\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"toggle_color\":\"#16161d\",\"toggle_background_color\":\"rgba(255,255,255,0)\",\"toggle_color_hover\":\"#ee7624\",\"toggle_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_horizontal_dropdown_item\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"padding_vertical_dropdown_item\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"dropdown_top_distance\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"indicator\":\"chevron\",\"menu\":\"main-menu\",\"pointer\":\"text\",\"animation_text\":\"none\",\"full_width\":\"stretch\",\"color_menu_item_active\":\"#16161d\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(2462,373,'_elementor_conditions','a:1:{i:0;s:15:\"include/general\";}'),(2463,373,'_elementor_css','a:5:{s:4:\"time\";i:1569092493;s:5:\"fonts\";a:1:{i:0;s:10:\"Montserrat\";}s:5:\"icons\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(2553,383,'_elementor_edit_mode','builder'),(2465,374,'_elementor_edit_mode','builder'),(2466,374,'_elementor_template_type','header'),(2467,374,'_elementor_version','2.6.8'),(2468,374,'_elementor_pro_version','2.6.5'),(2469,374,'_wp_page_template','default'),(2470,374,'_elementor_elements_usage','a:4:{s:5:\"image\";i:1;s:6:\"column\";i:2;s:8:\"nav-menu\";i:1;s:7:\"section\";i:1;}'),(2471,374,'_elementor_data','[{\"id\":\"1a53ad6a\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1200\",\"sizes\":[]},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"z_index\":\"10\",\"_title\":\"Header\",\"structure\":\"22\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"background_color_b\":\"#00f2ff\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":\"130\",\"sizes\":[]},\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"10\",\"blur\":\"20\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0.1)\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-90\",\"left\":0,\"isLinked\":\"\"},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"layout\":\"full_width\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[{\"id\":\"741ea2d1\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"content_position\":\"center\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"_inline_size\":64.332,\"_inline_size_tablet\":65,\"_inline_size_mobile\":80,\"_title\":\"Logo Column\",\"align\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1a4bfff8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":18,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/a.png\"},\"align\":\"left\",\"align_mobile\":\"left\",\"width\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":1000,\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":239,\"sizes\":[]},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/edu.elementor.com\\/ekit\\/digital-agency-home\",\"is_external\":\"\",\"nofollow\":\"\"},\"__dynamic__\":{\"link\":\"[elementor-tag id=\\\"52081e4\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"60\"},\"image_size\":\"full\",\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"space_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":\"\"},{\"id\":\"385d0e0a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"content_position\":\"center\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_inline_size\":35,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":35,\"_inline_size_mobile\":20,\"_title\":\"Menu Column\"},\"elements\":[{\"id\":\"2bc4e941\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"right\",\"animation_line\":\"drop-out\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"menu_typography_font_weight\":\"300\",\"color_menu_item\":\"#16161d\",\"color_menu_item_hover\":\"#ee7624\",\"pointer_color_menu_item_hover\":\"#ffffff\",\"pointer_color_menu_item_active\":\"#ffffff\",\"pointer_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":\"35\",\"sizes\":[]},\"menu_space_between\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"text_align\":\"center\",\"toggle_align\":\"right\",\"color_dropdown_item\":\"#3d4459\",\"background_color_dropdown_item\":\"#ffffff\",\"color_dropdown_item_hover\":\"#4632da\",\"background_color_dropdown_item_hover\":\"#ffffff\",\"color_dropdown_item_active\":\"#4632da\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_family\":\"Montserrat\",\"dropdown_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"dropdown_box_shadow_box_shadow_type\":\"yes\",\"dropdown_box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"2\",\"blur\":\"15\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0.1)\"},\"padding_vertical_dropdown_item_tablet\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"dropdown_divider_border\":\"solid\",\"dropdown_divider_color\":\"#efefef\",\"dropdown_divider_width\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"dropdown_top_distance_tablet\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"dropdown_top_distance_mobile\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"toggle_color\":\"#16161d\",\"toggle_background_color\":\"rgba(255,255,255,0)\",\"toggle_color_hover\":\"#ee7624\",\"toggle_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_horizontal_dropdown_item\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"padding_vertical_dropdown_item\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"dropdown_top_distance\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"indicator\":\"chevron\",\"menu\":\"main-menu\",\"pointer\":\"text\",\"animation_text\":\"none\",\"full_width\":\"stretch\",\"color_menu_item_active\":\"#16161d\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(2472,374,'_elementor_conditions','a:1:{i:0;s:15:\"include/general\";}'),(2473,374,'_elementor_css','a:5:{s:4:\"time\";i:1569092537;s:5:\"fonts\";a:1:{i:0;s:10:\"Montserrat\";}s:5:\"icons\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(2475,375,'_elementor_edit_mode','builder'),(2476,375,'_elementor_template_type','header'),(2477,375,'_elementor_version','2.6.8'),(2478,375,'_elementor_pro_version','2.6.5'),(2479,375,'_wp_page_template','default'),(2480,375,'_elementor_elements_usage','a:4:{s:5:\"image\";i:1;s:6:\"column\";i:2;s:8:\"nav-menu\";i:1;s:7:\"section\";i:1;}'),(2481,375,'_elementor_data','[{\"id\":\"1a53ad6a\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1200\",\"sizes\":[]},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"z_index\":\"10\",\"_title\":\"Header\",\"structure\":\"22\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"background_color_b\":\"#00f2ff\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":\"130\",\"sizes\":[]},\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"10\",\"blur\":\"20\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0.1)\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-90\",\"left\":0,\"isLinked\":\"\"},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"layout\":\"full_width\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[{\"id\":\"741ea2d1\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"content_position\":\"center\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"_inline_size\":64.332,\"_inline_size_tablet\":65,\"_inline_size_mobile\":80,\"_title\":\"Logo Column\",\"align\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1a4bfff8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":18,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/a.png\"},\"align\":\"left\",\"align_mobile\":\"left\",\"width\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":1000,\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/edu.elementor.com\\/ekit\\/digital-agency-home\",\"is_external\":\"\",\"nofollow\":\"\"},\"__dynamic__\":{\"link\":\"[elementor-tag id=\\\"52081e4\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"60\"},\"image_size\":\"full\",\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"space_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":\"\"},{\"id\":\"385d0e0a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"content_position\":\"center\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_inline_size\":35,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":35,\"_inline_size_mobile\":20,\"_title\":\"Menu Column\"},\"elements\":[{\"id\":\"2bc4e941\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"right\",\"animation_line\":\"drop-out\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"menu_typography_font_weight\":\"300\",\"color_menu_item\":\"#16161d\",\"color_menu_item_hover\":\"#ee7624\",\"pointer_color_menu_item_hover\":\"#ffffff\",\"pointer_color_menu_item_active\":\"#ffffff\",\"pointer_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":\"35\",\"sizes\":[]},\"menu_space_between\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"text_align\":\"center\",\"toggle_align\":\"right\",\"color_dropdown_item\":\"#3d4459\",\"background_color_dropdown_item\":\"#ffffff\",\"color_dropdown_item_hover\":\"#4632da\",\"background_color_dropdown_item_hover\":\"#ffffff\",\"color_dropdown_item_active\":\"#4632da\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_family\":\"Montserrat\",\"dropdown_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"dropdown_box_shadow_box_shadow_type\":\"yes\",\"dropdown_box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"2\",\"blur\":\"15\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0.1)\"},\"padding_vertical_dropdown_item_tablet\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"dropdown_divider_border\":\"solid\",\"dropdown_divider_color\":\"#efefef\",\"dropdown_divider_width\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"dropdown_top_distance_tablet\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"dropdown_top_distance_mobile\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"toggle_color\":\"#16161d\",\"toggle_background_color\":\"rgba(255,255,255,0)\",\"toggle_color_hover\":\"#ee7624\",\"toggle_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_horizontal_dropdown_item\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"padding_vertical_dropdown_item\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"dropdown_top_distance\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"indicator\":\"chevron\",\"menu\":\"main-menu\",\"pointer\":\"text\",\"animation_text\":\"none\",\"full_width\":\"stretch\",\"color_menu_item_active\":\"#16161d\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(2482,375,'_elementor_conditions','a:1:{i:0;s:15:\"include/general\";}'),(2483,375,'_elementor_css','a:5:{s:4:\"time\";i:1569092582;s:5:\"fonts\";a:1:{i:0;s:10:\"Montserrat\";}s:5:\"icons\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(2485,376,'_elementor_edit_mode','builder'),(2486,376,'_elementor_template_type','header'),(2487,376,'_elementor_version','2.6.8'),(2488,376,'_elementor_pro_version','2.6.5'),(2489,376,'_wp_page_template','default'),(2490,376,'_elementor_elements_usage','a:4:{s:5:\"image\";i:1;s:6:\"column\";i:2;s:8:\"nav-menu\";i:1;s:7:\"section\";i:1;}'),(2491,376,'_elementor_data','[{\"id\":\"1a53ad6a\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1200\",\"sizes\":[]},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"z_index\":\"10\",\"_title\":\"Header\",\"structure\":\"22\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"background_color_b\":\"#00f2ff\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":\"130\",\"sizes\":[]},\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"10\",\"blur\":\"20\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0.1)\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-90\",\"left\":0,\"isLinked\":\"\"},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"layout\":\"full_width\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[{\"id\":\"741ea2d1\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"content_position\":\"center\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"_inline_size\":64.332,\"_inline_size_tablet\":65,\"_inline_size_mobile\":85,\"_title\":\"Logo Column\",\"align\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1a4bfff8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":18,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/a.png\"},\"align\":\"left\",\"align_mobile\":\"left\",\"width\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":1000,\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/edu.elementor.com\\/ekit\\/digital-agency-home\",\"is_external\":\"\",\"nofollow\":\"\"},\"__dynamic__\":{\"link\":\"[elementor-tag id=\\\"52081e4\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"60\"},\"image_size\":\"full\",\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"space_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":\"\"},{\"id\":\"385d0e0a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"content_position\":\"center\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_inline_size\":35,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":35,\"_inline_size_mobile\":15,\"_title\":\"Menu Column\"},\"elements\":[{\"id\":\"2bc4e941\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"right\",\"animation_line\":\"drop-out\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"menu_typography_font_weight\":\"300\",\"color_menu_item\":\"#16161d\",\"color_menu_item_hover\":\"#ee7624\",\"pointer_color_menu_item_hover\":\"#ffffff\",\"pointer_color_menu_item_active\":\"#ffffff\",\"pointer_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":\"35\",\"sizes\":[]},\"menu_space_between\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"text_align\":\"center\",\"toggle_align\":\"right\",\"color_dropdown_item\":\"#3d4459\",\"background_color_dropdown_item\":\"#ffffff\",\"color_dropdown_item_hover\":\"#4632da\",\"background_color_dropdown_item_hover\":\"#ffffff\",\"color_dropdown_item_active\":\"#4632da\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_family\":\"Montserrat\",\"dropdown_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"dropdown_box_shadow_box_shadow_type\":\"yes\",\"dropdown_box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"2\",\"blur\":\"15\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0.1)\"},\"padding_vertical_dropdown_item_tablet\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"dropdown_divider_border\":\"solid\",\"dropdown_divider_color\":\"#efefef\",\"dropdown_divider_width\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"dropdown_top_distance_tablet\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"dropdown_top_distance_mobile\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"toggle_color\":\"#16161d\",\"toggle_background_color\":\"rgba(255,255,255,0)\",\"toggle_color_hover\":\"#ee7624\",\"toggle_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_horizontal_dropdown_item\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"padding_vertical_dropdown_item\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"dropdown_top_distance\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"indicator\":\"chevron\",\"menu\":\"main-menu\",\"pointer\":\"text\",\"animation_text\":\"none\",\"full_width\":\"stretch\",\"color_menu_item_active\":\"#16161d\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(2492,376,'_elementor_conditions','a:1:{i:0;s:15:\"include/general\";}'),(2493,376,'_elementor_css','a:5:{s:4:\"time\";i:1569092682;s:5:\"fonts\";a:1:{i:0;s:10:\"Montserrat\";}s:5:\"icons\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(2496,377,'_elementor_version','2.6.8'),(2497,377,'_elementor_pro_version','2.6.5'),(2498,377,'_wp_page_template','default'),(2499,377,'_elementor_elements_usage','a:4:{s:5:\"image\";i:1;s:6:\"column\";i:2;s:8:\"nav-menu\";i:1;s:7:\"section\";i:1;}'),(2500,377,'_elementor_data','[{\"id\":\"1a53ad6a\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1200\",\"sizes\":[]},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"z_index\":\"10\",\"_title\":\"Header\",\"structure\":\"22\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"background_color_b\":\"#00f2ff\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":\"130\",\"sizes\":[]},\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"10\",\"blur\":\"20\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0.1)\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-90\",\"left\":0,\"isLinked\":\"\"},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"layout\":\"full_width\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[{\"id\":\"741ea2d1\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"content_position\":\"center\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"_inline_size\":64.332,\"_inline_size_tablet\":65,\"_inline_size_mobile\":85,\"_title\":\"Logo Column\",\"align\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1a4bfff8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":18,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/a.png\"},\"align\":\"left\",\"align_mobile\":\"left\",\"width\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":1000,\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":275,\"sizes\":[]},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/edu.elementor.com\\/ekit\\/digital-agency-home\",\"is_external\":\"\",\"nofollow\":\"\"},\"__dynamic__\":{\"link\":\"[elementor-tag id=\\\"52081e4\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"60\"},\"image_size\":\"full\",\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"space_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":\"\"},{\"id\":\"385d0e0a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"content_position\":\"center\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_inline_size\":35,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":35,\"_inline_size_mobile\":15,\"_title\":\"Menu Column\"},\"elements\":[{\"id\":\"2bc4e941\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"right\",\"animation_line\":\"drop-out\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"menu_typography_font_weight\":\"300\",\"color_menu_item\":\"#16161d\",\"color_menu_item_hover\":\"#ee7624\",\"pointer_color_menu_item_hover\":\"#ffffff\",\"pointer_color_menu_item_active\":\"#ffffff\",\"pointer_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":\"35\",\"sizes\":[]},\"menu_space_between\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"text_align\":\"center\",\"toggle_align\":\"right\",\"color_dropdown_item\":\"#3d4459\",\"background_color_dropdown_item\":\"#ffffff\",\"color_dropdown_item_hover\":\"#4632da\",\"background_color_dropdown_item_hover\":\"#ffffff\",\"color_dropdown_item_active\":\"#4632da\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_family\":\"Montserrat\",\"dropdown_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"dropdown_box_shadow_box_shadow_type\":\"yes\",\"dropdown_box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"2\",\"blur\":\"15\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0.1)\"},\"padding_vertical_dropdown_item_tablet\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"dropdown_divider_border\":\"solid\",\"dropdown_divider_color\":\"#efefef\",\"dropdown_divider_width\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"dropdown_top_distance_tablet\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"dropdown_top_distance_mobile\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"toggle_color\":\"#16161d\",\"toggle_background_color\":\"rgba(255,255,255,0)\",\"toggle_color_hover\":\"#ee7624\",\"toggle_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_horizontal_dropdown_item\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"padding_vertical_dropdown_item\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"dropdown_top_distance\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"indicator\":\"chevron\",\"menu\":\"main-menu\",\"pointer\":\"text\",\"animation_text\":\"none\",\"full_width\":\"stretch\",\"color_menu_item_active\":\"#16161d\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(2501,377,'_elementor_conditions','a:1:{i:0;s:15:\"include/general\";}'),(2650,302,'_elementor_css','a:5:{s:4:\"time\";i:1569100968;s:5:\"fonts\";a:1:{i:0;s:10:\"Montserrat\";}s:5:\"icons\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(2503,378,'_elementor_edit_mode','builder'),(2504,378,'_elementor_template_type','header'),(2505,378,'_elementor_version','2.6.8'),(2506,378,'_elementor_pro_version','2.6.5'),(2507,378,'_wp_page_template','default'),(2508,378,'_elementor_elements_usage','a:4:{s:5:\"image\";i:1;s:6:\"column\";i:2;s:8:\"nav-menu\";i:1;s:7:\"section\";i:1;}'),(2509,378,'_elementor_data','[{\"id\":\"1a53ad6a\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1200\",\"sizes\":[]},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"z_index\":\"10\",\"_title\":\"Header\",\"structure\":\"22\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"background_color_b\":\"#00f2ff\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":\"130\",\"sizes\":[]},\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"10\",\"blur\":\"20\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0.1)\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-90\",\"left\":0,\"isLinked\":\"\"},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"layout\":\"full_width\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[{\"id\":\"741ea2d1\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"content_position\":\"center\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"_inline_size\":64.332,\"_inline_size_tablet\":65,\"_inline_size_mobile\":85,\"_title\":\"Logo Column\",\"align\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1a4bfff8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":18,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/a.png\"},\"align\":\"left\",\"align_mobile\":\"left\",\"width\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":1000,\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":275,\"sizes\":[]},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/edu.elementor.com\\/ekit\\/digital-agency-home\",\"is_external\":\"\",\"nofollow\":\"\"},\"__dynamic__\":{\"link\":\"[elementor-tag id=\\\"52081e4\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"60\"},\"image_size\":\"full\",\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"space_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":\"\"},{\"id\":\"385d0e0a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"content_position\":\"center\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_inline_size\":35,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":35,\"_inline_size_mobile\":15,\"_title\":\"Menu Column\"},\"elements\":[{\"id\":\"2bc4e941\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"right\",\"animation_line\":\"drop-out\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"menu_typography_font_weight\":\"300\",\"color_menu_item\":\"#16161d\",\"color_menu_item_hover\":\"#16161d\",\"pointer_color_menu_item_hover\":\"#ffffff\",\"pointer_color_menu_item_active\":\"#ffffff\",\"pointer_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":\"35\",\"sizes\":[]},\"menu_space_between\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"text_align\":\"center\",\"toggle_align\":\"right\",\"color_dropdown_item\":\"#3d4459\",\"background_color_dropdown_item\":\"#ffffff\",\"color_dropdown_item_hover\":\"#4632da\",\"background_color_dropdown_item_hover\":\"#ffffff\",\"color_dropdown_item_active\":\"#4632da\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_family\":\"Montserrat\",\"dropdown_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"dropdown_box_shadow_box_shadow_type\":\"yes\",\"dropdown_box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"2\",\"blur\":\"15\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0.1)\"},\"padding_vertical_dropdown_item_tablet\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"dropdown_divider_border\":\"solid\",\"dropdown_divider_color\":\"#efefef\",\"dropdown_divider_width\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"dropdown_top_distance_tablet\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"dropdown_top_distance_mobile\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"toggle_color\":\"#16161d\",\"toggle_background_color\":\"rgba(255,255,255,0)\",\"toggle_color_hover\":\"#ee7624\",\"toggle_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_horizontal_dropdown_item\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"padding_vertical_dropdown_item\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"dropdown_top_distance\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"indicator\":\"chevron\",\"menu\":\"main-menu\",\"pointer\":\"text\",\"animation_text\":\"none\",\"full_width\":\"stretch\",\"color_menu_item_active\":\"#16161d\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(2510,378,'_elementor_conditions','a:1:{i:0;s:15:\"include/general\";}'),(2511,378,'_elementor_css','a:5:{s:4:\"time\";i:1569092740;s:5:\"fonts\";a:1:{i:0;s:10:\"Montserrat\";}s:5:\"icons\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(2513,379,'_elementor_edit_mode','builder'),(2514,379,'_elementor_template_type','header'),(2515,379,'_elementor_version','2.6.8'),(2516,379,'_elementor_pro_version','2.6.5'),(2517,379,'_wp_page_template','default'),(2518,379,'_elementor_elements_usage','a:4:{s:5:\"image\";i:1;s:6:\"column\";i:2;s:8:\"nav-menu\";i:1;s:7:\"section\";i:1;}'),(2519,379,'_elementor_data','[{\"id\":\"1a53ad6a\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1200\",\"sizes\":[]},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"z_index\":\"10\",\"_title\":\"Header\",\"structure\":\"22\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"background_color_b\":\"#00f2ff\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":\"130\",\"sizes\":[]},\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"10\",\"blur\":\"20\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0.1)\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-90\",\"left\":0,\"isLinked\":\"\"},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"layout\":\"full_width\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[{\"id\":\"741ea2d1\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"content_position\":\"center\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"_inline_size\":64.332,\"_inline_size_tablet\":65,\"_inline_size_mobile\":85,\"_title\":\"Logo Column\",\"align\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1a4bfff8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":18,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/a.png\"},\"align\":\"left\",\"align_mobile\":\"left\",\"width\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":1000,\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":275,\"sizes\":[]},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/edu.elementor.com\\/ekit\\/digital-agency-home\",\"is_external\":\"\",\"nofollow\":\"\"},\"__dynamic__\":{\"link\":\"[elementor-tag id=\\\"52081e4\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"60\"},\"image_size\":\"full\",\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"space_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":\"\"},{\"id\":\"385d0e0a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"content_position\":\"center\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_inline_size\":35,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":35,\"_inline_size_mobile\":15,\"_title\":\"Menu Column\"},\"elements\":[{\"id\":\"2bc4e941\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"right\",\"animation_line\":\"drop-out\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"menu_typography_font_weight\":\"300\",\"color_menu_item\":\"#6ec1e4\",\"color_menu_item_hover\":\"#16161d\",\"pointer_color_menu_item_hover\":\"#ffffff\",\"pointer_color_menu_item_active\":\"#ffffff\",\"pointer_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":\"35\",\"sizes\":[]},\"menu_space_between\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"text_align\":\"center\",\"toggle_align\":\"right\",\"color_dropdown_item\":\"#3d4459\",\"background_color_dropdown_item\":\"#ffffff\",\"color_dropdown_item_hover\":\"#4632da\",\"background_color_dropdown_item_hover\":\"#ffffff\",\"color_dropdown_item_active\":\"#4632da\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_family\":\"Montserrat\",\"dropdown_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"dropdown_box_shadow_box_shadow_type\":\"yes\",\"dropdown_box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"2\",\"blur\":\"15\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0.1)\"},\"padding_vertical_dropdown_item_tablet\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"dropdown_divider_border\":\"solid\",\"dropdown_divider_color\":\"#efefef\",\"dropdown_divider_width\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"dropdown_top_distance_tablet\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"dropdown_top_distance_mobile\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"toggle_color\":\"#16161d\",\"toggle_background_color\":\"rgba(255,255,255,0)\",\"toggle_color_hover\":\"#ee7624\",\"toggle_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_horizontal_dropdown_item\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"padding_vertical_dropdown_item\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"dropdown_top_distance\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"indicator\":\"chevron\",\"menu\":\"main-menu\",\"pointer\":\"text\",\"animation_text\":\"none\",\"full_width\":\"stretch\",\"color_menu_item_active\":\"#16161d\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(2520,379,'_elementor_conditions','a:1:{i:0;s:15:\"include/general\";}'),(2521,379,'_elementor_css','a:5:{s:4:\"time\";i:1569092961;s:5:\"fonts\";a:1:{i:0;s:10:\"Montserrat\";}s:5:\"icons\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(2523,380,'_elementor_edit_mode','builder'),(2524,380,'_elementor_template_type','header'),(2525,380,'_elementor_version','2.6.8'),(2526,380,'_elementor_pro_version','2.6.5'),(2527,380,'_wp_page_template','default'),(2528,380,'_elementor_elements_usage','a:4:{s:5:\"image\";i:1;s:6:\"column\";i:2;s:8:\"nav-menu\";i:1;s:7:\"section\";i:1;}'),(2529,380,'_elementor_data','[{\"id\":\"1a53ad6a\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1200\",\"sizes\":[]},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"z_index\":\"10\",\"_title\":\"Header\",\"structure\":\"22\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"background_color_b\":\"#00f2ff\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":\"130\",\"sizes\":[]},\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"10\",\"blur\":\"20\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0.1)\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-90\",\"left\":0,\"isLinked\":\"\"},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"layout\":\"full_width\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[{\"id\":\"741ea2d1\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"content_position\":\"center\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"_inline_size\":64.332,\"_inline_size_tablet\":65,\"_inline_size_mobile\":85,\"_title\":\"Logo Column\",\"align\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1a4bfff8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":18,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/a.png\"},\"align\":\"left\",\"align_mobile\":\"left\",\"width\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":1000,\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":275,\"sizes\":[]},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/edu.elementor.com\\/ekit\\/digital-agency-home\",\"is_external\":\"\",\"nofollow\":\"\"},\"__dynamic__\":{\"link\":\"[elementor-tag id=\\\"52081e4\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"60\"},\"image_size\":\"full\",\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"space_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":\"\"},{\"id\":\"385d0e0a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"content_position\":\"center\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_inline_size\":35,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":35,\"_inline_size_mobile\":15,\"_title\":\"Menu Column\"},\"elements\":[{\"id\":\"2bc4e941\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"right\",\"animation_line\":\"drop-out\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"menu_typography_font_weight\":\"300\",\"color_menu_item\":\"#16161d\",\"color_menu_item_hover\":\"#16161d\",\"pointer_color_menu_item_hover\":\"#ffffff\",\"pointer_color_menu_item_active\":\"#ffffff\",\"pointer_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":\"35\",\"sizes\":[]},\"menu_space_between\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"text_align\":\"center\",\"toggle_align\":\"right\",\"color_dropdown_item\":\"#3d4459\",\"background_color_dropdown_item\":\"#ffffff\",\"color_dropdown_item_hover\":\"#4632da\",\"background_color_dropdown_item_hover\":\"#ffffff\",\"color_dropdown_item_active\":\"#4632da\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_family\":\"Montserrat\",\"dropdown_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"dropdown_box_shadow_box_shadow_type\":\"yes\",\"dropdown_box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"2\",\"blur\":\"15\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0.1)\"},\"padding_vertical_dropdown_item_tablet\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"dropdown_divider_border\":\"solid\",\"dropdown_divider_color\":\"#efefef\",\"dropdown_divider_width\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"dropdown_top_distance_tablet\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"dropdown_top_distance_mobile\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"toggle_color\":\"#16161d\",\"toggle_background_color\":\"rgba(255,255,255,0)\",\"toggle_color_hover\":\"#ee7624\",\"toggle_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_horizontal_dropdown_item\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"padding_vertical_dropdown_item\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"dropdown_top_distance\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"indicator\":\"chevron\",\"menu\":\"main-menu\",\"pointer\":\"text\",\"animation_text\":\"none\",\"full_width\":\"stretch\",\"color_menu_item_active\":\"#16161d\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(2530,380,'_elementor_conditions','a:1:{i:0;s:15:\"include/general\";}'),(2531,380,'_elementor_css','a:5:{s:4:\"time\";i:1569093160;s:5:\"fonts\";a:1:{i:0;s:10:\"Montserrat\";}s:5:\"icons\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(2533,381,'_elementor_edit_mode','builder'),(2534,381,'_elementor_template_type','header'),(2535,381,'_elementor_version','2.6.8'),(2536,381,'_elementor_pro_version','2.6.5'),(2537,381,'_wp_page_template','default'),(2538,381,'_elementor_elements_usage','a:4:{s:5:\"image\";i:1;s:6:\"column\";i:2;s:8:\"nav-menu\";i:1;s:7:\"section\";i:1;}'),(2539,381,'_elementor_data','[{\"id\":\"1a53ad6a\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1200\",\"sizes\":[]},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"z_index\":\"10\",\"_title\":\"Header\",\"structure\":\"22\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"background_color_b\":\"#00f2ff\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":\"130\",\"sizes\":[]},\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"10\",\"blur\":\"20\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0.1)\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-90\",\"left\":0,\"isLinked\":\"\"},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"layout\":\"full_width\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[{\"id\":\"741ea2d1\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"content_position\":\"center\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"_inline_size\":64.332,\"_inline_size_tablet\":65,\"_inline_size_mobile\":85,\"_title\":\"Logo Column\",\"align\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1a4bfff8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":18,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/a.png\"},\"align\":\"left\",\"align_mobile\":\"left\",\"width\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":1000,\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":275,\"sizes\":[]},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/edu.elementor.com\\/ekit\\/digital-agency-home\",\"is_external\":\"\",\"nofollow\":\"\"},\"__dynamic__\":{\"link\":\"[elementor-tag id=\\\"52081e4\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"60\"},\"image_size\":\"full\",\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"space_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":\"\"},{\"id\":\"385d0e0a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"content_position\":\"center\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_inline_size\":35,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":35,\"_inline_size_mobile\":15,\"_title\":\"Menu Column\"},\"elements\":[{\"id\":\"2bc4e941\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"right\",\"animation_line\":\"drop-out\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"menu_typography_font_weight\":\"300\",\"color_menu_item\":\"#edd3b1\",\"color_menu_item_hover\":\"#23a455\",\"pointer_color_menu_item_hover\":\"#ffffff\",\"pointer_color_menu_item_active\":\"#ffffff\",\"pointer_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":\"35\",\"sizes\":[]},\"menu_space_between\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"text_align\":\"center\",\"toggle_align\":\"right\",\"color_dropdown_item\":\"#3d4459\",\"background_color_dropdown_item\":\"#ffffff\",\"color_dropdown_item_hover\":\"#4632da\",\"background_color_dropdown_item_hover\":\"#ffffff\",\"color_dropdown_item_active\":\"#4632da\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_family\":\"Montserrat\",\"dropdown_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"dropdown_box_shadow_box_shadow_type\":\"yes\",\"dropdown_box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"2\",\"blur\":\"15\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0.1)\"},\"padding_vertical_dropdown_item_tablet\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"dropdown_divider_border\":\"solid\",\"dropdown_divider_color\":\"#efefef\",\"dropdown_divider_width\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"dropdown_top_distance_tablet\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"dropdown_top_distance_mobile\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"toggle_color\":\"#16161d\",\"toggle_background_color\":\"rgba(255,255,255,0)\",\"toggle_color_hover\":\"#ee7624\",\"toggle_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_horizontal_dropdown_item\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"padding_vertical_dropdown_item\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"dropdown_top_distance\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"indicator\":\"chevron\",\"menu\":\"main-menu\",\"pointer\":\"text\",\"animation_text\":\"none\",\"full_width\":\"stretch\",\"color_menu_item_active\":\"#b4b1ed\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(2540,381,'_elementor_conditions','a:1:{i:0;s:15:\"include/general\";}'),(2541,381,'_elementor_css','a:5:{s:4:\"time\";i:1569093194;s:5:\"fonts\";a:1:{i:0;s:10:\"Montserrat\";}s:5:\"icons\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(2543,382,'_elementor_edit_mode','builder'),(2544,382,'_elementor_template_type','header'),(2545,382,'_elementor_version','2.6.8'),(2546,382,'_elementor_pro_version','2.6.5'),(2547,382,'_wp_page_template','default'),(2548,382,'_elementor_elements_usage','a:4:{s:5:\"image\";i:1;s:6:\"column\";i:2;s:8:\"nav-menu\";i:1;s:7:\"section\";i:1;}'),(2549,382,'_elementor_data','[{\"id\":\"1a53ad6a\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1200\",\"sizes\":[]},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"z_index\":\"10\",\"_title\":\"Header\",\"structure\":\"22\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"background_color_b\":\"#00f2ff\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":\"130\",\"sizes\":[]},\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"10\",\"blur\":\"20\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0.1)\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-90\",\"left\":0,\"isLinked\":\"\"},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"layout\":\"full_width\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[{\"id\":\"741ea2d1\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"content_position\":\"center\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"_inline_size\":64.332,\"_inline_size_tablet\":65,\"_inline_size_mobile\":85,\"_title\":\"Logo Column\",\"align\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1a4bfff8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":18,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/a.png\"},\"align\":\"left\",\"align_mobile\":\"left\",\"width\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":1000,\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":275,\"sizes\":[]},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/edu.elementor.com\\/ekit\\/digital-agency-home\",\"is_external\":\"\",\"nofollow\":\"\"},\"__dynamic__\":{\"link\":\"[elementor-tag id=\\\"52081e4\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"60\"},\"image_size\":\"full\",\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"space_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":\"\"},{\"id\":\"385d0e0a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"content_position\":\"center\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_inline_size\":35,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":35,\"_inline_size_mobile\":15,\"_title\":\"Menu Column\"},\"elements\":[{\"id\":\"2bc4e941\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"right\",\"animation_line\":\"drop-out\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"menu_typography_font_weight\":\"300\",\"color_menu_item\":\"#16161d\",\"color_menu_item_hover\":\"#16161d\",\"pointer_color_menu_item_hover\":\"#ffffff\",\"pointer_color_menu_item_active\":\"#ffffff\",\"pointer_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":\"35\",\"sizes\":[]},\"menu_space_between\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"text_align\":\"center\",\"toggle_align\":\"right\",\"color_dropdown_item\":\"#3d4459\",\"background_color_dropdown_item\":\"#ffffff\",\"color_dropdown_item_hover\":\"#4632da\",\"background_color_dropdown_item_hover\":\"#ffffff\",\"color_dropdown_item_active\":\"#4632da\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_family\":\"Montserrat\",\"dropdown_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"dropdown_box_shadow_box_shadow_type\":\"yes\",\"dropdown_box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"2\",\"blur\":\"15\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0.1)\"},\"padding_vertical_dropdown_item_tablet\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"dropdown_divider_border\":\"solid\",\"dropdown_divider_color\":\"#efefef\",\"dropdown_divider_width\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"dropdown_top_distance_tablet\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"dropdown_top_distance_mobile\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"toggle_color\":\"#16161d\",\"toggle_background_color\":\"rgba(255,255,255,0)\",\"toggle_color_hover\":\"#ee7624\",\"toggle_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_horizontal_dropdown_item\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"padding_vertical_dropdown_item\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"dropdown_top_distance\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"indicator\":\"chevron\",\"menu\":\"main-menu\",\"pointer\":\"text\",\"animation_text\":\"none\",\"full_width\":\"stretch\",\"color_menu_item_active\":\"#16161d\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(2550,382,'_elementor_conditions','a:1:{i:0;s:15:\"include/general\";}'),(2551,382,'_elementor_css','a:5:{s:4:\"time\";i:1569093228;s:5:\"fonts\";a:1:{i:0;s:10:\"Montserrat\";}s:5:\"icons\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(2554,383,'_elementor_template_type','header'),(2555,383,'_elementor_version','2.6.8'),(2556,383,'_elementor_pro_version','2.6.5'),(2557,383,'_wp_page_template','default'),(2558,383,'_elementor_elements_usage','a:4:{s:5:\"image\";i:1;s:6:\"column\";i:2;s:8:\"nav-menu\";i:1;s:7:\"section\";i:1;}'),(2559,383,'_elementor_data','[{\"id\":\"1a53ad6a\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1200\",\"sizes\":[]},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"z_index\":\"10\",\"_title\":\"Header\",\"structure\":\"22\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"background_color_b\":\"#00f2ff\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":\"130\",\"sizes\":[]},\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"10\",\"blur\":\"20\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0.1)\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-90\",\"left\":0,\"isLinked\":\"\"},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"layout\":\"full_width\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[{\"id\":\"741ea2d1\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"content_position\":\"center\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"_inline_size\":64.332,\"_inline_size_tablet\":65,\"_inline_size_mobile\":85,\"_title\":\"Logo Column\",\"align\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1a4bfff8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":18,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/a.png\"},\"align\":\"left\",\"align_mobile\":\"left\",\"width\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":1000,\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":275,\"sizes\":[]},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/edu.elementor.com\\/ekit\\/digital-agency-home\",\"is_external\":\"\",\"nofollow\":\"\"},\"__dynamic__\":{\"link\":\"[elementor-tag id=\\\"52081e4\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"60\"},\"image_size\":\"full\",\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"space_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":\"\"},{\"id\":\"385d0e0a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"content_position\":\"center\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_inline_size\":35,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":35,\"_inline_size_mobile\":15,\"_title\":\"Menu Column\"},\"elements\":[{\"id\":\"2bc4e941\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"right\",\"animation_line\":\"drop-out\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"menu_typography_font_weight\":\"300\",\"color_menu_item\":\"#16161d\",\"color_menu_item_hover\":\"#16161d\",\"pointer_color_menu_item_hover\":\"#ffffff\",\"pointer_color_menu_item_active\":\"#ffffff\",\"pointer_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":\"35\",\"sizes\":[]},\"menu_space_between\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"text_align\":\"center\",\"toggle_align\":\"right\",\"color_dropdown_item\":\"#3d4459\",\"background_color_dropdown_item\":\"#ffffff\",\"color_dropdown_item_hover\":\"#4632da\",\"background_color_dropdown_item_hover\":\"#ffffff\",\"color_dropdown_item_active\":\"#4632da\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_family\":\"Montserrat\",\"dropdown_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"dropdown_box_shadow_box_shadow_type\":\"yes\",\"dropdown_box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"2\",\"blur\":\"15\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0.1)\"},\"padding_vertical_dropdown_item_tablet\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"dropdown_divider_border\":\"solid\",\"dropdown_divider_color\":\"#efefef\",\"dropdown_divider_width\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"dropdown_top_distance_tablet\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"dropdown_top_distance_mobile\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"toggle_color\":\"#16161d\",\"toggle_background_color\":\"rgba(255,255,255,0)\",\"toggle_color_hover\":\"#ee7624\",\"toggle_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_horizontal_dropdown_item\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"padding_vertical_dropdown_item\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"dropdown_top_distance\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"indicator\":\"chevron\",\"menu\":\"main-menu\",\"pointer\":\"text\",\"animation_text\":\"none\",\"full_width\":\"stretch\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(2560,383,'_elementor_conditions','a:1:{i:0;s:15:\"include/general\";}'),(2561,383,'_elementor_css','a:5:{s:4:\"time\";i:1569093275;s:5:\"fonts\";a:1:{i:0;s:10:\"Montserrat\";}s:5:\"icons\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(2563,384,'_elementor_edit_mode','builder'),(2564,384,'_elementor_template_type','header'),(2565,384,'_elementor_version','2.6.8'),(2566,384,'_elementor_pro_version','2.6.5'),(2567,384,'_wp_page_template','default'),(2568,384,'_elementor_elements_usage','a:4:{s:5:\"image\";i:1;s:6:\"column\";i:2;s:8:\"nav-menu\";i:1;s:7:\"section\";i:1;}'),(2569,384,'_elementor_data','[{\"id\":\"1a53ad6a\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1200\",\"sizes\":[]},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"z_index\":\"10\",\"_title\":\"Header\",\"structure\":\"22\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"background_color_b\":\"#00f2ff\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":\"130\",\"sizes\":[]},\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"10\",\"blur\":\"20\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0.1)\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-90\",\"left\":0,\"isLinked\":\"\"},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"layout\":\"full_width\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[{\"id\":\"741ea2d1\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"content_position\":\"center\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"_inline_size\":64.332,\"_inline_size_tablet\":65,\"_inline_size_mobile\":85,\"_title\":\"Logo Column\",\"align\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1a4bfff8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":18,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/a.png\"},\"align\":\"left\",\"align_mobile\":\"left\",\"width\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":1000,\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":275,\"sizes\":[]},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/edu.elementor.com\\/ekit\\/digital-agency-home\",\"is_external\":\"\",\"nofollow\":\"\"},\"__dynamic__\":{\"link\":\"[elementor-tag id=\\\"52081e4\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"60\"},\"image_size\":\"full\",\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"space_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":\"\"},{\"id\":\"385d0e0a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"content_position\":\"center\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_inline_size\":35,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":35,\"_inline_size_mobile\":15,\"_title\":\"Menu Column\"},\"elements\":[{\"id\":\"2bc4e941\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"right\",\"animation_line\":\"drop-out\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"menu_typography_font_weight\":\"300\",\"color_menu_item\":\"#16161d\",\"color_menu_item_hover\":\"#e7edb1\",\"pointer_color_menu_item_hover\":\"#ffffff\",\"pointer_color_menu_item_active\":\"#ffffff\",\"pointer_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":\"35\",\"sizes\":[]},\"menu_space_between\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"text_align\":\"center\",\"toggle_align\":\"right\",\"color_dropdown_item\":\"#3d4459\",\"background_color_dropdown_item\":\"#ffffff\",\"color_dropdown_item_hover\":\"#4632da\",\"background_color_dropdown_item_hover\":\"#ffffff\",\"color_dropdown_item_active\":\"#4632da\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_family\":\"Montserrat\",\"dropdown_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"dropdown_box_shadow_box_shadow_type\":\"yes\",\"dropdown_box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"2\",\"blur\":\"15\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0.1)\"},\"padding_vertical_dropdown_item_tablet\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"dropdown_divider_border\":\"solid\",\"dropdown_divider_color\":\"#efefef\",\"dropdown_divider_width\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"dropdown_top_distance_tablet\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"dropdown_top_distance_mobile\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"toggle_color\":\"#16161d\",\"toggle_background_color\":\"rgba(255,255,255,0)\",\"toggle_color_hover\":\"#ee7624\",\"toggle_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_horizontal_dropdown_item\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"padding_vertical_dropdown_item\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"dropdown_top_distance\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"indicator\":\"chevron\",\"menu\":\"main-menu\",\"pointer\":\"text\",\"animation_text\":\"none\",\"full_width\":\"stretch\",\"color_menu_item_active\":\"#b8b1ed\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(2570,384,'_elementor_conditions','a:1:{i:0;s:15:\"include/general\";}'),(2571,384,'_elementor_css','a:5:{s:4:\"time\";i:1569093297;s:5:\"fonts\";a:1:{i:0;s:10:\"Montserrat\";}s:5:\"icons\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(2573,385,'_elementor_edit_mode','builder'),(2574,385,'_elementor_template_type','header'),(2575,385,'_elementor_version','2.6.8'),(2576,385,'_elementor_pro_version','2.6.5'),(2577,385,'_wp_page_template','default'),(2578,385,'_elementor_elements_usage','a:4:{s:5:\"image\";i:1;s:6:\"column\";i:2;s:8:\"nav-menu\";i:1;s:7:\"section\";i:1;}'),(2579,385,'_elementor_data','[{\"id\":\"1a53ad6a\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1200\",\"sizes\":[]},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"z_index\":\"10\",\"_title\":\"Header\",\"structure\":\"22\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"background_color_b\":\"#00f2ff\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":\"130\",\"sizes\":[]},\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"10\",\"blur\":\"20\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0.1)\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-90\",\"left\":0,\"isLinked\":\"\"},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"layout\":\"full_width\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[{\"id\":\"741ea2d1\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"content_position\":\"center\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"_inline_size\":64.332,\"_inline_size_tablet\":65,\"_inline_size_mobile\":85,\"_title\":\"Logo Column\",\"align\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1a4bfff8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":18,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/a.png\"},\"align\":\"left\",\"align_mobile\":\"left\",\"width\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":1000,\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":275,\"sizes\":[]},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/edu.elementor.com\\/ekit\\/digital-agency-home\",\"is_external\":\"\",\"nofollow\":\"\"},\"__dynamic__\":{\"link\":\"[elementor-tag id=\\\"52081e4\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"60\"},\"image_size\":\"full\",\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"space_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":\"\"},{\"id\":\"385d0e0a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"content_position\":\"center\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_inline_size\":35,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":35,\"_inline_size_mobile\":15,\"_title\":\"Menu Column\"},\"elements\":[{\"id\":\"2bc4e941\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"right\",\"animation_line\":\"drop-out\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"menu_typography_font_weight\":\"300\",\"color_menu_item\":\"#16161d\",\"color_menu_item_hover\":\"#ffffff\",\"pointer_color_menu_item_hover\":\"#ffffff\",\"pointer_color_menu_item_active\":\"#ffffff\",\"pointer_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":\"35\",\"sizes\":[]},\"menu_space_between\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"text_align\":\"center\",\"toggle_align\":\"right\",\"color_dropdown_item\":\"#3d4459\",\"background_color_dropdown_item\":\"#ffffff\",\"color_dropdown_item_hover\":\"#4632da\",\"background_color_dropdown_item_hover\":\"#ffffff\",\"color_dropdown_item_active\":\"#4632da\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_family\":\"Montserrat\",\"dropdown_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"dropdown_box_shadow_box_shadow_type\":\"yes\",\"dropdown_box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"2\",\"blur\":\"15\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0.1)\"},\"padding_vertical_dropdown_item_tablet\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"dropdown_divider_border\":\"solid\",\"dropdown_divider_color\":\"#efefef\",\"dropdown_divider_width\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"dropdown_top_distance_tablet\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"dropdown_top_distance_mobile\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"toggle_color\":\"#16161d\",\"toggle_background_color\":\"rgba(255,255,255,0)\",\"toggle_color_hover\":\"#ee7624\",\"toggle_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_horizontal_dropdown_item\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"padding_vertical_dropdown_item\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"dropdown_top_distance\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"indicator\":\"chevron\",\"menu\":\"main-menu\",\"pointer\":\"text\",\"animation_text\":\"none\",\"full_width\":\"stretch\",\"color_menu_item_active\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(2580,385,'_elementor_conditions','a:1:{i:0;s:15:\"include/general\";}'),(2581,385,'_elementor_css','a:5:{s:4:\"time\";i:1569093484;s:5:\"fonts\";a:1:{i:0;s:10:\"Montserrat\";}s:5:\"icons\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(2583,386,'_elementor_edit_mode','builder'),(2584,386,'_elementor_template_type','header'),(2585,386,'_elementor_version','2.6.8'),(2586,386,'_elementor_pro_version','2.6.5'),(2587,386,'_wp_page_template','default'),(2588,386,'_elementor_elements_usage','a:4:{s:5:\"image\";i:1;s:6:\"column\";i:2;s:8:\"nav-menu\";i:1;s:7:\"section\";i:1;}'),(2589,386,'_elementor_data','[{\"id\":\"1a53ad6a\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1200\",\"sizes\":[]},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"z_index\":\"10\",\"_title\":\"Header\",\"structure\":\"22\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"background_color_b\":\"#00f2ff\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":\"130\",\"sizes\":[]},\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"10\",\"blur\":\"20\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0.1)\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-90\",\"left\":0,\"isLinked\":\"\"},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"layout\":\"full_width\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[{\"id\":\"741ea2d1\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"content_position\":\"center\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"_inline_size\":64.332,\"_inline_size_tablet\":65,\"_inline_size_mobile\":85,\"_title\":\"Logo Column\",\"align\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1a4bfff8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":18,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/a.png\"},\"align\":\"left\",\"align_mobile\":\"left\",\"width\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":1000,\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":275,\"sizes\":[]},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/edu.elementor.com\\/ekit\\/digital-agency-home\",\"is_external\":\"\",\"nofollow\":\"\"},\"__dynamic__\":{\"link\":\"[elementor-tag id=\\\"52081e4\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"60\"},\"image_size\":\"full\",\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"space_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":\"\"},{\"id\":\"385d0e0a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"content_position\":\"center\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_inline_size\":35,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":35,\"_inline_size_mobile\":15,\"_title\":\"Menu Column\"},\"elements\":[{\"id\":\"2bc4e941\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"right\",\"animation_line\":\"drop-out\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"menu_typography_font_weight\":\"300\",\"color_menu_item\":\"#16161d\",\"color_menu_item_hover\":\"#ee7624\",\"pointer_color_menu_item_hover\":\"#ffffff\",\"pointer_color_menu_item_active\":\"#ffffff\",\"pointer_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":\"35\",\"sizes\":[]},\"menu_space_between\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"text_align\":\"center\",\"toggle_align\":\"right\",\"color_dropdown_item\":\"#3d4459\",\"background_color_dropdown_item\":\"#ffffff\",\"color_dropdown_item_hover\":\"#4632da\",\"background_color_dropdown_item_hover\":\"#ffffff\",\"color_dropdown_item_active\":\"#4632da\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_family\":\"Montserrat\",\"dropdown_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"dropdown_box_shadow_box_shadow_type\":\"yes\",\"dropdown_box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"2\",\"blur\":\"15\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0.1)\"},\"padding_vertical_dropdown_item_tablet\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"dropdown_divider_border\":\"solid\",\"dropdown_divider_color\":\"#efefef\",\"dropdown_divider_width\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"dropdown_top_distance_tablet\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"dropdown_top_distance_mobile\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"toggle_color\":\"#16161d\",\"toggle_background_color\":\"rgba(255,255,255,0)\",\"toggle_color_hover\":\"#ee7624\",\"toggle_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_horizontal_dropdown_item\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"padding_vertical_dropdown_item\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"dropdown_top_distance\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"indicator\":\"chevron\",\"menu\":\"main-menu\",\"pointer\":\"text\",\"animation_text\":\"none\",\"full_width\":\"stretch\",\"color_menu_item_active\":\"#ee7624\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(2590,386,'_elementor_conditions','a:1:{i:0;s:15:\"include/general\";}'),(2591,386,'_elementor_css','a:5:{s:4:\"time\";i:1569093643;s:5:\"fonts\";a:1:{i:0;s:10:\"Montserrat\";}s:5:\"icons\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(2593,387,'_edit_lock','1569095620:1'),(2594,387,'_customize_restore_dismissed','1'),(2595,388,'_wp_trash_meta_status','publish'),(2596,388,'_wp_trash_meta_time','1569095929'),(2597,389,'_edit_lock','1569098360:1'),(2598,389,'_wp_trash_meta_status','publish'),(2599,389,'_wp_trash_meta_time','1569098370'),(2600,391,'_wp_trash_meta_status','publish'),(2601,391,'_wp_trash_meta_time','1569098453'),(2602,393,'_elementor_template_type','post'),(2603,393,'_elementor_version','2.6.8'),(2604,393,'_elementor_pro_version','2.6.5'),(2605,393,'_wp_page_template','default'),(2606,393,'_elementor_data','[{\"id\":\"55396f27\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":50,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Theatrical_Display_V003C.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_range\":\"viewport\",\"layout\":\"full_width\",\"column_position\":\"top\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"905a97c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ad7f3f6\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"162\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2489c07\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"c0bbe21\",\"elType\":\"widget\",\"settings\":{\"title\":\"#WHAT\'S COOL\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"dc881ae\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"18630a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"870a9ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"INNOVATIONS FROM ONDISPLAY CREATIVE\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7df48509\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\"},\"elements\":[{\"id\":\"1147078d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"23bbc68\",\"elType\":\"widget\",\"settings\":{\"title\":\"LIVING STANDEES HAUNTING THEATERS\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b40d155\",\"elType\":\"widget\",\"settings\":{\"title\":\"ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"700\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86cff8b\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"225341d\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS \\u2013 THE LAST KEY\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a680ae8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"be59fa3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e36fe5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"d4d2039\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2.jpg\",\"id\":88},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3c9b758\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"79e122a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2-1.jpg\",\"id\":87},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3dc9df5\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"start\":0},\"elements\":[],\"widgetType\":\"video\"},{\"id\":\"b61a90b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"8f63560\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"08c588a\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS CHAPTER 3\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0e612c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>OnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7e77f5a\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"gap\":\"wide\"},\"elements\":[{\"id\":\"7eb5a21\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.332},\"elements\":[{\"id\":\"ae25867\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/image-asset.jpeg\",\"id\":196},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"24c773b\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":58},\"elements\":[{\"id\":\"93ad602\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/130807026\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"236bdcf\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\"},\"elements\":[{\"id\":\"8a0b6da\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"e28765e\",\"elType\":\"widget\",\"settings\":{\"title\":\"VIRTUAL REALITY EXPERIENCE\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4d0f48c\",\"elType\":\"widget\",\"settings\":{\"title\":\"SOMETHING SOMETHING SOMETHING\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"700\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5a6ec50\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"93d4126\",\"elType\":\"widget\",\"settings\":{\"title\":\"SPIDER-MAN HOMECOMING DISPLAY\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bccfc67\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Submerse yourself in the world of your friendly neighborhood Spider-Man in this fun and thrilling VR Theatrical Display.\\u00a0\\u00a0Based on the all-new 2017 film, the Spider-Man Homecoming VR Experience is a first-person look through the eyes of Spidey himself.<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f786650\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"ec1b52b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":76},\"elements\":[{\"id\":\"74ca310\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Spidey_Home_V4_002.jpg\",\"id\":230},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"css_filters_css_filter\":\"custom\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"265cdc0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":24},\"elements\":[{\"id\":\"35c3d80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/IMG_3834.jpg\",\"id\":231},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"677c7e5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/IMG_3788.jpg\",\"id\":233}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"c22aabe\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"9a54f1a\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b747fda\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":700},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":900},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7eab781\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"43661634\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our company is a collective of amazing people striving to build delightful products.\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.4},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70cc6d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.<\\/p>\",\"align\":\"center\",\"text_color\":\"#686868\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"615dfb3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1000},\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"6414755f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3bb26eed\",\"elType\":\"widget\",\"settings\":{\"text\":\"Read More\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3},\"button_text_color\":\"#ffffff\",\"background_color\":\"rgba(0,0,0,0)\",\"hover_color\":\"#00ce1b\",\"button_hover_border_color\":\"#00ce1b\",\"hover_animation\":\"grow\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"123f6d1\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"25fcf2e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"64f593f\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"596f429\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(2607,393,'_elementor_edit_mode','builder'),(2608,393,'_elementor_elements_usage','a:9:{s:7:\"heading\";i:10;s:6:\"column\";i:15;s:7:\"section\";i:12;s:7:\"divider\";i:4;s:11:\"text-editor\";i:4;s:5:\"image\";i:6;s:5:\"video\";i:2;s:6:\"spacer\";i:2;s:6:\"button\";i:1;}'),(2609,393,'_elementor_css','a:5:{s:4:\"time\";i:1569091433;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:1:{i:0;s:0:\"\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(2610,394,'_edit_lock','1569099237:1'),(2611,394,'_wp_trash_meta_status','publish'),(2612,394,'_wp_trash_meta_time','1569099273'),(2613,396,'_edit_lock','1569099366:1'),(2614,396,'_wp_trash_meta_status','publish'),(2615,396,'_wp_trash_meta_time','1569099400'),(2616,398,'_wp_trash_meta_status','publish'),(2617,398,'_wp_trash_meta_time','1569099543'),(2618,400,'_wp_trash_meta_status','publish'),(2619,400,'_wp_trash_meta_time','1569099715'),(2620,402,'_edit_lock','1569099906:1'),(2621,402,'_wp_trash_meta_status','publish'),(2622,402,'_wp_trash_meta_time','1569099923'),(2623,404,'_wp_trash_meta_status','publish'),(2624,404,'_wp_trash_meta_time','1569100051'),(2625,406,'_wp_trash_meta_status','publish'),(2626,406,'_wp_trash_meta_time','1569100081'),(2627,408,'_wp_trash_meta_status','publish'),(2628,408,'_wp_trash_meta_time','1569100367'),(2629,410,'_edit_lock','1569100472:1'),(2630,410,'_wp_trash_meta_status','publish'),(2631,410,'_wp_trash_meta_time','1569100479'),(2632,412,'_wp_trash_meta_status','publish'),(2633,412,'_wp_trash_meta_time','1569100654'),(2634,414,'_edit_lock','1569100772:1'),(2635,414,'_wp_trash_meta_status','publish'),(2636,414,'_wp_trash_meta_time','1569100778'),(2637,416,'_wp_trash_meta_status','publish'),(2638,416,'_wp_trash_meta_time','1569100811'),(2639,418,'_wp_trash_meta_status','publish'),(2640,418,'_wp_trash_meta_time','1569100826'),(2641,420,'_elementor_edit_mode','builder'),(2642,420,'_elementor_template_type','header'),(2643,420,'_elementor_version','2.6.8'),(2644,420,'_elementor_pro_version','2.6.5'),(2645,420,'_wp_page_template','default'),(2646,420,'_elementor_elements_usage','a:4:{s:5:\"image\";i:1;s:6:\"column\";i:2;s:8:\"nav-menu\";i:1;s:7:\"section\";i:1;}'),(2647,420,'_elementor_data','[{\"id\":\"1a53ad6a\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1200\",\"sizes\":[]},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"z_index\":\"10\",\"_title\":\"Header\",\"structure\":\"22\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"background_color_b\":\"#00f2ff\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":\"130\",\"sizes\":[]},\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"10\",\"blur\":\"20\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0.1)\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-90\",\"left\":0,\"isLinked\":\"\"},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"layout\":\"full_width\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[{\"id\":\"741ea2d1\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"content_position\":\"center\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"_inline_size\":64.332,\"_inline_size_tablet\":65,\"_inline_size_mobile\":85,\"_title\":\"Logo Column\",\"align\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1a4bfff8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":18,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/a.png\"},\"align\":\"left\",\"align_mobile\":\"left\",\"width\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":275,\"sizes\":[]},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/edu.elementor.com\\/ekit\\/digital-agency-home\",\"is_external\":\"\",\"nofollow\":\"\"},\"__dynamic__\":{\"link\":\"[elementor-tag id=\\\"52081e4\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"60\"},\"image_size\":\"full\",\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"space_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":\"\"},{\"id\":\"385d0e0a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"content_position\":\"center\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_inline_size\":35,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":35,\"_inline_size_mobile\":15,\"_title\":\"Menu Column\"},\"elements\":[{\"id\":\"2bc4e941\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"right\",\"animation_line\":\"drop-out\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"menu_typography_font_weight\":\"300\",\"color_menu_item\":\"#16161d\",\"color_menu_item_hover\":\"#ee7624\",\"pointer_color_menu_item_hover\":\"#ffffff\",\"pointer_color_menu_item_active\":\"#ffffff\",\"pointer_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":\"35\",\"sizes\":[]},\"menu_space_between\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"text_align\":\"center\",\"toggle_align\":\"right\",\"color_dropdown_item\":\"#3d4459\",\"background_color_dropdown_item\":\"#ffffff\",\"color_dropdown_item_hover\":\"#4632da\",\"background_color_dropdown_item_hover\":\"#ffffff\",\"color_dropdown_item_active\":\"#4632da\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_family\":\"Montserrat\",\"dropdown_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"dropdown_box_shadow_box_shadow_type\":\"yes\",\"dropdown_box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"2\",\"blur\":\"15\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0.1)\"},\"padding_vertical_dropdown_item_tablet\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"dropdown_divider_border\":\"solid\",\"dropdown_divider_color\":\"#efefef\",\"dropdown_divider_width\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"dropdown_top_distance_tablet\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"dropdown_top_distance_mobile\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"toggle_color\":\"#16161d\",\"toggle_background_color\":\"rgba(255,255,255,0)\",\"toggle_color_hover\":\"#ee7624\",\"toggle_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_horizontal_dropdown_item\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"padding_vertical_dropdown_item\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"dropdown_top_distance\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"indicator\":\"chevron\",\"menu\":\"main-menu\",\"pointer\":\"text\",\"animation_text\":\"none\",\"full_width\":\"stretch\",\"color_menu_item_active\":\"#ee7624\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(2648,420,'_elementor_conditions','a:1:{i:0;s:15:\"include/general\";}'),(2649,420,'_elementor_css','a:5:{s:4:\"time\";i:1569093750;s:5:\"fonts\";a:1:{i:0;s:10:\"Montserrat\";}s:5:\"icons\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(2651,421,'_elementor_template_type','post'),(2652,421,'_elementor_version','2.6.8'),(2653,421,'_elementor_pro_version','2.6.5'),(2654,421,'_wp_page_template','default'),(2655,421,'_elementor_data','[{\"id\":\"55396f27\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":50,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Theatrical_Display_V003C.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_range\":\"viewport\",\"layout\":\"full_width\",\"column_position\":\"top\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"905a97c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ad7f3f6\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"162\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2489c07\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"c0bbe21\",\"elType\":\"widget\",\"settings\":{\"title\":\"#WHAT\'S COOL\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"dc881ae\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"18630a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"870a9ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"INNOVATIONS FROM ONDISPLAY CREATIVE\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7df48509\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\"},\"elements\":[{\"id\":\"1147078d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"23bbc68\",\"elType\":\"widget\",\"settings\":{\"title\":\"LIVING STANDEES HAUNTING THEATERS\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b40d155\",\"elType\":\"widget\",\"settings\":{\"title\":\"ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"700\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86cff8b\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"225341d\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS \\u2013 THE LAST KEY\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a680ae8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"be59fa3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e36fe5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"d4d2039\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2.jpg\",\"id\":88},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3c9b758\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"79e122a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2-1.jpg\",\"id\":87},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3dc9df5\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"start\":0},\"elements\":[],\"widgetType\":\"video\"},{\"id\":\"b61a90b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"8f63560\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"08c588a\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS CHAPTER 3\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0e612c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>OnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7e77f5a\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"gap\":\"wide\"},\"elements\":[{\"id\":\"7eb5a21\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.332},\"elements\":[{\"id\":\"ae25867\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/image-asset.jpeg\",\"id\":196},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"24c773b\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":58},\"elements\":[{\"id\":\"93ad602\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/130807026\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"236bdcf\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\"},\"elements\":[{\"id\":\"8a0b6da\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"e28765e\",\"elType\":\"widget\",\"settings\":{\"title\":\"VIRTUAL REALITY EXPERIENCE\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4d0f48c\",\"elType\":\"widget\",\"settings\":{\"title\":\"SOMETHING SOMETHING SOMETHING\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"700\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5a6ec50\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"93d4126\",\"elType\":\"widget\",\"settings\":{\"title\":\"SPIDER-MAN HOMECOMING DISPLAY\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bccfc67\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Submerse yourself in the world of your friendly neighborhood Spider-Man in this fun and thrilling VR Theatrical Display.\\u00a0\\u00a0Based on the all-new 2017 film, the Spider-Man Homecoming VR Experience is a first-person look through the eyes of Spidey himself.<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f786650\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"ec1b52b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":76},\"elements\":[{\"id\":\"74ca310\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Spidey_Home_V4_002.jpg\",\"id\":230},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"css_filters_css_filter\":\"custom\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"265cdc0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":24},\"elements\":[{\"id\":\"35c3d80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/IMG_3834.jpg\",\"id\":231},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"677c7e5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/IMG_3788.jpg\",\"id\":233}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"c22aabe\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"9a54f1a\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b747fda\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":700},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":900},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7eab781\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"43661634\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our company is a collective of amazing people striving to build delightful products.\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.4},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70cc6d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.<\\/p>\",\"align\":\"center\",\"text_color\":\"#686868\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"615dfb3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1000},\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"6414755f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3bb26eed\",\"elType\":\"widget\",\"settings\":{\"text\":\"Read More\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3},\"button_text_color\":\"#ffffff\",\"background_color\":\"rgba(0,0,0,0)\",\"hover_color\":\"#00ce1b\",\"button_hover_border_color\":\"#00ce1b\",\"hover_animation\":\"grow\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"123f6d1\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"25fcf2e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"64f593f\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"596f429\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(2656,421,'_elementor_edit_mode','builder'),(2657,421,'_elementor_elements_usage','a:9:{s:7:\"heading\";i:10;s:6:\"column\";i:15;s:7:\"section\";i:12;s:7:\"divider\";i:4;s:11:\"text-editor\";i:4;s:5:\"image\";i:6;s:5:\"video\";i:2;s:6:\"spacer\";i:2;s:6:\"button\";i:1;}'),(2658,421,'_elementor_css','a:5:{s:4:\"time\";i:1569091433;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:1:{i:0;s:0:\"\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(2660,422,'_elementor_template_type','post'),(2661,422,'_elementor_version','2.6.8'),(2662,422,'_elementor_pro_version','2.6.5'),(2663,422,'_wp_page_template','default'),(2664,422,'_elementor_data','[{\"id\":\"55396f27\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":50,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Theatrical_Display_V003C.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_range\":\"viewport\",\"layout\":\"full_width\",\"column_position\":\"top\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"905a97c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ad7f3f6\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"162\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2489c07\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"c0bbe21\",\"elType\":\"widget\",\"settings\":{\"title\":\"#WHAT\'S COOL\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"dc881ae\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"18630a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"870a9ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"INNOVATIONS FROM ONDISPLAY CREATIVE\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7df48509\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\"},\"elements\":[{\"id\":\"1147078d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"23bbc68\",\"elType\":\"widget\",\"settings\":{\"title\":\"LIVING STANDEES HAUNTING THEATERS\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b40d155\",\"elType\":\"widget\",\"settings\":{\"title\":\"ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"700\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86cff8b\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"225341d\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS \\u2013 THE LAST KEY\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a680ae8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"be59fa3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e36fe5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"d4d2039\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2.jpg\",\"id\":88},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3c9b758\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"79e122a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2-1.jpg\",\"id\":87},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3dc9df5\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"start\":0},\"elements\":[],\"widgetType\":\"video\"},{\"id\":\"b61a90b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"8f63560\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"08c588a\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS CHAPTER 3\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0e612c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>OnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7e77f5a\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"gap\":\"wide\"},\"elements\":[{\"id\":\"7eb5a21\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.332},\"elements\":[{\"id\":\"ae25867\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/image-asset.jpeg\",\"id\":196},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"24c773b\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":58},\"elements\":[{\"id\":\"93ad602\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/130807026\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"236bdcf\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\"},\"elements\":[{\"id\":\"8a0b6da\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"e28765e\",\"elType\":\"widget\",\"settings\":{\"title\":\"VIRTUAL REALITY EXPERIENCE\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4d0f48c\",\"elType\":\"widget\",\"settings\":{\"title\":\"SOMETHING SOMETHING SOMETHING\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"700\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5a6ec50\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"93d4126\",\"elType\":\"widget\",\"settings\":{\"title\":\"SPIDER-MAN HOMECOMING DISPLAY\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bccfc67\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Submerse yourself in the world of your friendly neighborhood Spider-Man in this fun and thrilling VR Theatrical Display.\\u00a0\\u00a0Based on the all-new 2017 film, the Spider-Man Homecoming VR Experience is a first-person look through the eyes of Spidey himself.<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f786650\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"ec1b52b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":76},\"elements\":[{\"id\":\"74ca310\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Spidey_Home_V4_002.jpg\",\"id\":230},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"css_filters_css_filter\":\"custom\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"265cdc0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":24},\"elements\":[{\"id\":\"35c3d80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/IMG_3834.jpg\",\"id\":231},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"677c7e5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/IMG_3788.jpg\",\"id\":233}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"c22aabe\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"9a54f1a\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b747fda\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":700},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":900},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7eab781\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"43661634\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our company is a collective of amazing people striving to build delightful products.\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.4},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70cc6d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.<\\/p>\",\"align\":\"center\",\"text_color\":\"#686868\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"615dfb3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1000},\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"6414755f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3bb26eed\",\"elType\":\"widget\",\"settings\":{\"text\":\"Read More\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3},\"button_text_color\":\"#ffffff\",\"background_color\":\"rgba(0,0,0,0)\",\"hover_color\":\"#00ce1b\",\"button_hover_border_color\":\"#00ce1b\",\"hover_animation\":\"grow\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"123f6d1\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"25fcf2e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"64f593f\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"596f429\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(2665,422,'_elementor_edit_mode','builder'),(2666,422,'_elementor_elements_usage','a:9:{s:7:\"heading\";i:10;s:6:\"column\";i:15;s:7:\"section\";i:12;s:7:\"divider\";i:4;s:11:\"text-editor\";i:4;s:5:\"image\";i:6;s:5:\"video\";i:2;s:6:\"spacer\";i:2;s:6:\"button\";i:1;}'),(2667,422,'_elementor_css','a:5:{s:4:\"time\";i:1569101058;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:1:{i:0;s:0:\"\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(2669,423,'_elementor_template_type','post'),(2670,423,'_elementor_version','2.6.8'),(2671,423,'_elementor_pro_version','2.6.5'),(2672,423,'_wp_page_template','default'),(2673,423,'_elementor_data','[{\"id\":\"55396f27\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":50,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Theatrical_Display_V003C.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_range\":\"viewport\",\"layout\":\"full_width\",\"column_position\":\"top\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"905a97c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ad7f3f6\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"162\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2489c07\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"c0bbe21\",\"elType\":\"widget\",\"settings\":{\"title\":\"#WHAT\'S COOL\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"dc881ae\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"18630a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"870a9ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"INNOVATIONS FROM ONDISPLAY CREATIVE\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7df48509\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\"},\"elements\":[{\"id\":\"1147078d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"23bbc68\",\"elType\":\"widget\",\"settings\":{\"title\":\"LIVING STANDEES HAUNTING THEATERS\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b40d155\",\"elType\":\"widget\",\"settings\":{\"title\":\"ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"700\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86cff8b\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"225341d\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS \\u2013 THE LAST KEY\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a680ae8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"be59fa3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e36fe5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"d4d2039\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2.jpg\",\"id\":88},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3c9b758\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"79e122a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2-1.jpg\",\"id\":87},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3dc9df5\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"start\":0},\"elements\":[],\"widgetType\":\"video\"},{\"id\":\"b61a90b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"8f63560\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"08c588a\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS CHAPTER 3\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0e612c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>OnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7e77f5a\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"gap\":\"wide\"},\"elements\":[{\"id\":\"7eb5a21\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.332},\"elements\":[{\"id\":\"ae25867\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/image-asset.jpeg\",\"id\":196},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"24c773b\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":58},\"elements\":[{\"id\":\"93ad602\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/130807026\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"236bdcf\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\"},\"elements\":[{\"id\":\"8a0b6da\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"e28765e\",\"elType\":\"widget\",\"settings\":{\"title\":\"VIRTUAL REALITY EXPERIENCE\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4d0f48c\",\"elType\":\"widget\",\"settings\":{\"title\":\"SOMETHING SOMETHING SOMETHING\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"700\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5a6ec50\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"93d4126\",\"elType\":\"widget\",\"settings\":{\"title\":\"SPIDER-MAN HOMECOMING DISPLAY\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bccfc67\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Submerse yourself in the world of your friendly neighborhood Spider-Man in this fun and thrilling VR Theatrical Display.\\u00a0\\u00a0Based on the all-new 2017 film, the Spider-Man Homecoming VR Experience is a first-person look through the eyes of Spidey himself.<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f786650\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"ec1b52b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":76},\"elements\":[{\"id\":\"74ca310\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Spidey_Home_V4_002.jpg\",\"id\":230},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"css_filters_css_filter\":\"custom\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"265cdc0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":24},\"elements\":[{\"id\":\"35c3d80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/IMG_3834.jpg\",\"id\":231},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"677c7e5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/IMG_3788.jpg\",\"id\":233}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"c22aabe\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"9a54f1a\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b747fda\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":700},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":900},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7eab781\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"43661634\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our company is a collective of amazing people striving to build delightful products.\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.4},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70cc6d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.<\\/p>\",\"align\":\"center\",\"text_color\":\"#686868\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"615dfb3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1000},\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"6414755f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3bb26eed\",\"elType\":\"widget\",\"settings\":{\"text\":\"Read More\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3},\"button_text_color\":\"#ffffff\",\"background_color\":\"rgba(0,0,0,0)\",\"hover_color\":\"#00ce1b\",\"button_hover_border_color\":\"#00ce1b\",\"hover_animation\":\"grow\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"123f6d1\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"25fcf2e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"64f593f\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"596f429\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(2674,423,'_elementor_edit_mode','builder'),(2675,423,'_elementor_elements_usage','a:9:{s:7:\"heading\";i:10;s:6:\"column\";i:15;s:7:\"section\";i:12;s:7:\"divider\";i:4;s:11:\"text-editor\";i:4;s:5:\"image\";i:6;s:5:\"video\";i:2;s:6:\"spacer\";i:2;s:6:\"button\";i:1;}'),(2676,423,'_elementor_css','a:5:{s:4:\"time\";i:1569101165;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:1:{i:0;s:0:\"\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(2678,424,'_elementor_template_type','post'),(2679,424,'_elementor_version','2.6.8'),(2680,424,'_elementor_pro_version','2.6.5'),(2681,424,'_wp_page_template','default'),(2682,424,'_elementor_data','[{\"id\":\"55396f27\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":50,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Theatrical_Display_V003C.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_range\":\"viewport\",\"layout\":\"full_width\",\"column_position\":\"top\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"905a97c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ad7f3f6\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"162\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2489c07\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"c0bbe21\",\"elType\":\"widget\",\"settings\":{\"title\":\"#WHAT\'S COOL\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"dc881ae\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"18630a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"870a9ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"INNOVATIONS FROM ONDISPLAY CREATIVE\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7df48509\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\"},\"elements\":[{\"id\":\"1147078d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"23bbc68\",\"elType\":\"widget\",\"settings\":{\"title\":\"LIVING STANDEES HAUNTING THEATERS\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b40d155\",\"elType\":\"widget\",\"settings\":{\"title\":\"ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"700\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86cff8b\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"225341d\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS \\u2013 THE LAST KEY\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a680ae8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"be59fa3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e36fe5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"d4d2039\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2.jpg\",\"id\":88},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3c9b758\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"79e122a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2-1.jpg\",\"id\":87},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3dc9df5\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"start\":0},\"elements\":[],\"widgetType\":\"video\"},{\"id\":\"b61a90b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"8f63560\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"08c588a\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS CHAPTER 3\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0e612c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>OnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7e77f5a\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"gap\":\"wide\"},\"elements\":[{\"id\":\"7eb5a21\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.332},\"elements\":[{\"id\":\"ae25867\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/image-asset.jpeg\",\"id\":196},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"24c773b\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":58},\"elements\":[{\"id\":\"93ad602\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/130807026\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"236bdcf\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\"},\"elements\":[{\"id\":\"8a0b6da\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"e28765e\",\"elType\":\"widget\",\"settings\":{\"title\":\"VIRTUAL REALITY EXPERIENCE\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4d0f48c\",\"elType\":\"widget\",\"settings\":{\"title\":\"SOMETHING SOMETHING SOMETHING\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"700\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5a6ec50\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"93d4126\",\"elType\":\"widget\",\"settings\":{\"title\":\"SPIDER-MAN HOMECOMING DISPLAY\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bccfc67\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Submerse yourself in the world of your friendly neighborhood Spider-Man in this fun and thrilling VR Theatrical Display.\\u00a0\\u00a0Based on the all-new 2017 film, the Spider-Man Homecoming VR Experience is a first-person look through the eyes of Spidey himself.<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f786650\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"ec1b52b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":76},\"elements\":[{\"id\":\"74ca310\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Spidey_Home_V4_002.jpg\",\"id\":230},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"css_filters_css_filter\":\"custom\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"265cdc0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":24},\"elements\":[{\"id\":\"35c3d80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/IMG_3834.jpg\",\"id\":231},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"677c7e5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/IMG_3788.jpg\",\"id\":233}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"c22aabe\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"9a54f1a\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b747fda\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":700},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":900},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7eab781\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"43661634\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our company is a collective of amazing people striving to build delightful products.\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.4},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70cc6d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.<\\/p>\",\"align\":\"center\",\"text_color\":\"#686868\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"615dfb3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1000},\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"6414755f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3bb26eed\",\"elType\":\"widget\",\"settings\":{\"text\":\"Read More\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3},\"button_text_color\":\"#ffffff\",\"background_color\":\"rgba(0,0,0,0)\",\"hover_color\":\"#00ce1b\",\"button_hover_border_color\":\"#00ce1b\",\"hover_animation\":\"grow\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"123f6d1\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"25fcf2e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"64f593f\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"596f429\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(2683,424,'_elementor_edit_mode','builder'),(2684,424,'_elementor_elements_usage','a:9:{s:7:\"heading\";i:10;s:6:\"column\";i:15;s:7:\"section\";i:12;s:7:\"divider\";i:4;s:11:\"text-editor\";i:4;s:5:\"image\";i:6;s:5:\"video\";i:2;s:6:\"spacer\";i:2;s:6:\"button\";i:1;}'),(2685,424,'_elementor_css','a:5:{s:4:\"time\";i:1569101253;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:1:{i:0;s:0:\"\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(2687,425,'_elementor_template_type','post'),(2688,425,'_elementor_version','2.6.8'),(2689,425,'_elementor_pro_version','2.6.5'),(2690,425,'_wp_page_template','default'),(2691,425,'_elementor_data','[{\"id\":\"55396f27\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":50,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Theatrical_Display_V003C.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_range\":\"viewport\",\"layout\":\"full_width\",\"column_position\":\"top\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"905a97c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ad7f3f6\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"162\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2489c07\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"c0bbe21\",\"elType\":\"widget\",\"settings\":{\"title\":\"#WHAT\'S COOL\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"dc881ae\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"18630a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"870a9ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"INNOVATIONS FROM ONDISPLAY CREATIVE\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7df48509\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\"},\"elements\":[{\"id\":\"1147078d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"23bbc68\",\"elType\":\"widget\",\"settings\":{\"title\":\"LIVING STANDEES HAUNTING THEATERS\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b40d155\",\"elType\":\"widget\",\"settings\":{\"title\":\"ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"700\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86cff8b\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"225341d\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS \\u2013 THE LAST KEY\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a680ae8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"be59fa3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e36fe5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"d4d2039\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2.jpg\",\"id\":88},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3c9b758\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"79e122a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2-1.jpg\",\"id\":87},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3dc9df5\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"start\":0},\"elements\":[],\"widgetType\":\"video\"},{\"id\":\"b61a90b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"8f63560\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"08c588a\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS CHAPTER 3\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0e612c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>OnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7e77f5a\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"gap\":\"wide\"},\"elements\":[{\"id\":\"7eb5a21\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.332},\"elements\":[{\"id\":\"ae25867\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/image-asset.jpeg\",\"id\":196},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"24c773b\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":58},\"elements\":[{\"id\":\"93ad602\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/130807026\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"236bdcf\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\"},\"elements\":[{\"id\":\"8a0b6da\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"e28765e\",\"elType\":\"widget\",\"settings\":{\"title\":\"VIRTUAL REALITY EXPERIENCE\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4d0f48c\",\"elType\":\"widget\",\"settings\":{\"title\":\"SOMETHING SOMETHING SOMETHING\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"700\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5a6ec50\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"93d4126\",\"elType\":\"widget\",\"settings\":{\"title\":\"SPIDER-MAN HOMECOMING DISPLAY\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bccfc67\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Submerse yourself in the world of your friendly neighborhood Spider-Man in this fun and thrilling VR Theatrical Display.\\u00a0\\u00a0Based on the all-new 2017 film, the Spider-Man Homecoming VR Experience is a first-person look through the eyes of Spidey himself.<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f786650\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"ec1b52b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":76},\"elements\":[{\"id\":\"74ca310\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Spidey_Home_V4_002.jpg\",\"id\":230},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"css_filters_css_filter\":\"custom\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"265cdc0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":24},\"elements\":[{\"id\":\"35c3d80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/IMG_3834.jpg\",\"id\":231},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"677c7e5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/IMG_3788.jpg\",\"id\":233}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"c22aabe\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"9a54f1a\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b747fda\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":700},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":900},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7eab781\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"43661634\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our company is a collective of amazing people striving to build delightful products.\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.4},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70cc6d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.<\\/p>\",\"align\":\"center\",\"text_color\":\"#686868\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"615dfb3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1000},\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"6414755f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3bb26eed\",\"elType\":\"widget\",\"settings\":{\"text\":\"Read More\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3},\"button_text_color\":\"#ffffff\",\"background_color\":\"rgba(0,0,0,0)\",\"hover_color\":\"#00ce1b\",\"button_hover_border_color\":\"#00ce1b\",\"hover_animation\":\"grow\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"123f6d1\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"25fcf2e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"64f593f\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"596f429\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(2692,425,'_elementor_edit_mode','builder'),(2693,425,'_elementor_elements_usage','a:9:{s:7:\"heading\";i:10;s:6:\"column\";i:15;s:7:\"section\";i:12;s:7:\"divider\";i:4;s:11:\"text-editor\";i:4;s:5:\"image\";i:6;s:5:\"video\";i:2;s:6:\"spacer\";i:2;s:6:\"button\";i:1;}'),(2694,425,'_elementor_css','a:5:{s:4:\"time\";i:1569101366;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:1:{i:0;s:0:\"\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(2709,427,'_wp_page_template','default'),(2710,427,'_elementor_data','[{\"id\":\"55396f27\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":50,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Theatrical_Display_V003C.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_range\":\"viewport\",\"layout\":\"full_width\",\"column_position\":\"top\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"905a97c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ad7f3f6\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"162\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2489c07\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"c0bbe21\",\"elType\":\"widget\",\"settings\":{\"title\":\"#WHAT\'S COOL\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"dc881ae\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"18630a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"870a9ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"INNOVATIONS FROM ONDISPLAY CREATIVE\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7df48509\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\"},\"elements\":[{\"id\":\"1147078d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"23bbc68\",\"elType\":\"widget\",\"settings\":{\"title\":\"LIVING STANDEES HAUNTING THEATERS\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b40d155\",\"elType\":\"widget\",\"settings\":{\"title\":\"ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"700\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86cff8b\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"225341d\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS \\u2013 THE LAST KEY\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a680ae8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"be59fa3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e36fe5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"d4d2039\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2.jpg\",\"id\":88},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3c9b758\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"79e122a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2-1.jpg\",\"id\":87},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3dc9df5\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"start\":0},\"elements\":[],\"widgetType\":\"video\"},{\"id\":\"b61a90b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"8f63560\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"08c588a\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS CHAPTER 3\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0e612c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>OnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7e77f5a\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"gap\":\"wide\"},\"elements\":[{\"id\":\"7eb5a21\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.332},\"elements\":[{\"id\":\"ae25867\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/image-asset.jpeg\",\"id\":196},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"24c773b\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":58},\"elements\":[{\"id\":\"93ad602\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/130807026\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"33453c7\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\"},\"elements\":[{\"id\":\"a3b4916\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"eee30d5\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"2ac5bd7\",\"elType\":\"widget\",\"settings\":{\"title\":\"VIRTUAL REALITY EXPERIENCE\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4d9500c\",\"elType\":\"widget\",\"settings\":{\"title\":\"SOMETHING SOMETHING WHATEVER\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"700\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"12ab018\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"79a7ac9\",\"elType\":\"widget\",\"settings\":{\"title\":\"SPIDER-MAN HOMECOMING DISPLAY\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79983a3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Submerse yourself in the world of your friendly neighborhood Spider-Man in this fun and thrilling VR Theatrical Display.\\u00a0\\u00a0Based on the all-new 2017 film, the Spider-Man Homecoming VR Experience is a first-person look through the eyes of Spidey himself.<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f786650\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"ec1b52b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":76},\"elements\":[{\"id\":\"74ca310\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Spidey_Home_V4_002.jpg\",\"id\":230},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"css_filters_css_filter\":\"custom\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"265cdc0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":24},\"elements\":[{\"id\":\"35c3d80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/IMG_3834.jpg\",\"id\":231},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"677c7e5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/IMG_3788.jpg\",\"id\":233}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"35e35e7\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"e992b7a\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b747fda\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":700},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":900},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7eab781\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"43661634\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our company is a collective of amazing people striving to build delightful products.\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.4},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70cc6d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.<\\/p>\",\"align\":\"center\",\"text_color\":\"#686868\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"615dfb3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1000},\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"6414755f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3bb26eed\",\"elType\":\"widget\",\"settings\":{\"text\":\"Read More\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3},\"button_text_color\":\"#ffffff\",\"background_color\":\"rgba(0,0,0,0)\",\"hover_color\":\"#00ce1b\",\"button_hover_border_color\":\"#00ce1b\",\"hover_animation\":\"grow\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"123f6d1\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"25fcf2e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"64f593f\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"596f429\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(2751,432,'_elementor_template_type','post'),(2706,427,'_elementor_template_type','post'),(2707,427,'_elementor_version','2.6.8'),(2708,427,'_elementor_pro_version','2.6.5'),(2752,432,'_elementor_version','2.6.8'),(2753,432,'_elementor_pro_version','2.6.5'),(2754,432,'_wp_page_template','default'),(2755,432,'_elementor_data','[{\"id\":\"55396f27\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":50,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Theatrical_Display_V003C.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_range\":\"viewport\",\"layout\":\"full_width\",\"column_position\":\"top\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"905a97c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ad7f3f6\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"162\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2489c07\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"c0bbe21\",\"elType\":\"widget\",\"settings\":{\"title\":\"#WHAT\'S COOL\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"dc881ae\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"18630a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"870a9ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"INNOVATIONS FROM ONDISPLAY CREATIVE\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7df48509\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\"},\"elements\":[{\"id\":\"1147078d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"23bbc68\",\"elType\":\"widget\",\"settings\":{\"title\":\"LIVING STANDEES HAUNTING THEATERS\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b40d155\",\"elType\":\"widget\",\"settings\":{\"title\":\"ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"700\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86cff8b\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"225341d\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS \\u2013 THE LAST KEY\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a680ae8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"be59fa3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e36fe5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"d4d2039\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2.jpg\",\"id\":88},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3c9b758\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"79e122a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2-1.jpg\",\"id\":87},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3dc9df5\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"start\":0},\"elements\":[],\"widgetType\":\"video\"},{\"id\":\"b61a90b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"8f63560\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"08c588a\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS CHAPTER 3\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0e612c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>OnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7e77f5a\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"gap\":\"wide\"},\"elements\":[{\"id\":\"7eb5a21\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.332},\"elements\":[{\"id\":\"ae25867\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/image-asset.jpeg\",\"id\":196},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"24c773b\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":58},\"elements\":[{\"id\":\"93ad602\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/130807026\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"cb5dad6\",\"elType\":\"section\",\"settings\":{\"_title\":\"Inner Sedtion\"},\"elements\":[{\"id\":\"25cd114\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_title\":\"virtual reality experience\"},\"elements\":[{\"id\":\"15643ab\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"8ec2d0f\",\"elType\":\"widget\",\"settings\":{\"title\":\"VIRTUAL REALITY EXPERIENCE\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4e004ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"SPIDER-MAN HOMECOMING DISPLAY\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"73a2406\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Submerse yourself in the world of your friendly neighborhood Spider-Man in this fun and thrilling VR Theatrical Display.\\u00a0\\u00a0Based on the all-new 2017 film, the Spider-Man Homecoming VR Experience is a first-person look through the eyes of Spidey himself.<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"04b03b4\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7f4ffcc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"7f85dc5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":76,\"_title\":\"spiderman homecoming\"},\"elements\":[{\"id\":\"9a5a392\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Spidey_Home_V4_002.jpg\",\"id\":230},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"css_filters_css_filter\":\"custom\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"c16541a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":24,\"_title\":\"spiderman 2 vertical pics\"},\"elements\":[{\"id\":\"95b0eed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/IMG_3834.jpg\",\"id\":231},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8ea51a8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/IMG_3788.jpg\",\"id\":233}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b747fda\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":700},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":900},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"_title\":\"our company bitches\"},\"elements\":[{\"id\":\"7eab781\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"43661634\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our company is a collective of amazing people striving to build delightful products.\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.4},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70cc6d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.<\\/p>\",\"align\":\"center\",\"text_color\":\"#686868\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"615dfb3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1000},\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"6414755f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3bb26eed\",\"elType\":\"widget\",\"settings\":{\"text\":\"Read More\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3},\"button_text_color\":\"#ffffff\",\"background_color\":\"rgba(0,0,0,0)\",\"hover_color\":\"#00ce1b\",\"button_hover_border_color\":\"#00ce1b\",\"hover_animation\":\"grow\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"123f6d1\",\"elType\":\"section\",\"settings\":{\"_title\":\"blank at bottom\"},\"elements\":[{\"id\":\"25fcf2e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"64f593f\",\"elType\":\"section\",\"settings\":{\"_title\":\"blank at bottom\"},\"elements\":[{\"id\":\"596f429\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(2711,427,'_elementor_edit_mode','builder'),(2712,427,'_elementor_elements_usage','a:9:{s:7:\"heading\";i:10;s:6:\"column\";i:15;s:7:\"section\";i:12;s:7:\"divider\";i:5;s:11:\"text-editor\";i:4;s:5:\"image\";i:6;s:5:\"video\";i:2;s:6:\"spacer\";i:2;s:6:\"button\";i:1;}'),(2713,427,'_elementor_css','a:5:{s:4:\"time\";i:1569101778;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:1:{i:0;s:0:\"\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(2770,434,'_elementor_edit_mode','builder'),(2771,434,'_elementor_elements_usage','a:9:{s:7:\"heading\";i:11;s:6:\"column\";i:18;s:7:\"section\";i:15;s:7:\"divider\";i:5;s:11:\"text-editor\";i:4;s:5:\"image\";i:6;s:5:\"video\";i:2;s:6:\"spacer\";i:1;s:6:\"button\";i:1;}'),(2772,435,'_wp_attached_file','2019/09/TheStrangers_V01.jpg'),(2773,435,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2500;s:6:\"height\";i:1736;s:4:\"file\";s:28:\"2019/09/TheStrangers_V01.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"TheStrangers_V01-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"TheStrangers_V01-300x208.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:208;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:28:\"TheStrangers_V01-768x533.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:533;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:29:\"TheStrangers_V01-1024x711.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:711;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2774,436,'_elementor_template_type','post'),(2775,436,'_elementor_version','2.6.8'),(2776,436,'_elementor_pro_version','2.6.5'),(2777,436,'_wp_page_template','default'),(2778,436,'_elementor_data','[{\"id\":\"55396f27\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":50,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Theatrical_Display_V003C.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_range\":\"viewport\",\"layout\":\"full_width\",\"column_position\":\"top\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"905a97c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ad7f3f6\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"162\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2489c07\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"c0bbe21\",\"elType\":\"widget\",\"settings\":{\"title\":\"#WHAT\'S COOL\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"dc881ae\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"18630a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"870a9ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"INNOVATIONS FROM ONDISPLAY CREATIVE\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7df48509\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\"},\"elements\":[{\"id\":\"1147078d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"23bbc68\",\"elType\":\"widget\",\"settings\":{\"title\":\"LIVING STANDEES HAUNTING THEATERS\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b40d155\",\"elType\":\"widget\",\"settings\":{\"title\":\"ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"700\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86cff8b\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"225341d\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS \\u2013 THE LAST KEY\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a680ae8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"be59fa3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e36fe5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"d4d2039\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2.jpg\",\"id\":88},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3c9b758\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"79e122a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2-1.jpg\",\"id\":87},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3dc9df5\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"start\":0},\"elements\":[],\"widgetType\":\"video\"},{\"id\":\"b61a90b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"8f63560\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"08c588a\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS CHAPTER 3\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0e612c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>OnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7e77f5a\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"gap\":\"wide\"},\"elements\":[{\"id\":\"7eb5a21\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.332},\"elements\":[{\"id\":\"ae25867\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/image-asset.jpeg\",\"id\":196},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"24c773b\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":58},\"elements\":[{\"id\":\"93ad602\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/130807026\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"cb5dad6\",\"elType\":\"section\",\"settings\":{\"_title\":\"Inner Sedtion\"},\"elements\":[{\"id\":\"25cd114\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_title\":\"virtual reality experience\"},\"elements\":[{\"id\":\"15643ab\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"8ec2d0f\",\"elType\":\"widget\",\"settings\":{\"title\":\"VIRTUAL REALITY EXPERIENCE\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4e004ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"SPIDER-MAN HOMECOMING DISPLAY\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"73a2406\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Submerse yourself in the world of your friendly neighborhood Spider-Man in this fun and thrilling VR Theatrical Display.\\u00a0\\u00a0Based on the all-new 2017 film, the Spider-Man Homecoming VR Experience is a first-person look through the eyes of Spidey himself.<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"04b03b4\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7f4ffcc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"7f85dc5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":76,\"_title\":\"spiderman homecoming\"},\"elements\":[{\"id\":\"9a5a392\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Spidey_Home_V4_002.jpg\",\"id\":230},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"css_filters_css_filter\":\"custom\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"c16541a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":24,\"_title\":\"spiderman 2 vertical pics\"},\"elements\":[{\"id\":\"95b0eed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/IMG_3834.jpg\",\"id\":231},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8ea51a8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/IMG_3788.jpg\",\"id\":233}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"12d34c8\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"00\",\"bottom\":\"00\",\"left\":\"00\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"95003e6\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":435,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/TheStrangers_V01.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_range\":\"viewport\",\"layout\":\"full_width\",\"column_position\":\"top\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"b6deb1a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_title\":\"strangers prey at night\"},\"elements\":[{\"id\":\"7a350ee\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"70\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"ecd0cbe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"d684039\",\"elType\":\"widget\",\"settings\":{\"title\":\"#WHAT\'S COOL\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"003eb99\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5fd9452\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"93ad64e\",\"elType\":\"widget\",\"settings\":{\"title\":\"INNOVATIONS FROM ONDISPLAY CREATIVE\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b747fda\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":700},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":900},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"_title\":\"our company bitches\"},\"elements\":[{\"id\":\"7eab781\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"43661634\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our company is a collective of amazing people striving to build delightful products.\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.4},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70cc6d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.<\\/p>\",\"align\":\"center\",\"text_color\":\"#686868\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"615dfb3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1000},\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"6414755f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3bb26eed\",\"elType\":\"widget\",\"settings\":{\"text\":\"Read More\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3},\"button_text_color\":\"#ffffff\",\"background_color\":\"rgba(0,0,0,0)\",\"hover_color\":\"#00ce1b\",\"button_hover_border_color\":\"#00ce1b\",\"hover_animation\":\"grow\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"123f6d1\",\"elType\":\"section\",\"settings\":{\"_title\":\"blank at bottom\"},\"elements\":[{\"id\":\"25fcf2e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"64f593f\",\"elType\":\"section\",\"settings\":{\"_title\":\"blank at bottom\"},\"elements\":[{\"id\":\"596f429\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(2726,429,'_elementor_template_type','post'),(2727,429,'_elementor_version','2.6.8'),(2728,429,'_elementor_pro_version','2.6.5'),(2729,429,'_wp_page_template','default'),(2730,429,'_elementor_data','[{\"id\":\"55396f27\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":50,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Theatrical_Display_V003C.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_range\":\"viewport\",\"layout\":\"full_width\",\"column_position\":\"top\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"905a97c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ad7f3f6\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"162\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2489c07\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"c0bbe21\",\"elType\":\"widget\",\"settings\":{\"title\":\"#WHAT\'S COOL\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"dc881ae\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"18630a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"870a9ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"INNOVATIONS FROM ONDISPLAY CREATIVE\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7df48509\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\"},\"elements\":[{\"id\":\"1147078d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"23bbc68\",\"elType\":\"widget\",\"settings\":{\"title\":\"LIVING STANDEES HAUNTING THEATERS\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b40d155\",\"elType\":\"widget\",\"settings\":{\"title\":\"ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"700\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86cff8b\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"225341d\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS \\u2013 THE LAST KEY\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a680ae8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"be59fa3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e36fe5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"d4d2039\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2.jpg\",\"id\":88},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3c9b758\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"79e122a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2-1.jpg\",\"id\":87},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3dc9df5\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"start\":0},\"elements\":[],\"widgetType\":\"video\"},{\"id\":\"b61a90b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"8f63560\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"08c588a\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS CHAPTER 3\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0e612c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>OnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7e77f5a\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"gap\":\"wide\"},\"elements\":[{\"id\":\"7eb5a21\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.332},\"elements\":[{\"id\":\"ae25867\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/image-asset.jpeg\",\"id\":196},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"24c773b\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":58},\"elements\":[{\"id\":\"93ad602\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/130807026\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"33453c7\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\"},\"elements\":[{\"id\":\"a3b4916\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"eee30d5\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"2ac5bd7\",\"elType\":\"widget\",\"settings\":{\"title\":\"VIRTUAL REALITY EXPERIENCE\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4d9500c\",\"elType\":\"widget\",\"settings\":{\"title\":\"SOMETHING SOMETHING WHATEVER\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"700\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"12ab018\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"79a7ac9\",\"elType\":\"widget\",\"settings\":{\"title\":\"SPIDER-MAN HOMECOMING DISPLAY\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79983a3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Submerse yourself in the world of your friendly neighborhood Spider-Man in this fun and thrilling VR Theatrical Display.\\u00a0\\u00a0Based on the all-new 2017 film, the Spider-Man Homecoming VR Experience is a first-person look through the eyes of Spidey himself.<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f786650\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"ec1b52b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":76},\"elements\":[{\"id\":\"74ca310\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Spidey_Home_V4_002.jpg\",\"id\":230},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"css_filters_css_filter\":\"custom\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"265cdc0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":24},\"elements\":[{\"id\":\"35c3d80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/IMG_3834.jpg\",\"id\":231},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"677c7e5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/IMG_3788.jpg\",\"id\":233}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"35e35e7\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"e992b7a\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b747fda\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":700},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":900},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7eab781\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"43661634\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our company is a collective of amazing people striving to build delightful products.\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.4},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70cc6d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.<\\/p>\",\"align\":\"center\",\"text_color\":\"#686868\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"615dfb3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1000},\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"6414755f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3bb26eed\",\"elType\":\"widget\",\"settings\":{\"text\":\"Read More\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3},\"button_text_color\":\"#ffffff\",\"background_color\":\"rgba(0,0,0,0)\",\"hover_color\":\"#00ce1b\",\"button_hover_border_color\":\"#00ce1b\",\"hover_animation\":\"grow\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"123f6d1\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"25fcf2e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"64f593f\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"596f429\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(2731,429,'_elementor_edit_mode','builder'),(2732,429,'_elementor_elements_usage','a:9:{s:7:\"heading\";i:10;s:6:\"column\";i:15;s:7:\"section\";i:12;s:7:\"divider\";i:5;s:11:\"text-editor\";i:4;s:5:\"image\";i:6;s:5:\"video\";i:2;s:6:\"spacer\";i:2;s:6:\"button\";i:1;}'),(2733,429,'_elementor_css','a:5:{s:4:\"time\";i:1569102540;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:1:{i:0;s:0:\"\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(2756,432,'_elementor_edit_mode','builder'),(2757,432,'_elementor_elements_usage','a:9:{s:7:\"heading\";i:9;s:6:\"column\";i:15;s:7:\"section\";i:12;s:7:\"divider\";i:4;s:11:\"text-editor\";i:4;s:5:\"image\";i:6;s:5:\"video\";i:2;s:6:\"spacer\";i:1;s:6:\"button\";i:1;}'),(2765,434,'_elementor_template_type','post'),(2766,434,'_elementor_version','2.6.8'),(2767,434,'_elementor_pro_version','2.6.5'),(2768,434,'_wp_page_template','default'),(2769,434,'_elementor_data','[{\"id\":\"55396f27\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":50,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Theatrical_Display_V003C.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_range\":\"viewport\",\"layout\":\"full_width\",\"column_position\":\"top\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"905a97c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ad7f3f6\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"162\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2489c07\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"c0bbe21\",\"elType\":\"widget\",\"settings\":{\"title\":\"#WHAT\'S COOL\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"dc881ae\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"18630a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"870a9ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"INNOVATIONS FROM ONDISPLAY CREATIVE\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7df48509\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\"},\"elements\":[{\"id\":\"1147078d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"23bbc68\",\"elType\":\"widget\",\"settings\":{\"title\":\"LIVING STANDEES HAUNTING THEATERS\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b40d155\",\"elType\":\"widget\",\"settings\":{\"title\":\"ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"700\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86cff8b\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"225341d\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS \\u2013 THE LAST KEY\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a680ae8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"be59fa3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e36fe5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"d4d2039\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2.jpg\",\"id\":88},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3c9b758\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"79e122a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2-1.jpg\",\"id\":87},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3dc9df5\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"start\":0},\"elements\":[],\"widgetType\":\"video\"},{\"id\":\"b61a90b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"8f63560\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"08c588a\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS CHAPTER 3\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0e612c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>OnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7e77f5a\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"gap\":\"wide\"},\"elements\":[{\"id\":\"7eb5a21\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.332},\"elements\":[{\"id\":\"ae25867\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/image-asset.jpeg\",\"id\":196},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"24c773b\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":58},\"elements\":[{\"id\":\"93ad602\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/130807026\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"cb5dad6\",\"elType\":\"section\",\"settings\":{\"_title\":\"Inner Sedtion\"},\"elements\":[{\"id\":\"25cd114\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_title\":\"virtual reality experience\"},\"elements\":[{\"id\":\"15643ab\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"8ec2d0f\",\"elType\":\"widget\",\"settings\":{\"title\":\"VIRTUAL REALITY EXPERIENCE\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4e004ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"SPIDER-MAN HOMECOMING DISPLAY\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"73a2406\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Submerse yourself in the world of your friendly neighborhood Spider-Man in this fun and thrilling VR Theatrical Display.\\u00a0\\u00a0Based on the all-new 2017 film, the Spider-Man Homecoming VR Experience is a first-person look through the eyes of Spidey himself.<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"04b03b4\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7f4ffcc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"7f85dc5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":76,\"_title\":\"spiderman homecoming\"},\"elements\":[{\"id\":\"9a5a392\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Spidey_Home_V4_002.jpg\",\"id\":230},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"css_filters_css_filter\":\"custom\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"c16541a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":24,\"_title\":\"spiderman 2 vertical pics\"},\"elements\":[{\"id\":\"95b0eed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/IMG_3834.jpg\",\"id\":231},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8ea51a8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/IMG_3788.jpg\",\"id\":233}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"12d34c8\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"00\",\"bottom\":\"00\",\"left\":\"00\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"95003e6\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":50,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Theatrical_Display_V003C.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_range\":\"viewport\",\"layout\":\"full_width\",\"column_position\":\"top\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"b6deb1a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_title\":\"strangers prey at night\"},\"elements\":[{\"id\":\"7a350ee\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"70\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"ecd0cbe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"d684039\",\"elType\":\"widget\",\"settings\":{\"title\":\"#WHAT\'S COOL\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"003eb99\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5fd9452\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"93ad64e\",\"elType\":\"widget\",\"settings\":{\"title\":\"INNOVATIONS FROM ONDISPLAY CREATIVE\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b747fda\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":700},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":900},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"_title\":\"our company bitches\"},\"elements\":[{\"id\":\"7eab781\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"43661634\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our company is a collective of amazing people striving to build delightful products.\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.4},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70cc6d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.<\\/p>\",\"align\":\"center\",\"text_color\":\"#686868\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"615dfb3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1000},\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"6414755f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3bb26eed\",\"elType\":\"widget\",\"settings\":{\"text\":\"Read More\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3},\"button_text_color\":\"#ffffff\",\"background_color\":\"rgba(0,0,0,0)\",\"hover_color\":\"#00ce1b\",\"button_hover_border_color\":\"#00ce1b\",\"hover_animation\":\"grow\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"123f6d1\",\"elType\":\"section\",\"settings\":{\"_title\":\"blank at bottom\"},\"elements\":[{\"id\":\"25fcf2e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"64f593f\",\"elType\":\"section\",\"settings\":{\"_title\":\"blank at bottom\"},\"elements\":[{\"id\":\"596f429\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(2779,436,'_elementor_edit_mode','builder'),(2780,436,'_elementor_elements_usage','a:9:{s:7:\"heading\";i:11;s:6:\"column\";i:18;s:7:\"section\";i:15;s:7:\"divider\";i:5;s:11:\"text-editor\";i:4;s:5:\"image\";i:6;s:5:\"video\";i:2;s:6:\"spacer\";i:1;s:6:\"button\";i:1;}'),(2781,437,'_elementor_template_type','post'),(2782,437,'_elementor_version','2.6.8'),(2783,437,'_elementor_pro_version','2.6.5'),(2784,437,'_wp_page_template','default'),(2785,437,'_elementor_data','[{\"id\":\"55396f27\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":50,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Theatrical_Display_V003C.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_range\":\"viewport\",\"layout\":\"full_width\",\"column_position\":\"top\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"905a97c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ad7f3f6\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"162\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2489c07\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"c0bbe21\",\"elType\":\"widget\",\"settings\":{\"title\":\"#WHAT\'S COOL\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"dc881ae\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"18630a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"870a9ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"INNOVATIONS FROM ONDISPLAY CREATIVE\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7df48509\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\"},\"elements\":[{\"id\":\"1147078d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"23bbc68\",\"elType\":\"widget\",\"settings\":{\"title\":\"LIVING STANDEES HAUNTING THEATERS\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b40d155\",\"elType\":\"widget\",\"settings\":{\"title\":\"ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"700\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86cff8b\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"225341d\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS \\u2013 THE LAST KEY\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a680ae8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"be59fa3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e36fe5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"d4d2039\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2.jpg\",\"id\":88},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3c9b758\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"79e122a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2-1.jpg\",\"id\":87},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3dc9df5\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"start\":0},\"elements\":[],\"widgetType\":\"video\"},{\"id\":\"b61a90b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"8f63560\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"08c588a\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS CHAPTER 3\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0e612c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>OnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7e77f5a\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"gap\":\"wide\"},\"elements\":[{\"id\":\"7eb5a21\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.332},\"elements\":[{\"id\":\"ae25867\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/image-asset.jpeg\",\"id\":196},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"24c773b\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":58},\"elements\":[{\"id\":\"93ad602\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/130807026\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"cb5dad6\",\"elType\":\"section\",\"settings\":{\"_title\":\"Inner Sedtion\"},\"elements\":[{\"id\":\"25cd114\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_title\":\"virtual reality experience\"},\"elements\":[{\"id\":\"15643ab\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"8ec2d0f\",\"elType\":\"widget\",\"settings\":{\"title\":\"VIRTUAL REALITY EXPERIENCE\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4e004ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"SPIDER-MAN HOMECOMING DISPLAY\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"73a2406\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Submerse yourself in the world of your friendly neighborhood Spider-Man in this fun and thrilling VR Theatrical Display.\\u00a0\\u00a0Based on the all-new 2017 film, the Spider-Man Homecoming VR Experience is a first-person look through the eyes of Spidey himself.<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"04b03b4\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7f4ffcc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"7f85dc5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":76,\"_title\":\"spiderman homecoming\"},\"elements\":[{\"id\":\"9a5a392\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Spidey_Home_V4_002.jpg\",\"id\":230},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"css_filters_css_filter\":\"custom\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"c16541a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":24,\"_title\":\"spiderman 2 vertical pics\"},\"elements\":[{\"id\":\"95b0eed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/IMG_3834.jpg\",\"id\":231},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8ea51a8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/IMG_3788.jpg\",\"id\":233}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"12d34c8\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"00\",\"bottom\":\"00\",\"left\":\"00\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"95003e6\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":435,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/TheStrangers_V01.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_range\":\"viewport\",\"layout\":\"full_width\",\"column_position\":\"top\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"b6deb1a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_title\":\"strangers prey at night\"},\"elements\":[{\"id\":\"7a350ee\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"70\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"ecd0cbe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"d684039\",\"elType\":\"widget\",\"settings\":{\"title\":\"THE STRANDERS PREY AT NIGHT\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"003eb99\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5fd9452\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"93ad64e\",\"elType\":\"widget\",\"settings\":{\"title\":\"GRAND FORMAT PHOTO-OP STANDEE\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b747fda\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":700},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":900},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"_title\":\"our company bitches\"},\"elements\":[{\"id\":\"7eab781\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"43661634\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our company is a collective of amazing people striving to build delightful products.\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.4},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70cc6d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.<\\/p>\",\"align\":\"center\",\"text_color\":\"#686868\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"615dfb3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1000},\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"6414755f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3bb26eed\",\"elType\":\"widget\",\"settings\":{\"text\":\"Read More\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3},\"button_text_color\":\"#ffffff\",\"background_color\":\"rgba(0,0,0,0)\",\"hover_color\":\"#00ce1b\",\"button_hover_border_color\":\"#00ce1b\",\"hover_animation\":\"grow\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"123f6d1\",\"elType\":\"section\",\"settings\":{\"_title\":\"blank at bottom\"},\"elements\":[{\"id\":\"25fcf2e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"64f593f\",\"elType\":\"section\",\"settings\":{\"_title\":\"blank at bottom\"},\"elements\":[{\"id\":\"596f429\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(2786,437,'_elementor_edit_mode','builder'),(2787,437,'_elementor_elements_usage','a:9:{s:7:\"heading\";i:11;s:6:\"column\";i:18;s:7:\"section\";i:15;s:7:\"divider\";i:5;s:11:\"text-editor\";i:4;s:5:\"image\";i:6;s:5:\"video\";i:2;s:6:\"spacer\";i:1;s:6:\"button\";i:1;}'),(2788,438,'_elementor_template_type','post'),(2789,438,'_elementor_version','2.6.8'),(2790,438,'_elementor_pro_version','2.6.5'),(2791,438,'_wp_page_template','default'),(2792,438,'_elementor_data','[{\"id\":\"55396f27\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":50,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Theatrical_Display_V003C.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_range\":\"viewport\",\"layout\":\"full_width\",\"column_position\":\"top\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"905a97c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ad7f3f6\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"162\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2489c07\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"c0bbe21\",\"elType\":\"widget\",\"settings\":{\"title\":\"#WHAT\'S COOL\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"dc881ae\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"18630a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"870a9ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"INNOVATIONS FROM ONDISPLAY CREATIVE\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7df48509\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\"},\"elements\":[{\"id\":\"1147078d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"23bbc68\",\"elType\":\"widget\",\"settings\":{\"title\":\"LIVING STANDEES HAUNTING THEATERS\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b40d155\",\"elType\":\"widget\",\"settings\":{\"title\":\"ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"700\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86cff8b\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"225341d\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS \\u2013 THE LAST KEY\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a680ae8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"be59fa3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e36fe5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"d4d2039\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2.jpg\",\"id\":88},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3c9b758\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"79e122a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2-1.jpg\",\"id\":87},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3dc9df5\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"start\":0},\"elements\":[],\"widgetType\":\"video\"},{\"id\":\"b61a90b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"8f63560\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"08c588a\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS CHAPTER 3\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0e612c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>OnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7e77f5a\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"gap\":\"wide\"},\"elements\":[{\"id\":\"7eb5a21\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.332},\"elements\":[{\"id\":\"ae25867\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/image-asset.jpeg\",\"id\":196},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"24c773b\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":58},\"elements\":[{\"id\":\"93ad602\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/130807026\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"cb5dad6\",\"elType\":\"section\",\"settings\":{\"_title\":\"Inner Sedtion\"},\"elements\":[{\"id\":\"25cd114\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_title\":\"virtual reality experience\"},\"elements\":[{\"id\":\"15643ab\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"8ec2d0f\",\"elType\":\"widget\",\"settings\":{\"title\":\"VIRTUAL REALITY EXPERIENCE\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4e004ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"SPIDER-MAN HOMECOMING DISPLAY\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"73a2406\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Submerse yourself in the world of your friendly neighborhood Spider-Man in this fun and thrilling VR Theatrical Display.\\u00a0\\u00a0Based on the all-new 2017 film, the Spider-Man Homecoming VR Experience is a first-person look through the eyes of Spidey himself.<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"04b03b4\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7f4ffcc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"7f85dc5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":76,\"_title\":\"spiderman homecoming\"},\"elements\":[{\"id\":\"9a5a392\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Spidey_Home_V4_002.jpg\",\"id\":230},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"css_filters_css_filter\":\"custom\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"c16541a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":24,\"_title\":\"spiderman 2 vertical pics\"},\"elements\":[{\"id\":\"95b0eed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/IMG_3834.jpg\",\"id\":231},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8ea51a8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/IMG_3788.jpg\",\"id\":233}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"12d34c8\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"00\",\"bottom\":\"00\",\"left\":\"00\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"95003e6\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":435,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/TheStrangers_V01.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_range\":\"viewport\",\"layout\":\"full_width\",\"column_position\":\"top\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"b6deb1a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_title\":\"strangers prey at night\"},\"elements\":[{\"id\":\"7a350ee\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"70\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"ecd0cbe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"d684039\",\"elType\":\"widget\",\"settings\":{\"title\":\"THE STRANDERS PREY AT NIGHT\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"003eb99\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5fd9452\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"93ad64e\",\"elType\":\"widget\",\"settings\":{\"title\":\"GRAND FORMAT PHOTO-OP STANDEE\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b747fda\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":700},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":900},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"_title\":\"our company bitches\"},\"elements\":[{\"id\":\"7eab781\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"43661634\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our company is a collective of amazing people striving to build delightful products.\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.4},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70cc6d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.<\\/p>\",\"align\":\"center\",\"text_color\":\"#686868\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"615dfb3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1000},\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"6414755f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3bb26eed\",\"elType\":\"widget\",\"settings\":{\"text\":\"Read More\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3},\"button_text_color\":\"#ffffff\",\"background_color\":\"rgba(0,0,0,0)\",\"hover_color\":\"#00ce1b\",\"button_hover_border_color\":\"#00ce1b\",\"hover_animation\":\"grow\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"123f6d1\",\"elType\":\"section\",\"settings\":{\"_title\":\"blank at bottom\"},\"elements\":[{\"id\":\"25fcf2e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"64f593f\",\"elType\":\"section\",\"settings\":{\"_title\":\"blank at bottom\"},\"elements\":[{\"id\":\"596f429\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(2793,438,'_elementor_edit_mode','builder'),(2794,438,'_elementor_elements_usage','a:9:{s:7:\"heading\";i:11;s:6:\"column\";i:18;s:7:\"section\";i:15;s:7:\"divider\";i:5;s:11:\"text-editor\";i:4;s:5:\"image\";i:6;s:5:\"video\";i:2;s:6:\"spacer\";i:1;s:6:\"button\";i:1;}'),(2810,440,'_elementor_elements_usage','a:9:{s:7:\"heading\";i:11;s:6:\"column\";i:18;s:7:\"section\";i:15;s:7:\"divider\";i:5;s:11:\"text-editor\";i:4;s:5:\"image\";i:6;s:5:\"video\";i:2;s:6:\"spacer\";i:1;s:6:\"button\";i:1;}'),(2809,440,'_elementor_edit_mode','builder'),(2808,440,'_elementor_data','[{\"id\":\"55396f27\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":50,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Theatrical_Display_V003C.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_range\":\"viewport\",\"layout\":\"full_width\",\"column_position\":\"top\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"_title\":\"Section - HERO\"},\"elements\":[{\"id\":\"905a97c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ad7f3f6\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"162\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2489c07\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"c0bbe21\",\"elType\":\"widget\",\"settings\":{\"title\":\"#WHAT\'S COOL\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"dc881ae\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"18630a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"870a9ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"INNOVATIONS FROM ONDISPLAY CREATIVE\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7df48509\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"_title\":\"Section - LIVING STANDEES\"},\"elements\":[{\"id\":\"1147078d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"23bbc68\",\"elType\":\"widget\",\"settings\":{\"title\":\"LIVING STANDEES HAUNTING THEATERS\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b40d155\",\"elType\":\"widget\",\"settings\":{\"title\":\"ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"700\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86cff8b\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"225341d\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS \\u2013 THE LAST KEY\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a680ae8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"be59fa3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e36fe5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"d4d2039\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2.jpg\",\"id\":88},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3c9b758\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"79e122a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2-1.jpg\",\"id\":87},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3dc9df5\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"start\":0},\"elements\":[],\"widgetType\":\"video\"},{\"id\":\"b61a90b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"8f63560\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"08c588a\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS CHAPTER 3\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0e612c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>OnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7e77f5a\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"gap\":\"wide\"},\"elements\":[{\"id\":\"7eb5a21\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.332},\"elements\":[{\"id\":\"ae25867\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/image-asset.jpeg\",\"id\":196},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"24c773b\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":58},\"elements\":[{\"id\":\"93ad602\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/130807026\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"cb5dad6\",\"elType\":\"section\",\"settings\":{\"_title\":\"Inner Sedtion\"},\"elements\":[{\"id\":\"25cd114\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_title\":\"virtual reality experience\"},\"elements\":[{\"id\":\"15643ab\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"8ec2d0f\",\"elType\":\"widget\",\"settings\":{\"title\":\"VIRTUAL REALITY EXPERIENCE\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4e004ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"SPIDER-MAN HOMECOMING DISPLAY\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"73a2406\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Submerse yourself in the world of your friendly neighborhood Spider-Man in this fun and thrilling VR Theatrical Display.\\u00a0\\u00a0Based on the all-new 2017 film, the Spider-Man Homecoming VR Experience is a first-person look through the eyes of Spidey himself.<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"04b03b4\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7f4ffcc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"7f85dc5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":76,\"_title\":\"spiderman homecoming\"},\"elements\":[{\"id\":\"9a5a392\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Spidey_Home_V4_002.jpg\",\"id\":230},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"css_filters_css_filter\":\"custom\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"c16541a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":24,\"_title\":\"spiderman 2 vertical pics\"},\"elements\":[{\"id\":\"95b0eed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/IMG_3834.jpg\",\"id\":231},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8ea51a8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/IMG_3788.jpg\",\"id\":233}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"12d34c8\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"00\",\"bottom\":\"00\",\"left\":\"00\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"95003e6\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":435,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/TheStrangers_V01.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_range\":\"viewport\",\"layout\":\"full_width\",\"column_position\":\"top\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"b6deb1a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_title\":\"strangers prey at night\"},\"elements\":[{\"id\":\"7a350ee\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"70\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"ecd0cbe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"d684039\",\"elType\":\"widget\",\"settings\":{\"title\":\"THE STRANGERS PREY AT NIGHT\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"003eb99\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5fd9452\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"93ad64e\",\"elType\":\"widget\",\"settings\":{\"title\":\"GRAND FORMAT PHOTO-OP STANDEE\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b747fda\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":700},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":900},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"_title\":\"our company bitches\"},\"elements\":[{\"id\":\"7eab781\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"43661634\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our company is a collective of amazing people striving to build delightful products.\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.4},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70cc6d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.<\\/p>\",\"align\":\"center\",\"text_color\":\"#686868\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"615dfb3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1000},\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"6414755f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3bb26eed\",\"elType\":\"widget\",\"settings\":{\"text\":\"Read More\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3},\"button_text_color\":\"#ffffff\",\"background_color\":\"rgba(0,0,0,0)\",\"hover_color\":\"#00ce1b\",\"button_hover_border_color\":\"#00ce1b\",\"hover_animation\":\"grow\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"123f6d1\",\"elType\":\"section\",\"settings\":{\"_title\":\"blank at bottom\"},\"elements\":[{\"id\":\"25fcf2e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"64f593f\",\"elType\":\"section\",\"settings\":{\"_title\":\"blank at bottom\"},\"elements\":[{\"id\":\"596f429\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(2805,440,'_elementor_version','2.6.8'),(2806,440,'_elementor_pro_version','2.6.5'),(2807,440,'_wp_page_template','default'),(2804,440,'_elementor_template_type','post'),(2811,441,'_elementor_template_type','post'),(2812,441,'_elementor_version','2.6.8'),(2813,441,'_elementor_pro_version','2.6.5'),(2814,441,'_wp_page_template','default'),(2815,441,'_elementor_data','[{\"id\":\"55396f27\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":50,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Theatrical_Display_V003C.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_range\":\"viewport\",\"layout\":\"full_width\",\"column_position\":\"top\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"_title\":\"Section - HERO\"},\"elements\":[{\"id\":\"905a97c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ad7f3f6\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"162\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2489c07\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"c0bbe21\",\"elType\":\"widget\",\"settings\":{\"title\":\"#WHAT\'S COOL\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"dc881ae\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"18630a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"870a9ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"INNOVATIONS FROM ONDISPLAY CREATIVE\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7df48509\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"_title\":\"Section - LIVING STANDEES\"},\"elements\":[{\"id\":\"1147078d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"23bbc68\",\"elType\":\"widget\",\"settings\":{\"title\":\"LIVING STANDEES HAUNTING THEATERS\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b40d155\",\"elType\":\"widget\",\"settings\":{\"title\":\"ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"700\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86cff8b\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"225341d\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS \\u2013 THE LAST KEY\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a680ae8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"be59fa3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e36fe5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"d4d2039\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2.jpg\",\"id\":88},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3c9b758\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"79e122a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2-1.jpg\",\"id\":87},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3dc9df5\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"start\":0},\"elements\":[],\"widgetType\":\"video\"},{\"id\":\"b61a90b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"8f63560\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"08c588a\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS CHAPTER 3\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0e612c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>OnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7e77f5a\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"gap\":\"wide\"},\"elements\":[{\"id\":\"7eb5a21\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.332},\"elements\":[{\"id\":\"ae25867\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/image-asset.jpeg\",\"id\":196},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"24c773b\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":58},\"elements\":[{\"id\":\"93ad602\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/130807026\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"cb5dad6\",\"elType\":\"section\",\"settings\":{\"_title\":\"Inner Sedtion\"},\"elements\":[{\"id\":\"25cd114\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_title\":\"virtual reality experience\"},\"elements\":[{\"id\":\"15643ab\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"8ec2d0f\",\"elType\":\"widget\",\"settings\":{\"title\":\"VIRTUAL REALITY EXPERIENCE\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4e004ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"SPIDER-MAN HOMECOMING DISPLAY\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"73a2406\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Submerse yourself in the world of your friendly neighborhood Spider-Man in this fun and thrilling VR Theatrical Display.\\u00a0\\u00a0Based on the all-new 2017 film, the Spider-Man Homecoming VR Experience is a first-person look through the eyes of Spidey himself.<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"04b03b4\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7f4ffcc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"7f85dc5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":76,\"_title\":\"spiderman homecoming\"},\"elements\":[{\"id\":\"9a5a392\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Spidey_Home_V4_002.jpg\",\"id\":230},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"css_filters_css_filter\":\"custom\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"c16541a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":24,\"_title\":\"spiderman 2 vertical pics\"},\"elements\":[{\"id\":\"95b0eed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/IMG_3834.jpg\",\"id\":231},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8ea51a8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/IMG_3788.jpg\",\"id\":233}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"12d34c8\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"00\",\"bottom\":\"00\",\"left\":\"00\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"95003e6\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":435,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/TheStrangers_V01.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_range\":\"viewport\",\"layout\":\"full_width\",\"column_position\":\"top\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"b6deb1a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_title\":\"strangers prey at night\"},\"elements\":[{\"id\":\"7a350ee\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"70\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"ecd0cbe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"d684039\",\"elType\":\"widget\",\"settings\":{\"title\":\"THE STRANGERS PREY AT NIGHT\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"003eb99\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5fd9452\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"93ad64e\",\"elType\":\"widget\",\"settings\":{\"title\":\"GRAND FORMAT PHOTO-OP STANDEE\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b747fda\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":700},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":900},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"_title\":\"our company bitches\"},\"elements\":[{\"id\":\"7eab781\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"43661634\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our company is a collective of amazing people striving to build delightful products.\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.4},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70cc6d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.<\\/p>\",\"align\":\"center\",\"text_color\":\"#686868\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"615dfb3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1000},\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"6414755f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3bb26eed\",\"elType\":\"widget\",\"settings\":{\"text\":\"Read More\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3},\"button_text_color\":\"#ffffff\",\"background_color\":\"rgba(0,0,0,0)\",\"hover_color\":\"#00ce1b\",\"button_hover_border_color\":\"#00ce1b\",\"hover_animation\":\"grow\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"123f6d1\",\"elType\":\"section\",\"settings\":{\"_title\":\"blank at bottom\"},\"elements\":[{\"id\":\"25fcf2e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"64f593f\",\"elType\":\"section\",\"settings\":{\"_title\":\"blank at bottom\"},\"elements\":[{\"id\":\"596f429\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(2816,441,'_elementor_edit_mode','builder'),(2817,441,'_elementor_elements_usage','a:9:{s:7:\"heading\";i:11;s:6:\"column\";i:18;s:7:\"section\";i:15;s:7:\"divider\";i:5;s:11:\"text-editor\";i:4;s:5:\"image\";i:6;s:5:\"video\";i:2;s:6:\"spacer\";i:1;s:6:\"button\";i:1;}'),(2818,442,'_elementor_template_type','post'),(2819,442,'_elementor_version','2.6.8'),(2820,442,'_elementor_pro_version','2.6.5'),(2821,442,'_wp_page_template','default'),(2822,442,'_elementor_data','[{\"id\":\"55396f27\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":50,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Theatrical_Display_V003C.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_range\":\"viewport\",\"layout\":\"full_width\",\"column_position\":\"top\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"_title\":\"Section - HERO\"},\"elements\":[{\"id\":\"905a97c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ad7f3f6\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"162\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2489c07\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"c0bbe21\",\"elType\":\"widget\",\"settings\":{\"title\":\"#WHAT\'S COOL\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"dc881ae\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"18630a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"870a9ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"INNOVATIONS FROM ONDISPLAY CREATIVE\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7df48509\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"_title\":\"Section - LIVING STANDEES\"},\"elements\":[{\"id\":\"1147078d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"23bbc68\",\"elType\":\"widget\",\"settings\":{\"title\":\"LIVING STANDEES HAUNTING THEATERS\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b40d155\",\"elType\":\"widget\",\"settings\":{\"title\":\"ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"700\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86cff8b\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"225341d\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS \\u2013 THE LAST KEY\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a680ae8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"be59fa3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e36fe5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"d4d2039\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2.jpg\",\"id\":88},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3c9b758\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"79e122a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2-1.jpg\",\"id\":87},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3dc9df5\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"start\":0},\"elements\":[],\"widgetType\":\"video\"},{\"id\":\"b61a90b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"8f63560\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"08c588a\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS CHAPTER 3\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0e612c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>OnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7e77f5a\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"gap\":\"wide\"},\"elements\":[{\"id\":\"7eb5a21\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.332},\"elements\":[{\"id\":\"ae25867\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/image-asset.jpeg\",\"id\":196},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"24c773b\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":58},\"elements\":[{\"id\":\"93ad602\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/130807026\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"cb5dad6\",\"elType\":\"section\",\"settings\":{\"_title\":\"Inner Sedtion\"},\"elements\":[{\"id\":\"25cd114\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_title\":\"virtual reality experience\"},\"elements\":[{\"id\":\"15643ab\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"8ec2d0f\",\"elType\":\"widget\",\"settings\":{\"title\":\"VIRTUAL REALITY EXPERIENCE\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4e004ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"SPIDER-MAN HOMECOMING DISPLAY\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"73a2406\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Submerse yourself in the world of your friendly neighborhood Spider-Man in this fun and thrilling VR Theatrical Display.\\u00a0\\u00a0Based on the all-new 2017 film, the Spider-Man Homecoming VR Experience is a first-person look through the eyes of Spidey himself.<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"04b03b4\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7f4ffcc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"7f85dc5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":76,\"_title\":\"spiderman homecoming\"},\"elements\":[{\"id\":\"9a5a392\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Spidey_Home_V4_002.jpg\",\"id\":230},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"css_filters_css_filter\":\"custom\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"c16541a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":24,\"_title\":\"spiderman 2 vertical pics\"},\"elements\":[{\"id\":\"95b0eed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/IMG_3834.jpg\",\"id\":231},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8ea51a8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/IMG_3788.jpg\",\"id\":233}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"12d34c8\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"00\",\"bottom\":\"00\",\"left\":\"00\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"95003e6\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":435,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/TheStrangers_V01.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_range\":\"viewport\",\"layout\":\"full_width\",\"column_position\":\"top\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"b6deb1a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_title\":\"strangers prey at night\"},\"elements\":[{\"id\":\"7a350ee\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"70\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"ecd0cbe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"d684039\",\"elType\":\"widget\",\"settings\":{\"title\":\"THE STRANGERS PREY AT NIGHT\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"003eb99\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5fd9452\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"93ad64e\",\"elType\":\"widget\",\"settings\":{\"title\":\"GRAND FORMAT PHOTO-OP STANDEE\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b747fda\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":700},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":900},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"_title\":\"our company bitches\"},\"elements\":[{\"id\":\"7eab781\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"43661634\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our company is a collective of amazing people striving to build delightful products.\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.4},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70cc6d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.<\\/p>\",\"align\":\"center\",\"text_color\":\"#686868\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"615dfb3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1000},\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"6414755f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3bb26eed\",\"elType\":\"widget\",\"settings\":{\"text\":\"Read More\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3},\"button_text_color\":\"#ffffff\",\"background_color\":\"rgba(0,0,0,0)\",\"hover_color\":\"#00ce1b\",\"button_hover_border_color\":\"#00ce1b\",\"hover_animation\":\"grow\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"123f6d1\",\"elType\":\"section\",\"settings\":{\"_title\":\"blank at bottom\"},\"elements\":[{\"id\":\"25fcf2e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"64f593f\",\"elType\":\"section\",\"settings\":{\"_title\":\"blank at bottom\"},\"elements\":[{\"id\":\"596f429\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(2823,442,'_elementor_edit_mode','builder'),(2824,442,'_elementor_elements_usage','a:9:{s:7:\"heading\";i:11;s:6:\"column\";i:18;s:7:\"section\";i:15;s:7:\"divider\";i:5;s:11:\"text-editor\";i:4;s:5:\"image\";i:6;s:5:\"video\";i:2;s:6:\"spacer\";i:1;s:6:\"button\";i:1;}'),(2826,443,'_elementor_template_type','post'),(2827,443,'_elementor_version','2.6.8'),(2828,443,'_elementor_pro_version','2.6.5'),(2829,443,'_wp_page_template','default'),(2830,443,'_elementor_data','[{\"id\":\"55396f27\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":50,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Theatrical_Display_V003C.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_range\":\"viewport\",\"layout\":\"full_width\",\"column_position\":\"top\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"_title\":\"Section - INSIDIOUS HERO\"},\"elements\":[{\"id\":\"905a97c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ad7f3f6\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"162\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2489c07\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"c0bbe21\",\"elType\":\"widget\",\"settings\":{\"title\":\"#WHAT\'S COOL\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"dc881ae\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"18630a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"870a9ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"INNOVATIONS FROM ONDISPLAY CREATIVE\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7df48509\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"_title\":\"Section - LIVING STANDEES\"},\"elements\":[{\"id\":\"1147078d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"23bbc68\",\"elType\":\"widget\",\"settings\":{\"title\":\"LIVING STANDEES HAUNTING THEATERS\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b40d155\",\"elType\":\"widget\",\"settings\":{\"title\":\"ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"700\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86cff8b\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"225341d\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS \\u2013 THE LAST KEY\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a680ae8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"be59fa3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e36fe5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"d4d2039\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2.jpg\",\"id\":88},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3c9b758\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"79e122a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2-1.jpg\",\"id\":87},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3dc9df5\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"start\":0},\"elements\":[],\"widgetType\":\"video\"},{\"id\":\"b61a90b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"8f63560\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"08c588a\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS CHAPTER 3\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0e612c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>OnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7e77f5a\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"gap\":\"wide\"},\"elements\":[{\"id\":\"7eb5a21\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.332},\"elements\":[{\"id\":\"ae25867\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/image-asset.jpeg\",\"id\":196},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"24c773b\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":58},\"elements\":[{\"id\":\"93ad602\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/130807026\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"cb5dad6\",\"elType\":\"section\",\"settings\":{\"_title\":\"Inner Sedtion\"},\"elements\":[{\"id\":\"25cd114\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_title\":\"virtual reality experience\"},\"elements\":[{\"id\":\"15643ab\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"8ec2d0f\",\"elType\":\"widget\",\"settings\":{\"title\":\"VIRTUAL REALITY EXPERIENCE\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4e004ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"SPIDER-MAN HOMECOMING DISPLAY\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"73a2406\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Submerse yourself in the world of your friendly neighborhood Spider-Man in this fun and thrilling VR Theatrical Display.\\u00a0\\u00a0Based on the all-new 2017 film, the Spider-Man Homecoming VR Experience is a first-person look through the eyes of Spidey himself.<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"04b03b4\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7f4ffcc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"7f85dc5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":76,\"_title\":\"spiderman homecoming\"},\"elements\":[{\"id\":\"9a5a392\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Spidey_Home_V4_002.jpg\",\"id\":230},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"css_filters_css_filter\":\"custom\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"c16541a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":24,\"_title\":\"spiderman 2 vertical pics\"},\"elements\":[{\"id\":\"95b0eed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/IMG_3834.jpg\",\"id\":231},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8ea51a8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/IMG_3788.jpg\",\"id\":233}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"12d34c8\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"00\",\"bottom\":\"00\",\"left\":\"00\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"95003e6\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":435,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/TheStrangers_V01.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_range\":\"viewport\",\"layout\":\"full_width\",\"column_position\":\"top\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"_title\":\"Section - STRANGERS HERO\"},\"elements\":[{\"id\":\"b6deb1a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_title\":\"strangers prey at night\"},\"elements\":[{\"id\":\"7a350ee\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"70\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"ecd0cbe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"d684039\",\"elType\":\"widget\",\"settings\":{\"title\":\"THE STRANGERS PREY AT NIGHT\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"003eb99\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5fd9452\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"93ad64e\",\"elType\":\"widget\",\"settings\":{\"title\":\"GRAND FORMAT PHOTO-OP STANDEE\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b747fda\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":700},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":900},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"_title\":\"our company bitches\"},\"elements\":[{\"id\":\"7eab781\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"43661634\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our company is a collective of amazing people striving to build delightful products.\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.4},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70cc6d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.<\\/p>\",\"align\":\"center\",\"text_color\":\"#686868\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"615dfb3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1000},\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"6414755f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3bb26eed\",\"elType\":\"widget\",\"settings\":{\"text\":\"Read More\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3},\"button_text_color\":\"#ffffff\",\"background_color\":\"rgba(0,0,0,0)\",\"hover_color\":\"#00ce1b\",\"button_hover_border_color\":\"#00ce1b\",\"hover_animation\":\"grow\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"123f6d1\",\"elType\":\"section\",\"settings\":{\"_title\":\"blank at bottom\"},\"elements\":[{\"id\":\"25fcf2e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"64f593f\",\"elType\":\"section\",\"settings\":{\"_title\":\"blank at bottom\"},\"elements\":[{\"id\":\"596f429\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(2831,443,'_elementor_edit_mode','builder'),(2832,443,'_elementor_elements_usage','a:9:{s:7:\"heading\";i:11;s:6:\"column\";i:18;s:7:\"section\";i:15;s:7:\"divider\";i:5;s:11:\"text-editor\";i:4;s:5:\"image\";i:6;s:5:\"video\";i:2;s:6:\"spacer\";i:1;s:6:\"button\";i:1;}'),(2833,443,'_elementor_css','a:5:{s:4:\"time\";i:1569106394;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:1:{i:0;s:0:\"\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(2914,456,'_elementor_template_type','post'),(2861,450,'_elementor_template_type','post'),(2862,450,'_elementor_version','2.6.8'),(2852,448,'_elementor_template_type','post'),(2853,448,'_elementor_version','2.6.8'),(2854,448,'_elementor_pro_version','2.6.5'),(2855,448,'_wp_page_template','default'),(2856,448,'_elementor_data','[{\"id\":\"55396f27\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":50,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Theatrical_Display_V003C.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_range\":\"viewport\",\"layout\":\"full_width\",\"column_position\":\"top\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"_title\":\"Section - INSIDIOUS HERO\"},\"elements\":[{\"id\":\"905a97c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ad7f3f6\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"162\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2489c07\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"c0bbe21\",\"elType\":\"widget\",\"settings\":{\"title\":\"#WHAT\'S COOL\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"dc881ae\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"18630a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"870a9ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"INNOVATIONS FROM ONDISPLAY CREATIVE\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7df48509\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"_title\":\"Section - LIVING STANDEES\"},\"elements\":[{\"id\":\"1147078d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"23bbc68\",\"elType\":\"widget\",\"settings\":{\"title\":\"LIVING STANDEES HAUNTING THEATERS\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b40d155\",\"elType\":\"widget\",\"settings\":{\"title\":\"ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"700\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86cff8b\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"225341d\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS \\u2013 THE LAST KEY\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a680ae8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"be59fa3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e36fe5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"d4d2039\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2.jpg\",\"id\":88},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3c9b758\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"79e122a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2-1.jpg\",\"id\":87},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3dc9df5\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"start\":0},\"elements\":[],\"widgetType\":\"video\"},{\"id\":\"b61a90b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"8f63560\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"08c588a\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS CHAPTER 3\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0e612c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>OnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7e77f5a\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"gap\":\"wide\"},\"elements\":[{\"id\":\"7eb5a21\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.332},\"elements\":[{\"id\":\"ae25867\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/image-asset.jpeg\",\"id\":196},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"24c773b\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":58},\"elements\":[{\"id\":\"93ad602\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/130807026\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"cb5dad6\",\"elType\":\"section\",\"settings\":{\"_title\":\"Inner Sedtion\"},\"elements\":[{\"id\":\"25cd114\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_title\":\"virtual reality experience\"},\"elements\":[{\"id\":\"15643ab\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"8ec2d0f\",\"elType\":\"widget\",\"settings\":{\"title\":\"VIRTUAL REALITY EXPERIENCE\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4e004ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"SPIDER-MAN HOMECOMING DISPLAY\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"73a2406\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Submerse yourself in the world of your friendly neighborhood Spider-Man in this fun and thrilling VR Theatrical Display.\\u00a0\\u00a0Based on the all-new 2017 film, the Spider-Man Homecoming VR Experience is a first-person look through the eyes of Spidey himself.<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"04b03b4\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7f4ffcc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"7f85dc5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":76,\"_title\":\"spiderman homecoming\"},\"elements\":[{\"id\":\"9a5a392\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Spidey_Home_V4_002.jpg\",\"id\":230},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"css_filters_css_filter\":\"custom\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"c16541a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":24,\"_title\":\"spiderman 2 vertical pics\"},\"elements\":[{\"id\":\"95b0eed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/IMG_3834.jpg\",\"id\":231},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8ea51a8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/IMG_3788.jpg\",\"id\":233}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"12d34c8\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"00\",\"bottom\":\"00\",\"left\":\"00\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"95003e6\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":435,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/TheStrangers_V01.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_range\":\"viewport\",\"layout\":\"full_width\",\"column_position\":\"top\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"_title\":\"Section - STRANGERS HERO\"},\"elements\":[{\"id\":\"b6deb1a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_title\":\"strangers prey at night\"},\"elements\":[{\"id\":\"7a350ee\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"70\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"ecd0cbe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"d684039\",\"elType\":\"widget\",\"settings\":{\"title\":\"THE STRANGERS PREY AT NIGHT\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"003eb99\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5fd9452\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"93ad64e\",\"elType\":\"widget\",\"settings\":{\"title\":\"GRAND FORMAT PHOTO-OP STANDEE\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"247aafb\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"_title\":\"Section - MARKETING AT ITS FINEST\"},\"elements\":[{\"id\":\"f002e93\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"d1321ed\",\"elType\":\"widget\",\"settings\":{\"title\":\"MARKETING AT ITS FINEST, TAILORED FOR SOCIAL MEDIA\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a16ef4e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>This theatrical display allows fans to take photos with Dollface, Pin-up Girl, the Man in the Mask and share their photos on social media.<\\/p>\",\"align\":\"center\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b58ab88\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"00ca412\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"032d3df\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/003.jpg\",\"id\":446},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"672c1f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"623f6d1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/26222472_170774200201231_6120473304701599744_n.jpg\",\"id\":447},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"c3f421c\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"start\":0},\"elements\":[],\"widgetType\":\"video\"},{\"id\":\"cf9e008\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"677b52c\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b747fda\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":700},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":900},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"_title\":\"our company bitches\"},\"elements\":[{\"id\":\"7eab781\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"43661634\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our company is a collective of amazing people striving to build delightful products.\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.4},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70cc6d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.<\\/p>\",\"align\":\"center\",\"text_color\":\"#686868\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"615dfb3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1000},\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"6414755f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3bb26eed\",\"elType\":\"widget\",\"settings\":{\"text\":\"Read More\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3},\"button_text_color\":\"#ffffff\",\"background_color\":\"rgba(0,0,0,0)\",\"hover_color\":\"#00ce1b\",\"button_hover_border_color\":\"#00ce1b\",\"hover_animation\":\"grow\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"123f6d1\",\"elType\":\"section\",\"settings\":{\"_title\":\"blank at bottom\"},\"elements\":[{\"id\":\"25fcf2e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"64f593f\",\"elType\":\"section\",\"settings\":{\"_title\":\"blank at bottom\"},\"elements\":[{\"id\":\"596f429\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(2841,445,'_elementor_template_type','post'),(2842,445,'_elementor_version','2.6.8'),(2843,445,'_elementor_pro_version','2.6.5'),(2844,445,'_wp_page_template','default'),(2845,445,'_elementor_data','[{\"id\":\"55396f27\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":50,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Theatrical_Display_V003C.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_range\":\"viewport\",\"layout\":\"full_width\",\"column_position\":\"top\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"_title\":\"Section - INSIDIOUS HERO\"},\"elements\":[{\"id\":\"905a97c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ad7f3f6\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"162\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2489c07\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"c0bbe21\",\"elType\":\"widget\",\"settings\":{\"title\":\"#WHAT\'S COOL\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"dc881ae\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"18630a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"870a9ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"INNOVATIONS FROM ONDISPLAY CREATIVE\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7df48509\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"_title\":\"Section - LIVING STANDEES\"},\"elements\":[{\"id\":\"1147078d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"23bbc68\",\"elType\":\"widget\",\"settings\":{\"title\":\"LIVING STANDEES HAUNTING THEATERS\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b40d155\",\"elType\":\"widget\",\"settings\":{\"title\":\"ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"700\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86cff8b\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"225341d\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS \\u2013 THE LAST KEY\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a680ae8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"be59fa3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e36fe5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"d4d2039\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2.jpg\",\"id\":88},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3c9b758\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"79e122a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2-1.jpg\",\"id\":87},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3dc9df5\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"start\":0},\"elements\":[],\"widgetType\":\"video\"},{\"id\":\"b61a90b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"8f63560\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"08c588a\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS CHAPTER 3\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0e612c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>OnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7e77f5a\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"gap\":\"wide\"},\"elements\":[{\"id\":\"7eb5a21\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.332},\"elements\":[{\"id\":\"ae25867\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/image-asset.jpeg\",\"id\":196},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"24c773b\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":58},\"elements\":[{\"id\":\"93ad602\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/130807026\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"cb5dad6\",\"elType\":\"section\",\"settings\":{\"_title\":\"Inner Sedtion\"},\"elements\":[{\"id\":\"25cd114\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_title\":\"virtual reality experience\"},\"elements\":[{\"id\":\"15643ab\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"8ec2d0f\",\"elType\":\"widget\",\"settings\":{\"title\":\"VIRTUAL REALITY EXPERIENCE\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4e004ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"SPIDER-MAN HOMECOMING DISPLAY\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"73a2406\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Submerse yourself in the world of your friendly neighborhood Spider-Man in this fun and thrilling VR Theatrical Display.\\u00a0\\u00a0Based on the all-new 2017 film, the Spider-Man Homecoming VR Experience is a first-person look through the eyes of Spidey himself.<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"04b03b4\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7f4ffcc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"7f85dc5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":76,\"_title\":\"spiderman homecoming\"},\"elements\":[{\"id\":\"9a5a392\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Spidey_Home_V4_002.jpg\",\"id\":230},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"css_filters_css_filter\":\"custom\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"c16541a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":24,\"_title\":\"spiderman 2 vertical pics\"},\"elements\":[{\"id\":\"95b0eed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/IMG_3834.jpg\",\"id\":231},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8ea51a8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/IMG_3788.jpg\",\"id\":233}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"12d34c8\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"00\",\"bottom\":\"00\",\"left\":\"00\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"95003e6\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":435,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/TheStrangers_V01.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_range\":\"viewport\",\"layout\":\"full_width\",\"column_position\":\"top\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"_title\":\"Section - STRANGERS HERO\"},\"elements\":[{\"id\":\"b6deb1a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_title\":\"strangers prey at night\"},\"elements\":[{\"id\":\"7a350ee\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"70\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"ecd0cbe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"d684039\",\"elType\":\"widget\",\"settings\":{\"title\":\"THE STRANGERS PREY AT NIGHT\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"003eb99\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5fd9452\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"93ad64e\",\"elType\":\"widget\",\"settings\":{\"title\":\"GRAND FORMAT PHOTO-OP STANDEE\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"247aafb\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"_title\":\"Section - MARKETING AT ITS FINEST\"},\"elements\":[{\"id\":\"f002e93\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"d1321ed\",\"elType\":\"widget\",\"settings\":{\"title\":\"MARKETING AT ITS FINEST, TAILORED FOR SOCIAL MEDIA\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a16ef4e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>This theatrical display allows fans to take photos with Dollface, Pin-up Girl, the Man in the Mask and share their photos on social media.<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b58ab88\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"00ca412\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"032d3df\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2.jpg\",\"id\":88},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"672c1f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"623f6d1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2-1.jpg\",\"id\":87},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"c3f421c\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"start\":0},\"elements\":[],\"widgetType\":\"video\"},{\"id\":\"cf9e008\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"677b52c\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"5736905\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS CHAPTER 3\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3628cb0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>OnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"224d61f\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"gap\":\"wide\"},\"elements\":[{\"id\":\"6bb0fd6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.332},\"elements\":[{\"id\":\"32047c4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/image-asset.jpeg\",\"id\":196},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6e23360\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":58},\"elements\":[{\"id\":\"1f30e74\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/130807026\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ae2d089\",\"elType\":\"section\",\"settings\":{\"_title\":\"Inner Sedtion\"},\"elements\":[{\"id\":\"2dad53f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_title\":\"virtual reality experience\"},\"elements\":[{\"id\":\"c8a768c\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"9c8463b\",\"elType\":\"widget\",\"settings\":{\"title\":\"VIRTUAL REALITY EXPERIENCE\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2eff99d\",\"elType\":\"widget\",\"settings\":{\"title\":\"SPIDER-MAN HOMECOMING DISPLAY\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"adaa835\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Submerse yourself in the world of your friendly neighborhood Spider-Man in this fun and thrilling VR Theatrical Display.\\u00a0\\u00a0Based on the all-new 2017 film, the Spider-Man Homecoming VR Experience is a first-person look through the eyes of Spidey himself.<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6d7db41\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ec70874\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4b1e210\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":76,\"_title\":\"spiderman homecoming\"},\"elements\":[{\"id\":\"0184d1a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Spidey_Home_V4_002.jpg\",\"id\":230},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"css_filters_css_filter\":\"custom\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"311bbc2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":24,\"_title\":\"spiderman 2 vertical pics\"},\"elements\":[{\"id\":\"f876143\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/IMG_3834.jpg\",\"id\":231},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b78a577\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/IMG_3788.jpg\",\"id\":233}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"92305d6\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"00\",\"bottom\":\"00\",\"left\":\"00\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b747fda\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":700},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":900},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"_title\":\"our company bitches\"},\"elements\":[{\"id\":\"7eab781\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"43661634\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our company is a collective of amazing people striving to build delightful products.\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.4},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70cc6d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.<\\/p>\",\"align\":\"center\",\"text_color\":\"#686868\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"615dfb3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1000},\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"6414755f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3bb26eed\",\"elType\":\"widget\",\"settings\":{\"text\":\"Read More\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3},\"button_text_color\":\"#ffffff\",\"background_color\":\"rgba(0,0,0,0)\",\"hover_color\":\"#00ce1b\",\"button_hover_border_color\":\"#00ce1b\",\"hover_animation\":\"grow\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"123f6d1\",\"elType\":\"section\",\"settings\":{\"_title\":\"blank at bottom\"},\"elements\":[{\"id\":\"25fcf2e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"64f593f\",\"elType\":\"section\",\"settings\":{\"_title\":\"blank at bottom\"},\"elements\":[{\"id\":\"596f429\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(2834,444,'_elementor_template_type','post'),(2835,444,'_elementor_version','2.6.8'),(2836,444,'_elementor_pro_version','2.6.5'),(2837,444,'_wp_page_template','default'),(2838,444,'_elementor_data','[{\"id\":\"55396f27\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":50,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Theatrical_Display_V003C.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_range\":\"viewport\",\"layout\":\"full_width\",\"column_position\":\"top\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"_title\":\"Section - INSIDIOUS HERO\"},\"elements\":[{\"id\":\"905a97c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ad7f3f6\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"162\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2489c07\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"c0bbe21\",\"elType\":\"widget\",\"settings\":{\"title\":\"#WHAT\'S COOL\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"dc881ae\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"18630a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"870a9ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"INNOVATIONS FROM ONDISPLAY CREATIVE\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7df48509\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"_title\":\"Section - LIVING STANDEES\"},\"elements\":[{\"id\":\"1147078d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"23bbc68\",\"elType\":\"widget\",\"settings\":{\"title\":\"LIVING STANDEES HAUNTING THEATERS\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b40d155\",\"elType\":\"widget\",\"settings\":{\"title\":\"ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"700\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86cff8b\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"225341d\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS \\u2013 THE LAST KEY\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a680ae8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"be59fa3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e36fe5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"d4d2039\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2.jpg\",\"id\":88},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3c9b758\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"79e122a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2-1.jpg\",\"id\":87},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3dc9df5\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"start\":0},\"elements\":[],\"widgetType\":\"video\"},{\"id\":\"b61a90b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"8f63560\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"08c588a\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS CHAPTER 3\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0e612c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>OnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7e77f5a\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"gap\":\"wide\"},\"elements\":[{\"id\":\"7eb5a21\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.332},\"elements\":[{\"id\":\"ae25867\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/image-asset.jpeg\",\"id\":196},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"24c773b\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":58},\"elements\":[{\"id\":\"93ad602\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/130807026\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"cb5dad6\",\"elType\":\"section\",\"settings\":{\"_title\":\"Inner Sedtion\"},\"elements\":[{\"id\":\"25cd114\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_title\":\"virtual reality experience\"},\"elements\":[{\"id\":\"15643ab\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"8ec2d0f\",\"elType\":\"widget\",\"settings\":{\"title\":\"VIRTUAL REALITY EXPERIENCE\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4e004ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"SPIDER-MAN HOMECOMING DISPLAY\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"73a2406\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Submerse yourself in the world of your friendly neighborhood Spider-Man in this fun and thrilling VR Theatrical Display.\\u00a0\\u00a0Based on the all-new 2017 film, the Spider-Man Homecoming VR Experience is a first-person look through the eyes of Spidey himself.<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"04b03b4\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7f4ffcc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"7f85dc5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":76,\"_title\":\"spiderman homecoming\"},\"elements\":[{\"id\":\"9a5a392\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Spidey_Home_V4_002.jpg\",\"id\":230},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"css_filters_css_filter\":\"custom\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"c16541a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":24,\"_title\":\"spiderman 2 vertical pics\"},\"elements\":[{\"id\":\"95b0eed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/IMG_3834.jpg\",\"id\":231},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8ea51a8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/IMG_3788.jpg\",\"id\":233}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"12d34c8\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"00\",\"bottom\":\"00\",\"left\":\"00\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"95003e6\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":435,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/TheStrangers_V01.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_range\":\"viewport\",\"layout\":\"full_width\",\"column_position\":\"top\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"_title\":\"Section - STRANGERS HERO\"},\"elements\":[{\"id\":\"b6deb1a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_title\":\"strangers prey at night\"},\"elements\":[{\"id\":\"7a350ee\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"70\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"ecd0cbe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"d684039\",\"elType\":\"widget\",\"settings\":{\"title\":\"THE STRANGERS PREY AT NIGHT\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"003eb99\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5fd9452\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"93ad64e\",\"elType\":\"widget\",\"settings\":{\"title\":\"GRAND FORMAT PHOTO-OP STANDEE\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"247aafb\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"_title\":\"Section - MARKETING AT ITS FINEST\"},\"elements\":[{\"id\":\"f002e93\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"d1321ed\",\"elType\":\"widget\",\"settings\":{\"title\":\"LIVING STANDEES HAUNTING THEATERS\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8232c97\",\"elType\":\"widget\",\"settings\":{\"title\":\"ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"700\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3f34d4b\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"84038a3\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS \\u2013 THE LAST KEY\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1c1806d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b58ab88\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"00ca412\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"032d3df\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2.jpg\",\"id\":88},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"672c1f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"623f6d1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2-1.jpg\",\"id\":87},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"c3f421c\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"start\":0},\"elements\":[],\"widgetType\":\"video\"},{\"id\":\"cf9e008\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"677b52c\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"5736905\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS CHAPTER 3\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3628cb0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>OnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"224d61f\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"gap\":\"wide\"},\"elements\":[{\"id\":\"6bb0fd6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.332},\"elements\":[{\"id\":\"32047c4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/image-asset.jpeg\",\"id\":196},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6e23360\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":58},\"elements\":[{\"id\":\"1f30e74\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/130807026\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ae2d089\",\"elType\":\"section\",\"settings\":{\"_title\":\"Inner Sedtion\"},\"elements\":[{\"id\":\"2dad53f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_title\":\"virtual reality experience\"},\"elements\":[{\"id\":\"c8a768c\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"9c8463b\",\"elType\":\"widget\",\"settings\":{\"title\":\"VIRTUAL REALITY EXPERIENCE\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2eff99d\",\"elType\":\"widget\",\"settings\":{\"title\":\"SPIDER-MAN HOMECOMING DISPLAY\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"adaa835\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Submerse yourself in the world of your friendly neighborhood Spider-Man in this fun and thrilling VR Theatrical Display.\\u00a0\\u00a0Based on the all-new 2017 film, the Spider-Man Homecoming VR Experience is a first-person look through the eyes of Spidey himself.<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6d7db41\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ec70874\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4b1e210\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":76,\"_title\":\"spiderman homecoming\"},\"elements\":[{\"id\":\"0184d1a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Spidey_Home_V4_002.jpg\",\"id\":230},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"css_filters_css_filter\":\"custom\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"311bbc2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":24,\"_title\":\"spiderman 2 vertical pics\"},\"elements\":[{\"id\":\"f876143\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/IMG_3834.jpg\",\"id\":231},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b78a577\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/IMG_3788.jpg\",\"id\":233}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"92305d6\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"00\",\"bottom\":\"00\",\"left\":\"00\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b747fda\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":700},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":900},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"_title\":\"our company bitches\"},\"elements\":[{\"id\":\"7eab781\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"43661634\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our company is a collective of amazing people striving to build delightful products.\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.4},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70cc6d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.<\\/p>\",\"align\":\"center\",\"text_color\":\"#686868\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"615dfb3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1000},\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"6414755f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3bb26eed\",\"elType\":\"widget\",\"settings\":{\"text\":\"Read More\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3},\"button_text_color\":\"#ffffff\",\"background_color\":\"rgba(0,0,0,0)\",\"hover_color\":\"#00ce1b\",\"button_hover_border_color\":\"#00ce1b\",\"hover_animation\":\"grow\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"123f6d1\",\"elType\":\"section\",\"settings\":{\"_title\":\"blank at bottom\"},\"elements\":[{\"id\":\"25fcf2e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"64f593f\",\"elType\":\"section\",\"settings\":{\"_title\":\"blank at bottom\"},\"elements\":[{\"id\":\"596f429\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(2839,444,'_elementor_edit_mode','builder'),(2840,444,'_elementor_elements_usage','a:9:{s:7:\"heading\";i:17;s:6:\"column\";i:26;s:7:\"section\";i:20;s:7:\"divider\";i:10;s:11:\"text-editor\";i:7;s:5:\"image\";i:12;s:5:\"video\";i:4;s:6:\"spacer\";i:2;s:6:\"button\";i:1;}'),(2846,445,'_elementor_edit_mode','builder'),(2847,445,'_elementor_elements_usage','a:9:{s:7:\"heading\";i:15;s:6:\"column\";i:26;s:7:\"section\";i:20;s:7:\"divider\";i:9;s:11:\"text-editor\";i:7;s:5:\"image\";i:12;s:5:\"video\";i:4;s:6:\"spacer\";i:2;s:6:\"button\";i:1;}'),(2848,446,'_wp_attached_file','2019/09/003.jpg'),(2849,446,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:942;s:6:\"height\";i:703;s:4:\"file\";s:15:\"2019/09/003.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"003-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:15:\"003-300x224.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:224;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:15:\"003-768x573.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:573;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2850,447,'_wp_attached_file','2019/09/26222472_170774200201231_6120473304701599744_n.jpg'),(2851,447,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:1078;s:4:\"file\";s:58:\"2019/09/26222472_170774200201231_6120473304701599744_n.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:58:\"26222472_170774200201231_6120473304701599744_n-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:58:\"26222472_170774200201231_6120473304701599744_n-278x300.jpg\";s:5:\"width\";i:278;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:58:\"26222472_170774200201231_6120473304701599744_n-768x828.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:828;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:59:\"26222472_170774200201231_6120473304701599744_n-950x1024.jpg\";s:5:\"width\";i:950;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2857,448,'_elementor_edit_mode','builder'),(2858,448,'_elementor_elements_usage','a:9:{s:7:\"heading\";i:12;s:6:\"column\";i:21;s:7:\"section\";i:17;s:7:\"divider\";i:6;s:11:\"text-editor\";i:5;s:5:\"image\";i:8;s:5:\"video\";i:3;s:6:\"spacer\";i:2;s:6:\"button\";i:1;}'),(2859,449,'_wp_attached_file','2019/09/VIDEO_COMING_SOON_01.jpg'),(2860,449,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1280;s:6:\"height\";i:720;s:4:\"file\";s:32:\"2019/09/VIDEO_COMING_SOON_01.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"VIDEO_COMING_SOON_01-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:32:\"VIDEO_COMING_SOON_01-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:32:\"VIDEO_COMING_SOON_01-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:33:\"VIDEO_COMING_SOON_01-1024x576.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2863,450,'_elementor_pro_version','2.6.5'),(2864,450,'_wp_page_template','default'),(2865,450,'_elementor_data','[{\"id\":\"55396f27\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":50,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Theatrical_Display_V003C.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_range\":\"viewport\",\"layout\":\"full_width\",\"column_position\":\"top\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"_title\":\"Section - INSIDIOUS HERO\"},\"elements\":[{\"id\":\"905a97c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ad7f3f6\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"162\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2489c07\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"c0bbe21\",\"elType\":\"widget\",\"settings\":{\"title\":\"#WHAT\'S COOL\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"dc881ae\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"18630a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"870a9ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"INNOVATIONS FROM ONDISPLAY CREATIVE\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7df48509\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"_title\":\"Section - LIVING STANDEES\"},\"elements\":[{\"id\":\"1147078d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"23bbc68\",\"elType\":\"widget\",\"settings\":{\"title\":\"LIVING STANDEES HAUNTING THEATERS\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b40d155\",\"elType\":\"widget\",\"settings\":{\"title\":\"ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"700\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86cff8b\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"225341d\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS \\u2013 THE LAST KEY\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a680ae8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"be59fa3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e36fe5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"d4d2039\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2.jpg\",\"id\":88},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3c9b758\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"79e122a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2-1.jpg\",\"id\":87},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3dc9df5\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"start\":0},\"elements\":[],\"widgetType\":\"video\"},{\"id\":\"b61a90b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"8f63560\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"08c588a\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS CHAPTER 3\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0e612c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>OnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7e77f5a\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"gap\":\"wide\"},\"elements\":[{\"id\":\"7eb5a21\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.332},\"elements\":[{\"id\":\"ae25867\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/image-asset.jpeg\",\"id\":196},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"24c773b\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":58},\"elements\":[{\"id\":\"93ad602\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/130807026\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"cb5dad6\",\"elType\":\"section\",\"settings\":{\"_title\":\"Inner Sedtion\"},\"elements\":[{\"id\":\"25cd114\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_title\":\"virtual reality experience\"},\"elements\":[{\"id\":\"15643ab\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"8ec2d0f\",\"elType\":\"widget\",\"settings\":{\"title\":\"VIRTUAL REALITY EXPERIENCE\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4e004ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"SPIDER-MAN HOMECOMING DISPLAY\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"73a2406\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Submerse yourself in the world of your friendly neighborhood Spider-Man in this fun and thrilling VR Theatrical Display.\\u00a0\\u00a0Based on the all-new 2017 film, the Spider-Man Homecoming VR Experience is a first-person look through the eyes of Spidey himself.<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"04b03b4\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7f4ffcc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"7f85dc5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":76,\"_title\":\"spiderman homecoming\"},\"elements\":[{\"id\":\"9a5a392\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Spidey_Home_V4_002.jpg\",\"id\":230},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"css_filters_css_filter\":\"custom\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"c16541a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":24,\"_title\":\"spiderman 2 vertical pics\"},\"elements\":[{\"id\":\"95b0eed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/IMG_3834.jpg\",\"id\":231},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8ea51a8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/IMG_3788.jpg\",\"id\":233}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"12d34c8\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"00\",\"bottom\":\"00\",\"left\":\"00\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"95003e6\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":435,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/TheStrangers_V01.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_range\":\"viewport\",\"layout\":\"full_width\",\"column_position\":\"top\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"_title\":\"Section - STRANGERS HERO\"},\"elements\":[{\"id\":\"b6deb1a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_title\":\"strangers prey at night\"},\"elements\":[{\"id\":\"7a350ee\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"70\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"ecd0cbe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"d684039\",\"elType\":\"widget\",\"settings\":{\"title\":\"THE STRANGERS PREY AT NIGHT\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"003eb99\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5fd9452\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"93ad64e\",\"elType\":\"widget\",\"settings\":{\"title\":\"GRAND FORMAT PHOTO-OP STANDEE\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"247aafb\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"_title\":\"Section - MARKETING AT ITS FINEST\"},\"elements\":[{\"id\":\"f002e93\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"d1321ed\",\"elType\":\"widget\",\"settings\":{\"title\":\"MARKETING AT ITS FINEST, TAILORED FOR SOCIAL MEDIA\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a16ef4e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>This theatrical display allows fans to take photos with Dollface, Pin-up Girl, the Man in the Mask and share their photos on social media.<\\/p>\",\"align\":\"center\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b58ab88\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"00ca412\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58},\"elements\":[{\"id\":\"032d3df\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/003.jpg\",\"id\":446},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"672c1f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42},\"elements\":[{\"id\":\"623f6d1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/26222472_170774200201231_6120473304701599744_n.jpg\",\"id\":447},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a641f07\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/VIDEO_COMING_SOON_01.jpg\",\"id\":449}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cf9e008\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"677b52c\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b747fda\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":700},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":900},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"_title\":\"our company bitches\"},\"elements\":[{\"id\":\"7eab781\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"43661634\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our company is a collective of amazing people striving to build delightful products.\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.4},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70cc6d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.<\\/p>\",\"align\":\"center\",\"text_color\":\"#686868\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"615dfb3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1000},\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"6414755f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3bb26eed\",\"elType\":\"widget\",\"settings\":{\"text\":\"Read More\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3},\"button_text_color\":\"#ffffff\",\"background_color\":\"rgba(0,0,0,0)\",\"hover_color\":\"#00ce1b\",\"button_hover_border_color\":\"#00ce1b\",\"hover_animation\":\"grow\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"123f6d1\",\"elType\":\"section\",\"settings\":{\"_title\":\"blank at bottom\"},\"elements\":[{\"id\":\"25fcf2e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"64f593f\",\"elType\":\"section\",\"settings\":{\"_title\":\"blank at bottom\"},\"elements\":[{\"id\":\"596f429\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(2866,450,'_elementor_edit_mode','builder'),(2867,450,'_elementor_elements_usage','a:9:{s:7:\"heading\";i:12;s:6:\"column\";i:21;s:7:\"section\";i:17;s:7:\"divider\";i:6;s:11:\"text-editor\";i:5;s:5:\"image\";i:9;s:5:\"video\";i:2;s:6:\"spacer\";i:2;s:6:\"button\";i:1;}'),(2968,462,'_elementor_version','2.6.8'),(2969,462,'_elementor_pro_version','2.6.5'),(2905,455,'_elementor_template_type','post'),(2869,451,'_elementor_template_type','post'),(2870,451,'_elementor_version','2.6.8'),(2871,451,'_elementor_pro_version','2.6.5'),(2872,451,'_wp_page_template','default'),(2873,451,'_elementor_data','[{\"id\":\"55396f27\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":50,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Theatrical_Display_V003C.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_range\":\"viewport\",\"layout\":\"full_width\",\"column_position\":\"top\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"_title\":\"Section - INSIDIOUS HERO\"},\"elements\":[{\"id\":\"905a97c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ad7f3f6\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"162\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2489c07\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"c0bbe21\",\"elType\":\"widget\",\"settings\":{\"title\":\"#WHAT\'S COOL\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"dc881ae\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"18630a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"870a9ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"INNOVATIONS FROM ONDISPLAY CREATIVE\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7df48509\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"_title\":\"Section - LIVING STANDEES\"},\"elements\":[{\"id\":\"1147078d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"23bbc68\",\"elType\":\"widget\",\"settings\":{\"title\":\"LIVING STANDEES HAUNTING THEATERS\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b40d155\",\"elType\":\"widget\",\"settings\":{\"title\":\"ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"700\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86cff8b\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"225341d\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS \\u2013 THE LAST KEY\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a680ae8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"be59fa3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e36fe5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"d4d2039\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2.jpg\",\"id\":88},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3c9b758\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"79e122a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2-1.jpg\",\"id\":87},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3dc9df5\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"start\":0},\"elements\":[],\"widgetType\":\"video\"},{\"id\":\"b61a90b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"8f63560\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"08c588a\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS CHAPTER 3\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0e612c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>OnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7e77f5a\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"gap\":\"wide\"},\"elements\":[{\"id\":\"7eb5a21\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.332},\"elements\":[{\"id\":\"ae25867\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/image-asset.jpeg\",\"id\":196},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"24c773b\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":58},\"elements\":[{\"id\":\"93ad602\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/130807026\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"cb5dad6\",\"elType\":\"section\",\"settings\":{\"_title\":\"Inner Sedtion\"},\"elements\":[{\"id\":\"25cd114\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_title\":\"virtual reality experience\"},\"elements\":[{\"id\":\"15643ab\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"8ec2d0f\",\"elType\":\"widget\",\"settings\":{\"title\":\"VIRTUAL REALITY EXPERIENCE\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4e004ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"SPIDER-MAN HOMECOMING DISPLAY\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"73a2406\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Submerse yourself in the world of your friendly neighborhood Spider-Man in this fun and thrilling VR Theatrical Display.\\u00a0\\u00a0Based on the all-new 2017 film, the Spider-Man Homecoming VR Experience is a first-person look through the eyes of Spidey himself.<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"04b03b4\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7f4ffcc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"7f85dc5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":76,\"_title\":\"spiderman homecoming\"},\"elements\":[{\"id\":\"9a5a392\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Spidey_Home_V4_002.jpg\",\"id\":230},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"css_filters_css_filter\":\"custom\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"c16541a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":24,\"_title\":\"spiderman 2 vertical pics\"},\"elements\":[{\"id\":\"95b0eed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/IMG_3834.jpg\",\"id\":231},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8ea51a8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/IMG_3788.jpg\",\"id\":233}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"12d34c8\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"00\",\"bottom\":\"00\",\"left\":\"00\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"95003e6\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":435,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/TheStrangers_V01.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"motion_fx_range\":\"viewport\",\"layout\":\"full_width\",\"column_position\":\"top\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"motion_fx_motion_fx_scrolling\":\"yes\",\"_title\":\"Section - STRANGERS HERO\"},\"elements\":[{\"id\":\"b6deb1a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_title\":\"strangers prey at night\"},\"elements\":[{\"id\":\"7a350ee\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"70\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"ecd0cbe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"d684039\",\"elType\":\"widget\",\"settings\":{\"title\":\"THE STRANGERS PREY AT NIGHT\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"003eb99\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5fd9452\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"93ad64e\",\"elType\":\"widget\",\"settings\":{\"title\":\"GRAND FORMAT PHOTO-OP STANDEE\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"247aafb\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"_title\":\"Section - MARKETING AT ITS FINEST\"},\"elements\":[{\"id\":\"f002e93\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"d1321ed\",\"elType\":\"widget\",\"settings\":{\"title\":\"MARKETING AT ITS FINEST, TAILORED FOR SOCIAL MEDIA\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a16ef4e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>This theatrical display allows fans to take photos with Dollface, Pin-up Girl, the Man in the Mask and share their photos on social media.<\\/p>\",\"align\":\"center\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b58ab88\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"00ca412\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58},\"elements\":[{\"id\":\"032d3df\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/003.jpg\",\"id\":446},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"672c1f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42},\"elements\":[{\"id\":\"623f6d1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/26222472_170774200201231_6120473304701599744_n.jpg\",\"id\":447},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a641f07\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/VIDEO_COMING_SOON_01.jpg\",\"id\":449}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cf9e008\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"677b52c\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b747fda\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":700},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":900},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"_title\":\"our company bitches\"},\"elements\":[{\"id\":\"7eab781\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"43661634\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our company is a collective of amazing people striving to build delightful products.\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.4},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70cc6d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.<\\/p>\",\"align\":\"center\",\"text_color\":\"#686868\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"615dfb3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1000},\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"6414755f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3bb26eed\",\"elType\":\"widget\",\"settings\":{\"text\":\"Read More\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3},\"button_text_color\":\"#ffffff\",\"background_color\":\"rgba(0,0,0,0)\",\"hover_color\":\"#00ce1b\",\"button_hover_border_color\":\"#00ce1b\",\"hover_animation\":\"grow\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"123f6d1\",\"elType\":\"section\",\"settings\":{\"_title\":\"blank at bottom\"},\"elements\":[{\"id\":\"25fcf2e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"64f593f\",\"elType\":\"section\",\"settings\":{\"_title\":\"blank at bottom\"},\"elements\":[{\"id\":\"596f429\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(2874,451,'_elementor_edit_mode','builder'),(2875,451,'_elementor_elements_usage','a:9:{s:7:\"heading\";i:12;s:6:\"column\";i:21;s:7:\"section\";i:17;s:7:\"divider\";i:6;s:11:\"text-editor\";i:5;s:5:\"image\";i:9;s:5:\"video\";i:2;s:6:\"spacer\";i:2;s:6:\"button\";i:1;}'),(2876,451,'_elementor_css','a:5:{s:4:\"time\";i:1569106953;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:1:{i:0;s:0:\"\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(2896,454,'_elementor_template_type','post'),(2897,454,'_elementor_version','2.6.8'),(2878,452,'_elementor_template_type','post'),(2879,452,'_elementor_version','2.6.8'),(2880,452,'_elementor_pro_version','2.6.5'),(2881,452,'_wp_page_template','default'),(2882,452,'_elementor_data','[{\"id\":\"55396f27\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":50,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Theatrical_Display_V003C.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_range\":\"viewport\",\"layout\":\"full_width\",\"column_position\":\"top\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"_title\":\"Section - INSIDIOUS HERO\"},\"elements\":[{\"id\":\"905a97c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ad7f3f6\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"162\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2489c07\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"c0bbe21\",\"elType\":\"widget\",\"settings\":{\"title\":\"#WHAT\'S COOL\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"dc881ae\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"18630a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"870a9ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"INNOVATIONS FROM ONDISPLAY CREATIVE\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7df48509\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"_title\":\"Section - LIVING STANDEES\"},\"elements\":[{\"id\":\"1147078d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"23bbc68\",\"elType\":\"widget\",\"settings\":{\"title\":\"LIVING STANDEES HAUNTING THEATERS\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b40d155\",\"elType\":\"widget\",\"settings\":{\"title\":\"ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"700\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86cff8b\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"225341d\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS \\u2013 THE LAST KEY\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a680ae8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"be59fa3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e36fe5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"d4d2039\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2.jpg\",\"id\":88},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3c9b758\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"79e122a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2-1.jpg\",\"id\":87},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3dc9df5\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"start\":0},\"elements\":[],\"widgetType\":\"video\"},{\"id\":\"b61a90b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"8f63560\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"08c588a\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS CHAPTER 3\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0e612c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>OnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7e77f5a\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"gap\":\"wide\"},\"elements\":[{\"id\":\"7eb5a21\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.332},\"elements\":[{\"id\":\"ae25867\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/image-asset.jpeg\",\"id\":196},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"24c773b\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":58},\"elements\":[{\"id\":\"93ad602\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/130807026\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"cb5dad6\",\"elType\":\"section\",\"settings\":{\"_title\":\"Inner Sedtion\"},\"elements\":[{\"id\":\"25cd114\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_title\":\"virtual reality experience\"},\"elements\":[{\"id\":\"15643ab\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"8ec2d0f\",\"elType\":\"widget\",\"settings\":{\"title\":\"VIRTUAL REALITY EXPERIENCE\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4e004ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"SPIDER-MAN HOMECOMING DISPLAY\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"73a2406\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Submerse yourself in the world of your friendly neighborhood Spider-Man in this fun and thrilling VR Theatrical Display.\\u00a0\\u00a0Based on the all-new 2017 film, the Spider-Man Homecoming VR Experience is a first-person look through the eyes of Spidey himself.<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"04b03b4\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7f4ffcc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"7f85dc5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":76,\"_title\":\"spiderman homecoming\"},\"elements\":[{\"id\":\"9a5a392\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Spidey_Home_V4_002.jpg\",\"id\":230},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"css_filters_css_filter\":\"custom\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"c16541a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":24,\"_title\":\"spiderman 2 vertical pics\"},\"elements\":[{\"id\":\"95b0eed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/IMG_3834.jpg\",\"id\":231},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8ea51a8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/IMG_3788.jpg\",\"id\":233}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"12d34c8\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"00\",\"bottom\":\"00\",\"left\":\"00\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"95003e6\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":435,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/TheStrangers_V01.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":8.9,\"sizes\":[]},\"motion_fx_range\":\"viewport\",\"layout\":\"full_width\",\"column_position\":\"top\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":48}},\"_title\":\"Section - STRANGERS HERO\"},\"elements\":[{\"id\":\"b6deb1a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_title\":\"strangers prey at night\"},\"elements\":[{\"id\":\"7a350ee\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"70\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"ecd0cbe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"d684039\",\"elType\":\"widget\",\"settings\":{\"title\":\"THE STRANGERS PREY AT NIGHT\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"003eb99\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5fd9452\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"93ad64e\",\"elType\":\"widget\",\"settings\":{\"title\":\"GRAND FORMAT PHOTO-OP STANDEE\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"247aafb\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"_title\":\"Section - MARKETING AT ITS FINEST\"},\"elements\":[{\"id\":\"f002e93\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"d1321ed\",\"elType\":\"widget\",\"settings\":{\"title\":\"MARKETING AT ITS FINEST, TAILORED FOR SOCIAL MEDIA\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a16ef4e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>This theatrical display allows fans to take photos with Dollface, Pin-up Girl, the Man in the Mask and share their photos on social media.<\\/p>\",\"align\":\"center\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b58ab88\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"00ca412\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58},\"elements\":[{\"id\":\"032d3df\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/003.jpg\",\"id\":446},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"672c1f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42},\"elements\":[{\"id\":\"623f6d1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/26222472_170774200201231_6120473304701599744_n.jpg\",\"id\":447},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a641f07\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/VIDEO_COMING_SOON_01.jpg\",\"id\":449}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cf9e008\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"677b52c\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b747fda\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":700},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":900},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"_title\":\"our company bitches\"},\"elements\":[{\"id\":\"7eab781\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"43661634\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our company is a collective of amazing people striving to build delightful products.\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.4},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70cc6d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.<\\/p>\",\"align\":\"center\",\"text_color\":\"#686868\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"615dfb3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1000},\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"6414755f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3bb26eed\",\"elType\":\"widget\",\"settings\":{\"text\":\"Read More\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3},\"button_text_color\":\"#ffffff\",\"background_color\":\"rgba(0,0,0,0)\",\"hover_color\":\"#00ce1b\",\"button_hover_border_color\":\"#00ce1b\",\"hover_animation\":\"grow\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"123f6d1\",\"elType\":\"section\",\"settings\":{\"_title\":\"blank at bottom\"},\"elements\":[{\"id\":\"25fcf2e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"64f593f\",\"elType\":\"section\",\"settings\":{\"_title\":\"blank at bottom\"},\"elements\":[{\"id\":\"596f429\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(2883,452,'_elementor_edit_mode','builder'),(2884,452,'_elementor_elements_usage','a:9:{s:7:\"heading\";i:12;s:6:\"column\";i:21;s:7:\"section\";i:17;s:7:\"divider\";i:6;s:11:\"text-editor\";i:5;s:5:\"image\";i:9;s:5:\"video\";i:2;s:6:\"spacer\";i:2;s:6:\"button\";i:1;}'),(2885,452,'_elementor_css','a:5:{s:4:\"time\";i:1569107080;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:1:{i:0;s:0:\"\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(2887,453,'_elementor_template_type','post'),(2888,453,'_elementor_version','2.6.8'),(2889,453,'_elementor_pro_version','2.6.5'),(2890,453,'_wp_page_template','default'),(2891,453,'_elementor_data','[{\"id\":\"55396f27\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":50,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Theatrical_Display_V003C.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_range\":\"viewport\",\"layout\":\"full_width\",\"column_position\":\"top\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"_title\":\"Section - INSIDIOUS HERO\"},\"elements\":[{\"id\":\"905a97c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ad7f3f6\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"162\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2489c07\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"c0bbe21\",\"elType\":\"widget\",\"settings\":{\"title\":\"#WHAT\'S COOL\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"dc881ae\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"18630a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"870a9ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"INNOVATIONS FROM ONDISPLAY CREATIVE\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7df48509\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"_title\":\"Section - LIVING STANDEES\"},\"elements\":[{\"id\":\"1147078d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"23bbc68\",\"elType\":\"widget\",\"settings\":{\"title\":\"LIVING STANDEES HAUNTING THEATERS\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b40d155\",\"elType\":\"widget\",\"settings\":{\"title\":\"ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"700\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86cff8b\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"225341d\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS \\u2013 THE LAST KEY\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a680ae8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"be59fa3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e36fe5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"d4d2039\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2.jpg\",\"id\":88},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3c9b758\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"79e122a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2-1.jpg\",\"id\":87},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3dc9df5\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"start\":0},\"elements\":[],\"widgetType\":\"video\"},{\"id\":\"b61a90b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"8f63560\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"08c588a\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS CHAPTER 3\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0e612c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>OnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7e77f5a\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"gap\":\"wide\"},\"elements\":[{\"id\":\"7eb5a21\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.332},\"elements\":[{\"id\":\"ae25867\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/image-asset.jpeg\",\"id\":196},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"24c773b\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":58},\"elements\":[{\"id\":\"93ad602\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/130807026\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"cb5dad6\",\"elType\":\"section\",\"settings\":{\"_title\":\"Inner Sedtion\"},\"elements\":[{\"id\":\"25cd114\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_title\":\"virtual reality experience\"},\"elements\":[{\"id\":\"15643ab\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"8ec2d0f\",\"elType\":\"widget\",\"settings\":{\"title\":\"VIRTUAL REALITY EXPERIENCE\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4e004ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"SPIDER-MAN HOMECOMING DISPLAY\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"73a2406\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Submerse yourself in the world of your friendly neighborhood Spider-Man in this fun and thrilling VR Theatrical Display.\\u00a0\\u00a0Based on the all-new 2017 film, the Spider-Man Homecoming VR Experience is a first-person look through the eyes of Spidey himself.<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"04b03b4\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7f4ffcc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"7f85dc5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":76,\"_title\":\"spiderman homecoming\"},\"elements\":[{\"id\":\"9a5a392\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Spidey_Home_V4_002.jpg\",\"id\":230},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"css_filters_css_filter\":\"custom\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"c16541a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":24,\"_title\":\"spiderman 2 vertical pics\"},\"elements\":[{\"id\":\"95b0eed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/IMG_3834.jpg\",\"id\":231},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8ea51a8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/IMG_3788.jpg\",\"id\":233}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"12d34c8\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"00\",\"bottom\":\"00\",\"left\":\"00\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"95003e6\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":435,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/TheStrangers_V01.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":4.9,\"sizes\":[]},\"motion_fx_range\":\"viewport\",\"layout\":\"full_width\",\"column_position\":\"top\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":48}},\"_title\":\"Section - STRANGERS HERO\"},\"elements\":[{\"id\":\"b6deb1a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_title\":\"strangers prey at night\"},\"elements\":[{\"id\":\"7a350ee\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"70\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"ecd0cbe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"d684039\",\"elType\":\"widget\",\"settings\":{\"title\":\"THE STRANGERS PREY AT NIGHT\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"003eb99\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5fd9452\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"93ad64e\",\"elType\":\"widget\",\"settings\":{\"title\":\"GRAND FORMAT PHOTO-OP STANDEE\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"247aafb\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"_title\":\"Section - MARKETING AT ITS FINEST\"},\"elements\":[{\"id\":\"f002e93\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"d1321ed\",\"elType\":\"widget\",\"settings\":{\"title\":\"MARKETING AT ITS FINEST, TAILORED FOR SOCIAL MEDIA\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a16ef4e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>This theatrical display allows fans to take photos with Dollface, Pin-up Girl, the Man in the Mask and share their photos on social media.<\\/p>\",\"align\":\"center\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b58ab88\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"00ca412\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58},\"elements\":[{\"id\":\"032d3df\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/003.jpg\",\"id\":446},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"672c1f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42},\"elements\":[{\"id\":\"623f6d1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/26222472_170774200201231_6120473304701599744_n.jpg\",\"id\":447},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a641f07\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/VIDEO_COMING_SOON_01.jpg\",\"id\":449}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cf9e008\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"677b52c\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b747fda\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":700},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":900},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"_title\":\"our company bitches\"},\"elements\":[{\"id\":\"7eab781\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"43661634\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our company is a collective of amazing people striving to build delightful products.\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.4},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70cc6d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.<\\/p>\",\"align\":\"center\",\"text_color\":\"#686868\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"615dfb3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1000},\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"6414755f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3bb26eed\",\"elType\":\"widget\",\"settings\":{\"text\":\"Read More\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3},\"button_text_color\":\"#ffffff\",\"background_color\":\"rgba(0,0,0,0)\",\"hover_color\":\"#00ce1b\",\"button_hover_border_color\":\"#00ce1b\",\"hover_animation\":\"grow\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"123f6d1\",\"elType\":\"section\",\"settings\":{\"_title\":\"blank at bottom\"},\"elements\":[{\"id\":\"25fcf2e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"64f593f\",\"elType\":\"section\",\"settings\":{\"_title\":\"blank at bottom\"},\"elements\":[{\"id\":\"596f429\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(2892,453,'_elementor_edit_mode','builder'),(2893,453,'_elementor_elements_usage','a:9:{s:7:\"heading\";i:12;s:6:\"column\";i:21;s:7:\"section\";i:17;s:7:\"divider\";i:6;s:11:\"text-editor\";i:5;s:5:\"image\";i:9;s:5:\"video\";i:2;s:6:\"spacer\";i:2;s:6:\"button\";i:1;}'),(2894,453,'_elementor_css','a:5:{s:4:\"time\";i:1569107136;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:1:{i:0;s:0:\"\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(2898,454,'_elementor_pro_version','2.6.5'),(2899,454,'_wp_page_template','default'),(2900,454,'_elementor_data','[{\"id\":\"55396f27\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":50,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Theatrical_Display_V003C.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_range\":\"viewport\",\"layout\":\"full_width\",\"column_position\":\"top\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"_title\":\"Section - INSIDIOUS HERO\"},\"elements\":[{\"id\":\"905a97c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ad7f3f6\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"162\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2489c07\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"c0bbe21\",\"elType\":\"widget\",\"settings\":{\"title\":\"#WHAT\'S COOL\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"dc881ae\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"18630a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"870a9ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"INNOVATIONS FROM ONDISPLAY CREATIVE\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7df48509\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"_title\":\"Section - LIVING STANDEES\"},\"elements\":[{\"id\":\"1147078d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"23bbc68\",\"elType\":\"widget\",\"settings\":{\"title\":\"LIVING STANDEES HAUNTING THEATERS\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b40d155\",\"elType\":\"widget\",\"settings\":{\"title\":\"ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"700\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86cff8b\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"225341d\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS \\u2013 THE LAST KEY\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a680ae8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"be59fa3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e36fe5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"d4d2039\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2.jpg\",\"id\":88},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3c9b758\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"79e122a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2-1.jpg\",\"id\":87},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3dc9df5\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"start\":0},\"elements\":[],\"widgetType\":\"video\"},{\"id\":\"b61a90b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"8f63560\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"08c588a\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS CHAPTER 3\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0e612c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>OnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7e77f5a\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"gap\":\"wide\"},\"elements\":[{\"id\":\"7eb5a21\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.332},\"elements\":[{\"id\":\"ae25867\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/image-asset.jpeg\",\"id\":196},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"24c773b\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":58},\"elements\":[{\"id\":\"93ad602\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/130807026\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"cb5dad6\",\"elType\":\"section\",\"settings\":{\"_title\":\"Inner Sedtion\"},\"elements\":[{\"id\":\"25cd114\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_title\":\"virtual reality experience\"},\"elements\":[{\"id\":\"15643ab\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"8ec2d0f\",\"elType\":\"widget\",\"settings\":{\"title\":\"VIRTUAL REALITY EXPERIENCE\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4e004ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"SPIDER-MAN HOMECOMING DISPLAY\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"73a2406\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Submerse yourself in the world of your friendly neighborhood Spider-Man in this fun and thrilling VR Theatrical Display.\\u00a0\\u00a0Based on the all-new 2017 film, the Spider-Man Homecoming VR Experience is a first-person look through the eyes of Spidey himself.<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"04b03b4\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7f4ffcc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"7f85dc5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":76,\"_title\":\"spiderman homecoming\"},\"elements\":[{\"id\":\"9a5a392\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Spidey_Home_V4_002.jpg\",\"id\":230},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"css_filters_css_filter\":\"custom\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"c16541a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":24,\"_title\":\"spiderman 2 vertical pics\"},\"elements\":[{\"id\":\"95b0eed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/IMG_3834.jpg\",\"id\":231},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8ea51a8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/IMG_3788.jpg\",\"id\":233}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"12d34c8\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"00\",\"bottom\":\"00\",\"left\":\"00\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"95003e6\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":435,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/TheStrangers_V01.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":8.9,\"sizes\":[]},\"motion_fx_range\":\"page\",\"layout\":\"full_width\",\"column_position\":\"top\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"motion_fx_motion_fx_scrolling\":\"yes\",\"_title\":\"Section - STRANGERS HERO\"},\"elements\":[{\"id\":\"b6deb1a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_title\":\"strangers prey at night\"},\"elements\":[{\"id\":\"7a350ee\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"70\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"ecd0cbe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"d684039\",\"elType\":\"widget\",\"settings\":{\"title\":\"THE STRANGERS PREY AT NIGHT\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"003eb99\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5fd9452\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"93ad64e\",\"elType\":\"widget\",\"settings\":{\"title\":\"GRAND FORMAT PHOTO-OP STANDEE\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"247aafb\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"_title\":\"Section - MARKETING AT ITS FINEST\"},\"elements\":[{\"id\":\"f002e93\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"d1321ed\",\"elType\":\"widget\",\"settings\":{\"title\":\"MARKETING AT ITS FINEST, TAILORED FOR SOCIAL MEDIA\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a16ef4e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>This theatrical display allows fans to take photos with Dollface, Pin-up Girl, the Man in the Mask and share their photos on social media.<\\/p>\",\"align\":\"center\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b58ab88\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"00ca412\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58},\"elements\":[{\"id\":\"032d3df\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/003.jpg\",\"id\":446},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"672c1f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42},\"elements\":[{\"id\":\"623f6d1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/26222472_170774200201231_6120473304701599744_n.jpg\",\"id\":447},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a641f07\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/VIDEO_COMING_SOON_01.jpg\",\"id\":449}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cf9e008\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"677b52c\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b747fda\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":700},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":900},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"_title\":\"our company bitches\"},\"elements\":[{\"id\":\"7eab781\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"43661634\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our company is a collective of amazing people striving to build delightful products.\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.4},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70cc6d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.<\\/p>\",\"align\":\"center\",\"text_color\":\"#686868\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"615dfb3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1000},\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"6414755f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3bb26eed\",\"elType\":\"widget\",\"settings\":{\"text\":\"Read More\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3},\"button_text_color\":\"#ffffff\",\"background_color\":\"rgba(0,0,0,0)\",\"hover_color\":\"#00ce1b\",\"button_hover_border_color\":\"#00ce1b\",\"hover_animation\":\"grow\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"123f6d1\",\"elType\":\"section\",\"settings\":{\"_title\":\"blank at bottom\"},\"elements\":[{\"id\":\"25fcf2e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"64f593f\",\"elType\":\"section\",\"settings\":{\"_title\":\"blank at bottom\"},\"elements\":[{\"id\":\"596f429\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(2901,454,'_elementor_edit_mode','builder'),(2902,454,'_elementor_elements_usage','a:9:{s:7:\"heading\";i:12;s:6:\"column\";i:21;s:7:\"section\";i:17;s:7:\"divider\";i:6;s:11:\"text-editor\";i:5;s:5:\"image\";i:9;s:5:\"video\";i:2;s:6:\"spacer\";i:2;s:6:\"button\";i:1;}'),(2903,454,'_elementor_css','a:5:{s:4:\"time\";i:1569107158;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:1:{i:0;s:0:\"\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(2906,455,'_elementor_version','2.6.8'),(2907,455,'_elementor_pro_version','2.6.5'),(2908,455,'_wp_page_template','default'),(2909,455,'_elementor_data','[{\"id\":\"55396f27\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":50,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Theatrical_Display_V003C.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_range\":\"viewport\",\"layout\":\"full_width\",\"column_position\":\"top\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"_title\":\"Section - INSIDIOUS HERO\"},\"elements\":[{\"id\":\"905a97c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ad7f3f6\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"162\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2489c07\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"c0bbe21\",\"elType\":\"widget\",\"settings\":{\"title\":\"#WHAT\'S COOL\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"dc881ae\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"18630a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"870a9ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"INNOVATIONS FROM ONDISPLAY CREATIVE\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7df48509\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"_title\":\"Section - LIVING STANDEES\"},\"elements\":[{\"id\":\"1147078d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"23bbc68\",\"elType\":\"widget\",\"settings\":{\"title\":\"LIVING STANDEES HAUNTING THEATERS\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b40d155\",\"elType\":\"widget\",\"settings\":{\"title\":\"ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"700\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86cff8b\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"225341d\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS \\u2013 THE LAST KEY\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a680ae8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"be59fa3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e36fe5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"d4d2039\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2.jpg\",\"id\":88},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3c9b758\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"79e122a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2-1.jpg\",\"id\":87},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3dc9df5\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"start\":0},\"elements\":[],\"widgetType\":\"video\"},{\"id\":\"b61a90b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"8f63560\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"08c588a\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS CHAPTER 3\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0e612c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>OnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7e77f5a\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"gap\":\"wide\"},\"elements\":[{\"id\":\"7eb5a21\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.332},\"elements\":[{\"id\":\"ae25867\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/image-asset.jpeg\",\"id\":196},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"24c773b\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":58},\"elements\":[{\"id\":\"93ad602\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/130807026\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"cb5dad6\",\"elType\":\"section\",\"settings\":{\"_title\":\"Inner Sedtion\"},\"elements\":[{\"id\":\"25cd114\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_title\":\"virtual reality experience\"},\"elements\":[{\"id\":\"15643ab\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"8ec2d0f\",\"elType\":\"widget\",\"settings\":{\"title\":\"VIRTUAL REALITY EXPERIENCE\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4e004ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"SPIDER-MAN HOMECOMING DISPLAY\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"73a2406\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Submerse yourself in the world of your friendly neighborhood Spider-Man in this fun and thrilling VR Theatrical Display.\\u00a0\\u00a0Based on the all-new 2017 film, the Spider-Man Homecoming VR Experience is a first-person look through the eyes of Spidey himself.<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"04b03b4\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7f4ffcc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"7f85dc5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":76,\"_title\":\"spiderman homecoming\"},\"elements\":[{\"id\":\"9a5a392\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Spidey_Home_V4_002.jpg\",\"id\":230},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"css_filters_css_filter\":\"custom\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"c16541a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":24,\"_title\":\"spiderman 2 vertical pics\"},\"elements\":[{\"id\":\"95b0eed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/IMG_3834.jpg\",\"id\":231},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8ea51a8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/IMG_3788.jpg\",\"id\":233}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"12d34c8\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"00\",\"bottom\":\"00\",\"left\":\"00\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"95003e6\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":435,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/TheStrangers_V01.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":8.9,\"sizes\":[]},\"motion_fx_range\":\"page\",\"layout\":\"full_width\",\"column_position\":\"top\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"motion_fx_motion_fx_scrolling\":\"yes\",\"_title\":\"Section - STRANGERS HERO\"},\"elements\":[{\"id\":\"b6deb1a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_title\":\"strangers prey at night\"},\"elements\":[{\"id\":\"7a350ee\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"70\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"ecd0cbe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"d684039\",\"elType\":\"widget\",\"settings\":{\"title\":\"THE STRANGERS PREY AT NIGHT\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"003eb99\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5fd9452\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"93ad64e\",\"elType\":\"widget\",\"settings\":{\"title\":\"GRAND FORMAT PHOTO-OP STANDEE\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"247aafb\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"_title\":\"Section - MARKETING AT ITS FINEST\"},\"elements\":[{\"id\":\"f002e93\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"d1321ed\",\"elType\":\"widget\",\"settings\":{\"title\":\"MARKETING AT ITS FINEST, TAILORED FOR SOCIAL MEDIA\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a16ef4e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>This theatrical display allows fans to take photos with Dollface, Pin-up Girl, the Man in the Mask and share their photos on social media.<\\/p>\",\"align\":\"center\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b58ab88\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"00ca412\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58},\"elements\":[{\"id\":\"032d3df\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/003.jpg\",\"id\":446},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"672c1f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42},\"elements\":[{\"id\":\"623f6d1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/26222472_170774200201231_6120473304701599744_n.jpg\",\"id\":447},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a641f07\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/VIDEO_COMING_SOON_01.jpg\",\"id\":449}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cf9e008\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"677b52c\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b747fda\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":700},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":900},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"_title\":\"our company bitches\"},\"elements\":[{\"id\":\"7eab781\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"43661634\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our company is a collective of amazing people striving to build delightful products.\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.4},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70cc6d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.<\\/p>\",\"align\":\"center\",\"text_color\":\"#686868\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"615dfb3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1000},\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"6414755f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3bb26eed\",\"elType\":\"widget\",\"settings\":{\"text\":\"Read More\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3},\"button_text_color\":\"#ffffff\",\"background_color\":\"rgba(0,0,0,0)\",\"hover_color\":\"#00ce1b\",\"button_hover_border_color\":\"#00ce1b\",\"hover_animation\":\"grow\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"123f6d1\",\"elType\":\"section\",\"settings\":{\"_title\":\"blank at bottom\"},\"elements\":[{\"id\":\"25fcf2e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"64f593f\",\"elType\":\"section\",\"settings\":{\"_title\":\"blank at bottom\"},\"elements\":[{\"id\":\"596f429\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(2910,455,'_elementor_edit_mode','builder'),(2911,455,'_elementor_elements_usage','a:9:{s:7:\"heading\";i:12;s:6:\"column\";i:21;s:7:\"section\";i:17;s:7:\"divider\";i:6;s:11:\"text-editor\";i:5;s:5:\"image\";i:9;s:5:\"video\";i:2;s:6:\"spacer\";i:2;s:6:\"button\";i:1;}'),(2912,455,'_elementor_css','a:5:{s:4:\"time\";i:1569107190;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:1:{i:0;s:0:\"\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(2915,456,'_elementor_version','2.6.8'),(2916,456,'_elementor_pro_version','2.6.5'),(2917,456,'_wp_page_template','default'),(2918,456,'_elementor_data','[{\"id\":\"55396f27\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":50,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Theatrical_Display_V003C.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_range\":\"viewport\",\"layout\":\"full_width\",\"column_position\":\"top\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"_title\":\"Section - INSIDIOUS HERO\"},\"elements\":[{\"id\":\"905a97c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ad7f3f6\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"162\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2489c07\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"c0bbe21\",\"elType\":\"widget\",\"settings\":{\"title\":\"#WHAT\'S COOL\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"dc881ae\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"18630a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"870a9ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"INNOVATIONS FROM ONDISPLAY CREATIVE\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7df48509\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"_title\":\"Section - LIVING STANDEES\"},\"elements\":[{\"id\":\"1147078d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"23bbc68\",\"elType\":\"widget\",\"settings\":{\"title\":\"LIVING STANDEES HAUNTING THEATERS\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b40d155\",\"elType\":\"widget\",\"settings\":{\"title\":\"ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"700\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86cff8b\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"225341d\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS \\u2013 THE LAST KEY\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a680ae8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"be59fa3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e36fe5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"d4d2039\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2.jpg\",\"id\":88},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3c9b758\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"79e122a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2-1.jpg\",\"id\":87},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3dc9df5\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"start\":0},\"elements\":[],\"widgetType\":\"video\"},{\"id\":\"b61a90b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"8f63560\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"08c588a\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS CHAPTER 3\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0e612c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>OnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7e77f5a\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"gap\":\"wide\"},\"elements\":[{\"id\":\"7eb5a21\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.332},\"elements\":[{\"id\":\"ae25867\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/image-asset.jpeg\",\"id\":196},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"24c773b\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":58},\"elements\":[{\"id\":\"93ad602\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/130807026\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"cb5dad6\",\"elType\":\"section\",\"settings\":{\"_title\":\"Inner Sedtion\"},\"elements\":[{\"id\":\"25cd114\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_title\":\"virtual reality experience\"},\"elements\":[{\"id\":\"15643ab\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"8ec2d0f\",\"elType\":\"widget\",\"settings\":{\"title\":\"VIRTUAL REALITY EXPERIENCE\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4e004ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"SPIDER-MAN HOMECOMING DISPLAY\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"73a2406\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Submerse yourself in the world of your friendly neighborhood Spider-Man in this fun and thrilling VR Theatrical Display.\\u00a0\\u00a0Based on the all-new 2017 film, the Spider-Man Homecoming VR Experience is a first-person look through the eyes of Spidey himself.<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"04b03b4\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7f4ffcc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"7f85dc5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":76,\"_title\":\"spiderman homecoming\"},\"elements\":[{\"id\":\"9a5a392\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Spidey_Home_V4_002.jpg\",\"id\":230},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"css_filters_css_filter\":\"custom\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"c16541a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":24,\"_title\":\"spiderman 2 vertical pics\"},\"elements\":[{\"id\":\"95b0eed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/IMG_3834.jpg\",\"id\":231},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8ea51a8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/IMG_3788.jpg\",\"id\":233}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"12d34c8\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"00\",\"bottom\":\"00\",\"left\":\"00\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"95003e6\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":435,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/TheStrangers_V01.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":8.9,\"sizes\":[]},\"motion_fx_range\":\"page\",\"layout\":\"full_width\",\"column_position\":\"top\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"_title\":\"Section - STRANGERS HERO\"},\"elements\":[{\"id\":\"b6deb1a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_title\":\"strangers prey at night\"},\"elements\":[{\"id\":\"7a350ee\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"70\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"ecd0cbe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"d684039\",\"elType\":\"widget\",\"settings\":{\"title\":\"THE STRANGERS PREY AT NIGHT\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"003eb99\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5fd9452\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"93ad64e\",\"elType\":\"widget\",\"settings\":{\"title\":\"GRAND FORMAT PHOTO-OP STANDEE\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"247aafb\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"_title\":\"Section - MARKETING AT ITS FINEST\"},\"elements\":[{\"id\":\"f002e93\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"d1321ed\",\"elType\":\"widget\",\"settings\":{\"title\":\"MARKETING AT ITS FINEST, TAILORED FOR SOCIAL MEDIA\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a16ef4e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>This theatrical display allows fans to take photos with Dollface, Pin-up Girl, the Man in the Mask and share their photos on social media.<\\/p>\",\"align\":\"center\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b58ab88\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"00ca412\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58},\"elements\":[{\"id\":\"032d3df\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/003.jpg\",\"id\":446},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"672c1f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42},\"elements\":[{\"id\":\"623f6d1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/26222472_170774200201231_6120473304701599744_n.jpg\",\"id\":447},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a641f07\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/VIDEO_COMING_SOON_01.jpg\",\"id\":449}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cf9e008\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"677b52c\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b747fda\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":700},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":900},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"_title\":\"our company bitches\"},\"elements\":[{\"id\":\"7eab781\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"43661634\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our company is a collective of amazing people striving to build delightful products.\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.4},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70cc6d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.<\\/p>\",\"align\":\"center\",\"text_color\":\"#686868\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"615dfb3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1000},\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"6414755f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3bb26eed\",\"elType\":\"widget\",\"settings\":{\"text\":\"Read More\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3},\"button_text_color\":\"#ffffff\",\"background_color\":\"rgba(0,0,0,0)\",\"hover_color\":\"#00ce1b\",\"button_hover_border_color\":\"#00ce1b\",\"hover_animation\":\"grow\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"123f6d1\",\"elType\":\"section\",\"settings\":{\"_title\":\"blank at bottom\"},\"elements\":[{\"id\":\"25fcf2e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"64f593f\",\"elType\":\"section\",\"settings\":{\"_title\":\"blank at bottom\"},\"elements\":[{\"id\":\"596f429\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false}]');
INSERT INTO `wp_postmeta` VALUES (2919,456,'_elementor_edit_mode','builder'),(2920,456,'_elementor_elements_usage','a:9:{s:7:\"heading\";i:12;s:6:\"column\";i:21;s:7:\"section\";i:17;s:7:\"divider\";i:6;s:11:\"text-editor\";i:5;s:5:\"image\";i:9;s:5:\"video\";i:2;s:6:\"spacer\";i:2;s:6:\"button\";i:1;}'),(2921,456,'_elementor_css','a:5:{s:4:\"time\";i:1569107230;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:1:{i:0;s:0:\"\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(2942,459,'_elementor_template_type','post'),(2924,457,'_elementor_template_type','post'),(2925,457,'_elementor_version','2.6.8'),(2926,457,'_elementor_pro_version','2.6.5'),(2927,457,'_wp_page_template','default'),(2928,457,'_elementor_data','[{\"id\":\"55396f27\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":50,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Theatrical_Display_V003C.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_range\":\"viewport\",\"layout\":\"full_width\",\"column_position\":\"top\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"_title\":\"Section - INSIDIOUS HERO\"},\"elements\":[{\"id\":\"905a97c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ad7f3f6\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"162\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2489c07\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"c0bbe21\",\"elType\":\"widget\",\"settings\":{\"title\":\"#WHAT\'S COOL\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"dc881ae\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"18630a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"870a9ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"INNOVATIONS FROM ONDISPLAY CREATIVE\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7df48509\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"_title\":\"Section - LIVING STANDEES\"},\"elements\":[{\"id\":\"1147078d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"23bbc68\",\"elType\":\"widget\",\"settings\":{\"title\":\"LIVING STANDEES HAUNTING THEATERS\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b40d155\",\"elType\":\"widget\",\"settings\":{\"title\":\"ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"700\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86cff8b\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"225341d\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS \\u2013 THE LAST KEY\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a680ae8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"be59fa3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e36fe5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"d4d2039\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2.jpg\",\"id\":88},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3c9b758\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"79e122a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2-1.jpg\",\"id\":87},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3dc9df5\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"start\":0},\"elements\":[],\"widgetType\":\"video\"},{\"id\":\"b61a90b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"8f63560\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"08c588a\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS CHAPTER 3\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0e612c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>OnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7e77f5a\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"gap\":\"wide\"},\"elements\":[{\"id\":\"7eb5a21\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.332},\"elements\":[{\"id\":\"ae25867\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/image-asset.jpeg\",\"id\":196},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"24c773b\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":58},\"elements\":[{\"id\":\"93ad602\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/130807026\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"cb5dad6\",\"elType\":\"section\",\"settings\":{\"_title\":\"Inner Sedtion\"},\"elements\":[{\"id\":\"25cd114\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_title\":\"virtual reality experience\"},\"elements\":[{\"id\":\"15643ab\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"8ec2d0f\",\"elType\":\"widget\",\"settings\":{\"title\":\"VIRTUAL REALITY EXPERIENCE\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4e004ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"SPIDER-MAN HOMECOMING DISPLAY\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"73a2406\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Submerse yourself in the world of your friendly neighborhood Spider-Man in this fun and thrilling VR Theatrical Display.\\u00a0\\u00a0Based on the all-new 2017 film, the Spider-Man Homecoming VR Experience is a first-person look through the eyes of Spidey himself.<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"04b03b4\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7f4ffcc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"7f85dc5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":76,\"_title\":\"spiderman homecoming\"},\"elements\":[{\"id\":\"9a5a392\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Spidey_Home_V4_002.jpg\",\"id\":230},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"css_filters_css_filter\":\"custom\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"c16541a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":24,\"_title\":\"spiderman 2 vertical pics\"},\"elements\":[{\"id\":\"95b0eed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/IMG_3834.jpg\",\"id\":231},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8ea51a8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/IMG_3788.jpg\",\"id\":233}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"12d34c8\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"00\",\"bottom\":\"00\",\"left\":\"00\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"95003e6\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":435,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/TheStrangers_V01.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":7.6,\"sizes\":[]},\"motion_fx_range\":\"page\",\"layout\":\"full_width\",\"column_position\":\"top\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":29,\"end\":71}},\"_title\":\"Section - STRANGERS HERO\"},\"elements\":[{\"id\":\"b6deb1a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_title\":\"strangers prey at night\"},\"elements\":[{\"id\":\"7a350ee\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"70\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"ecd0cbe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"d684039\",\"elType\":\"widget\",\"settings\":{\"title\":\"THE STRANGERS PREY AT NIGHT\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"003eb99\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5fd9452\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"93ad64e\",\"elType\":\"widget\",\"settings\":{\"title\":\"GRAND FORMAT PHOTO-OP STANDEE\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"247aafb\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"_title\":\"Section - MARKETING AT ITS FINEST\"},\"elements\":[{\"id\":\"f002e93\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"d1321ed\",\"elType\":\"widget\",\"settings\":{\"title\":\"MARKETING AT ITS FINEST, TAILORED FOR SOCIAL MEDIA\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a16ef4e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>This theatrical display allows fans to take photos with Dollface, Pin-up Girl, the Man in the Mask and share their photos on social media.<\\/p>\",\"align\":\"center\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b58ab88\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"00ca412\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58},\"elements\":[{\"id\":\"032d3df\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/003.jpg\",\"id\":446},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"672c1f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42},\"elements\":[{\"id\":\"623f6d1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/26222472_170774200201231_6120473304701599744_n.jpg\",\"id\":447},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a641f07\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/VIDEO_COMING_SOON_01.jpg\",\"id\":449}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cf9e008\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"677b52c\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b747fda\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":700},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":900},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"_title\":\"our company bitches\"},\"elements\":[{\"id\":\"7eab781\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"43661634\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our company is a collective of amazing people striving to build delightful products.\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.4},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70cc6d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.<\\/p>\",\"align\":\"center\",\"text_color\":\"#686868\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"615dfb3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1000},\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"6414755f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3bb26eed\",\"elType\":\"widget\",\"settings\":{\"text\":\"Read More\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3},\"button_text_color\":\"#ffffff\",\"background_color\":\"rgba(0,0,0,0)\",\"hover_color\":\"#00ce1b\",\"button_hover_border_color\":\"#00ce1b\",\"hover_animation\":\"grow\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"123f6d1\",\"elType\":\"section\",\"settings\":{\"_title\":\"blank at bottom\"},\"elements\":[{\"id\":\"25fcf2e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"64f593f\",\"elType\":\"section\",\"settings\":{\"_title\":\"blank at bottom\"},\"elements\":[{\"id\":\"596f429\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(2929,457,'_elementor_edit_mode','builder'),(2930,457,'_elementor_elements_usage','a:9:{s:7:\"heading\";i:12;s:6:\"column\";i:21;s:7:\"section\";i:17;s:7:\"divider\";i:6;s:11:\"text-editor\";i:5;s:5:\"image\";i:9;s:5:\"video\";i:2;s:6:\"spacer\";i:2;s:6:\"button\";i:1;}'),(2931,457,'_elementor_css','a:5:{s:4:\"time\";i:1569107373;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:1:{i:0;s:0:\"\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(2933,458,'_elementor_template_type','post'),(2934,458,'_elementor_version','2.6.8'),(2935,458,'_elementor_pro_version','2.6.5'),(2936,458,'_wp_page_template','default'),(2937,458,'_elementor_data','[{\"id\":\"55396f27\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":50,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Theatrical_Display_V003C.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_range\":\"viewport\",\"layout\":\"full_width\",\"column_position\":\"top\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"_title\":\"Section - INSIDIOUS HERO\"},\"elements\":[{\"id\":\"905a97c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ad7f3f6\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"162\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2489c07\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"c0bbe21\",\"elType\":\"widget\",\"settings\":{\"title\":\"#WHAT\'S COOL\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"dc881ae\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"18630a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"870a9ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"INNOVATIONS FROM ONDISPLAY CREATIVE\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7df48509\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"_title\":\"Section - LIVING STANDEES\"},\"elements\":[{\"id\":\"1147078d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"23bbc68\",\"elType\":\"widget\",\"settings\":{\"title\":\"LIVING STANDEES HAUNTING THEATERS\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b40d155\",\"elType\":\"widget\",\"settings\":{\"title\":\"ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"700\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86cff8b\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"225341d\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS \\u2013 THE LAST KEY\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a680ae8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"be59fa3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e36fe5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"d4d2039\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2.jpg\",\"id\":88},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3c9b758\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"79e122a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2-1.jpg\",\"id\":87},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3dc9df5\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"start\":0},\"elements\":[],\"widgetType\":\"video\"},{\"id\":\"b61a90b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"8f63560\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"08c588a\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS CHAPTER 3\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0e612c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>OnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7e77f5a\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"gap\":\"wide\"},\"elements\":[{\"id\":\"7eb5a21\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.332},\"elements\":[{\"id\":\"ae25867\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/image-asset.jpeg\",\"id\":196},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"24c773b\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":58},\"elements\":[{\"id\":\"93ad602\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/130807026\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"cb5dad6\",\"elType\":\"section\",\"settings\":{\"_title\":\"Inner Sedtion\"},\"elements\":[{\"id\":\"25cd114\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_title\":\"virtual reality experience\"},\"elements\":[{\"id\":\"15643ab\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"8ec2d0f\",\"elType\":\"widget\",\"settings\":{\"title\":\"VIRTUAL REALITY EXPERIENCE\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4e004ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"SPIDER-MAN HOMECOMING DISPLAY\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"73a2406\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Submerse yourself in the world of your friendly neighborhood Spider-Man in this fun and thrilling VR Theatrical Display.\\u00a0\\u00a0Based on the all-new 2017 film, the Spider-Man Homecoming VR Experience is a first-person look through the eyes of Spidey himself.<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"04b03b4\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7f4ffcc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"7f85dc5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":76,\"_title\":\"spiderman homecoming\"},\"elements\":[{\"id\":\"9a5a392\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Spidey_Home_V4_002.jpg\",\"id\":230},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"css_filters_css_filter\":\"custom\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"c16541a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":24,\"_title\":\"spiderman 2 vertical pics\"},\"elements\":[{\"id\":\"95b0eed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/IMG_3834.jpg\",\"id\":231},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8ea51a8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/IMG_3788.jpg\",\"id\":233}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"12d34c8\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"00\",\"bottom\":\"00\",\"left\":\"00\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"95003e6\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":435,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/TheStrangers_V01.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":7.6,\"sizes\":[]},\"layout\":\"full_width\",\"column_position\":\"top\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":68}},\"motion_fx_scale_effect\":\"yes\",\"_title\":\"Section - STRANGERS HERO\"},\"elements\":[{\"id\":\"b6deb1a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_title\":\"strangers prey at night\"},\"elements\":[{\"id\":\"7a350ee\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"70\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"ecd0cbe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"d684039\",\"elType\":\"widget\",\"settings\":{\"title\":\"THE STRANGERS PREY AT NIGHT\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"003eb99\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5fd9452\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"93ad64e\",\"elType\":\"widget\",\"settings\":{\"title\":\"GRAND FORMAT PHOTO-OP STANDEE\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"247aafb\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"_title\":\"Section - MARKETING AT ITS FINEST\"},\"elements\":[{\"id\":\"f002e93\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"d1321ed\",\"elType\":\"widget\",\"settings\":{\"title\":\"MARKETING AT ITS FINEST, TAILORED FOR SOCIAL MEDIA\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a16ef4e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>This theatrical display allows fans to take photos with Dollface, Pin-up Girl, the Man in the Mask and share their photos on social media.<\\/p>\",\"align\":\"center\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b58ab88\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"00ca412\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58},\"elements\":[{\"id\":\"032d3df\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/003.jpg\",\"id\":446},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"672c1f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42},\"elements\":[{\"id\":\"623f6d1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/26222472_170774200201231_6120473304701599744_n.jpg\",\"id\":447},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a641f07\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/VIDEO_COMING_SOON_01.jpg\",\"id\":449}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cf9e008\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"677b52c\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b747fda\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":700},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":900},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"_title\":\"our company bitches\"},\"elements\":[{\"id\":\"7eab781\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"43661634\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our company is a collective of amazing people striving to build delightful products.\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.4},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70cc6d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.<\\/p>\",\"align\":\"center\",\"text_color\":\"#686868\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"615dfb3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1000},\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"6414755f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3bb26eed\",\"elType\":\"widget\",\"settings\":{\"text\":\"Read More\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3},\"button_text_color\":\"#ffffff\",\"background_color\":\"rgba(0,0,0,0)\",\"hover_color\":\"#00ce1b\",\"button_hover_border_color\":\"#00ce1b\",\"hover_animation\":\"grow\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"123f6d1\",\"elType\":\"section\",\"settings\":{\"_title\":\"blank at bottom\"},\"elements\":[{\"id\":\"25fcf2e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"64f593f\",\"elType\":\"section\",\"settings\":{\"_title\":\"blank at bottom\"},\"elements\":[{\"id\":\"596f429\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(2938,458,'_elementor_edit_mode','builder'),(2939,458,'_elementor_elements_usage','a:9:{s:7:\"heading\";i:12;s:6:\"column\";i:21;s:7:\"section\";i:17;s:7:\"divider\";i:6;s:11:\"text-editor\";i:5;s:5:\"image\";i:9;s:5:\"video\";i:2;s:6:\"spacer\";i:2;s:6:\"button\";i:1;}'),(2940,458,'_elementor_css','a:5:{s:4:\"time\";i:1569107414;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:1:{i:0;s:0:\"\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(2943,459,'_elementor_version','2.6.8'),(2944,459,'_elementor_pro_version','2.6.5'),(2945,459,'_wp_page_template','default'),(2946,459,'_elementor_data','[{\"id\":\"55396f27\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":50,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Theatrical_Display_V003C.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_range\":\"viewport\",\"layout\":\"full_width\",\"column_position\":\"top\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"_title\":\"Section - INSIDIOUS HERO\"},\"elements\":[{\"id\":\"905a97c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ad7f3f6\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"162\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2489c07\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"c0bbe21\",\"elType\":\"widget\",\"settings\":{\"title\":\"#WHAT\'S COOL\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"dc881ae\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"18630a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"870a9ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"INNOVATIONS FROM ONDISPLAY CREATIVE\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7df48509\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"_title\":\"Section - LIVING STANDEES\"},\"elements\":[{\"id\":\"1147078d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"23bbc68\",\"elType\":\"widget\",\"settings\":{\"title\":\"LIVING STANDEES HAUNTING THEATERS\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b40d155\",\"elType\":\"widget\",\"settings\":{\"title\":\"ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"700\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86cff8b\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"225341d\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS \\u2013 THE LAST KEY\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a680ae8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"be59fa3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e36fe5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"d4d2039\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2.jpg\",\"id\":88},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3c9b758\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"79e122a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2-1.jpg\",\"id\":87},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3dc9df5\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"start\":0},\"elements\":[],\"widgetType\":\"video\"},{\"id\":\"b61a90b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"8f63560\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"08c588a\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS CHAPTER 3\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0e612c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>OnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7e77f5a\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"gap\":\"wide\"},\"elements\":[{\"id\":\"7eb5a21\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.332},\"elements\":[{\"id\":\"ae25867\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/image-asset.jpeg\",\"id\":196},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"24c773b\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":58},\"elements\":[{\"id\":\"93ad602\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/130807026\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"cb5dad6\",\"elType\":\"section\",\"settings\":{\"_title\":\"Inner Sedtion\"},\"elements\":[{\"id\":\"25cd114\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_title\":\"virtual reality experience\"},\"elements\":[{\"id\":\"15643ab\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"8ec2d0f\",\"elType\":\"widget\",\"settings\":{\"title\":\"VIRTUAL REALITY EXPERIENCE\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4e004ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"SPIDER-MAN HOMECOMING DISPLAY\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"73a2406\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Submerse yourself in the world of your friendly neighborhood Spider-Man in this fun and thrilling VR Theatrical Display.\\u00a0\\u00a0Based on the all-new 2017 film, the Spider-Man Homecoming VR Experience is a first-person look through the eyes of Spidey himself.<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"04b03b4\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7f4ffcc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"7f85dc5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":76,\"_title\":\"spiderman homecoming\"},\"elements\":[{\"id\":\"9a5a392\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Spidey_Home_V4_002.jpg\",\"id\":230},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"css_filters_css_filter\":\"custom\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"c16541a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":24,\"_title\":\"spiderman 2 vertical pics\"},\"elements\":[{\"id\":\"95b0eed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/IMG_3834.jpg\",\"id\":231},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8ea51a8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/IMG_3788.jpg\",\"id\":233}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"12d34c8\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"00\",\"bottom\":\"00\",\"left\":\"00\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"95003e6\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":435,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/TheStrangers_V01.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":7.6,\"sizes\":[]},\"layout\":\"full_width\",\"column_position\":\"top\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":68}},\"motion_fx_scale_effect\":\"yes\",\"_title\":\"Section - STRANGERS HERO\"},\"elements\":[{\"id\":\"b6deb1a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_title\":\"strangers prey at night\"},\"elements\":[{\"id\":\"7a350ee\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"70\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"ecd0cbe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"d684039\",\"elType\":\"widget\",\"settings\":{\"title\":\"THE STRANGERS PREY AT NIGHT\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"003eb99\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5fd9452\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"93ad64e\",\"elType\":\"widget\",\"settings\":{\"title\":\"GRAND FORMAT PHOTO-OP STANDEE\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"247aafb\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"_title\":\"Section - MARKETING AT ITS FINEST\"},\"elements\":[{\"id\":\"f002e93\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"d1321ed\",\"elType\":\"widget\",\"settings\":{\"title\":\"MARKETING AT ITS FINEST, TAILORED FOR SOCIAL MEDIA\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a16ef4e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>This theatrical display allows fans to take photos with Dollface, Pin-up Girl, the Man in the Mask and share their photos on social media.<\\/p>\",\"align\":\"center\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b58ab88\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"00ca412\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58},\"elements\":[{\"id\":\"032d3df\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/003.jpg\",\"id\":446},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"672c1f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42},\"elements\":[{\"id\":\"623f6d1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/26222472_170774200201231_6120473304701599744_n.jpg\",\"id\":447},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a641f07\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/VIDEO_COMING_SOON_01.jpg\",\"id\":449}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cf9e008\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"677b52c\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b747fda\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":700},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":900},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"_title\":\"our company bitches\"},\"elements\":[{\"id\":\"7eab781\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"43661634\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our company is a collective of amazing people striving to build delightful products.\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.4},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70cc6d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.<\\/p>\",\"align\":\"center\",\"text_color\":\"#686868\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"615dfb3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1000},\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"6414755f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3bb26eed\",\"elType\":\"widget\",\"settings\":{\"text\":\"Read More\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3},\"button_text_color\":\"#ffffff\",\"background_color\":\"rgba(0,0,0,0)\",\"hover_color\":\"#00ce1b\",\"button_hover_border_color\":\"#00ce1b\",\"hover_animation\":\"grow\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"123f6d1\",\"elType\":\"section\",\"settings\":{\"_title\":\"blank at bottom\"},\"elements\":[{\"id\":\"25fcf2e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"64f593f\",\"elType\":\"section\",\"settings\":{\"_title\":\"blank at bottom\"},\"elements\":[{\"id\":\"596f429\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(2947,459,'_elementor_edit_mode','builder'),(2948,459,'_elementor_elements_usage','a:9:{s:7:\"heading\";i:12;s:6:\"column\";i:21;s:7:\"section\";i:17;s:7:\"divider\";i:6;s:11:\"text-editor\";i:5;s:5:\"image\";i:9;s:5:\"video\";i:2;s:6:\"spacer\";i:2;s:6:\"button\";i:1;}'),(2949,459,'_elementor_css','a:5:{s:4:\"time\";i:1569107549;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:1:{i:0;s:0:\"\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(2951,460,'_elementor_template_type','post'),(2952,460,'_elementor_version','2.6.8'),(2953,460,'_elementor_pro_version','2.6.5'),(2954,460,'_wp_page_template','default'),(2955,460,'_elementor_data','[{\"id\":\"55396f27\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":50,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Theatrical_Display_V003C.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_range\":\"viewport\",\"layout\":\"full_width\",\"column_position\":\"top\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"_title\":\"Section - INSIDIOUS HERO\"},\"elements\":[{\"id\":\"905a97c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ad7f3f6\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"162\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2489c07\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"c0bbe21\",\"elType\":\"widget\",\"settings\":{\"title\":\"#WHAT\'S COOL\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"dc881ae\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"18630a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"870a9ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"INNOVATIONS FROM ONDISPLAY CREATIVE\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7df48509\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"_title\":\"Section - LIVING STANDEES\"},\"elements\":[{\"id\":\"1147078d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"23bbc68\",\"elType\":\"widget\",\"settings\":{\"title\":\"LIVING STANDEES HAUNTING THEATERS\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b40d155\",\"elType\":\"widget\",\"settings\":{\"title\":\"ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"700\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86cff8b\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"225341d\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS \\u2013 THE LAST KEY\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a680ae8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"be59fa3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e36fe5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"d4d2039\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2.jpg\",\"id\":88},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3c9b758\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"79e122a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2-1.jpg\",\"id\":87},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3dc9df5\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"start\":0},\"elements\":[],\"widgetType\":\"video\"},{\"id\":\"b61a90b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"8f63560\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"08c588a\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS CHAPTER 3\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0e612c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>OnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7e77f5a\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"gap\":\"wide\"},\"elements\":[{\"id\":\"7eb5a21\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.332},\"elements\":[{\"id\":\"ae25867\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/image-asset.jpeg\",\"id\":196},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"24c773b\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":58},\"elements\":[{\"id\":\"93ad602\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/130807026\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"cb5dad6\",\"elType\":\"section\",\"settings\":{\"_title\":\"Inner Sedtion\"},\"elements\":[{\"id\":\"25cd114\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_title\":\"virtual reality experience\"},\"elements\":[{\"id\":\"15643ab\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"8ec2d0f\",\"elType\":\"widget\",\"settings\":{\"title\":\"VIRTUAL REALITY EXPERIENCE\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4e004ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"SPIDER-MAN HOMECOMING DISPLAY\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"73a2406\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Submerse yourself in the world of your friendly neighborhood Spider-Man in this fun and thrilling VR Theatrical Display.\\u00a0\\u00a0Based on the all-new 2017 film, the Spider-Man Homecoming VR Experience is a first-person look through the eyes of Spidey himself.<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"04b03b4\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7f4ffcc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"7f85dc5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":76,\"_title\":\"spiderman homecoming\"},\"elements\":[{\"id\":\"9a5a392\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Spidey_Home_V4_002.jpg\",\"id\":230},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"css_filters_css_filter\":\"custom\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"c16541a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":24,\"_title\":\"spiderman 2 vertical pics\"},\"elements\":[{\"id\":\"95b0eed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/IMG_3834.jpg\",\"id\":231},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8ea51a8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/IMG_3788.jpg\",\"id\":233}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"12d34c8\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"00\",\"bottom\":\"00\",\"left\":\"00\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"95003e6\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":435,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/TheStrangers_V01.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":7.6,\"sizes\":[]},\"layout\":\"full_width\",\"column_position\":\"top\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":68}},\"motion_fx_scale_effect\":\"yes\",\"_title\":\"Section - STRANGERS HERO\"},\"elements\":[{\"id\":\"b6deb1a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_title\":\"strangers prey at night\"},\"elements\":[{\"id\":\"7a350ee\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"70\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"ecd0cbe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"d684039\",\"elType\":\"widget\",\"settings\":{\"title\":\"THE STRANGERS PREY AT NIGHT\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"003eb99\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5fd9452\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"93ad64e\",\"elType\":\"widget\",\"settings\":{\"title\":\"GRAND FORMAT PHOTO-OP STANDEE\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"247aafb\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"_title\":\"Section - MARKETING AT ITS FINEST\"},\"elements\":[{\"id\":\"f002e93\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"d1321ed\",\"elType\":\"widget\",\"settings\":{\"title\":\"MARKETING AT ITS FINEST, TAILORED FOR SOCIAL MEDIA\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a16ef4e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>This theatrical display allows fans to take photos with Dollface, Pin-up Girl, the Man in the Mask and share their photos on social media.<\\/p>\",\"align\":\"center\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b58ab88\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"00ca412\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58},\"elements\":[{\"id\":\"032d3df\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/003.jpg\",\"id\":446},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"672c1f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42},\"elements\":[{\"id\":\"623f6d1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/26222472_170774200201231_6120473304701599744_n.jpg\",\"id\":447},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a641f07\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/VIDEO_COMING_SOON_01.jpg\",\"id\":449}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cf9e008\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"677b52c\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b747fda\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":700},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":900},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"_title\":\"our company bitches\"},\"elements\":[{\"id\":\"7eab781\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"43661634\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our company is a collective of amazing people striving to build delightful products.\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.4},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70cc6d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.<\\/p>\",\"align\":\"center\",\"text_color\":\"#686868\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"615dfb3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1000},\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"6414755f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3bb26eed\",\"elType\":\"widget\",\"settings\":{\"text\":\"Read More\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3},\"button_text_color\":\"#ffffff\",\"background_color\":\"rgba(0,0,0,0)\",\"hover_color\":\"#00ce1b\",\"button_hover_border_color\":\"#00ce1b\",\"hover_animation\":\"grow\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"123f6d1\",\"elType\":\"section\",\"settings\":{\"_title\":\"blank at bottom\"},\"elements\":[{\"id\":\"25fcf2e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"64f593f\",\"elType\":\"section\",\"settings\":{\"_title\":\"blank at bottom\"},\"elements\":[{\"id\":\"596f429\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(2956,460,'_elementor_edit_mode','builder'),(2957,460,'_elementor_elements_usage','a:9:{s:7:\"heading\";i:12;s:6:\"column\";i:21;s:7:\"section\";i:17;s:7:\"divider\";i:6;s:11:\"text-editor\";i:5;s:5:\"image\";i:9;s:5:\"video\";i:2;s:6:\"spacer\";i:2;s:6:\"button\";i:1;}'),(2958,460,'_elementor_css','a:5:{s:4:\"time\";i:1569107575;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:1:{i:0;s:0:\"\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(2967,462,'_elementor_template_type','post'),(2959,461,'_elementor_template_type','post'),(2960,461,'_elementor_version','2.6.8'),(2961,461,'_elementor_pro_version','2.6.5'),(2962,461,'_wp_page_template','default'),(2963,461,'_elementor_data','[{\"id\":\"55396f27\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":50,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Theatrical_Display_V003C.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_range\":\"viewport\",\"layout\":\"full_width\",\"column_position\":\"top\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"_title\":\"Section - INSIDIOUS HERO\"},\"elements\":[{\"id\":\"905a97c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ad7f3f6\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"162\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2489c07\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"c0bbe21\",\"elType\":\"widget\",\"settings\":{\"title\":\"#WHAT\'S COOL\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"dc881ae\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"18630a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"870a9ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"INNOVATIONS FROM ONDISPLAY CREATIVE\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7df48509\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"_title\":\"Section - LIVING STANDEES\"},\"elements\":[{\"id\":\"1147078d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"23bbc68\",\"elType\":\"widget\",\"settings\":{\"title\":\"LIVING STANDEES HAUNTING THEATERS\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b40d155\",\"elType\":\"widget\",\"settings\":{\"title\":\"ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"700\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86cff8b\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"225341d\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS \\u2013 THE LAST KEY\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a680ae8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"be59fa3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e36fe5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"d4d2039\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2.jpg\",\"id\":88},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3c9b758\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"79e122a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2-1.jpg\",\"id\":87},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3dc9df5\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"start\":0},\"elements\":[],\"widgetType\":\"video\"},{\"id\":\"b61a90b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"8f63560\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"08c588a\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS CHAPTER 3\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0e612c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>OnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7e77f5a\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"gap\":\"wide\"},\"elements\":[{\"id\":\"7eb5a21\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.332},\"elements\":[{\"id\":\"ae25867\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/image-asset.jpeg\",\"id\":196},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"24c773b\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":58},\"elements\":[{\"id\":\"93ad602\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/130807026\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"cb5dad6\",\"elType\":\"section\",\"settings\":{\"_title\":\"Inner Sedtion\"},\"elements\":[{\"id\":\"25cd114\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_title\":\"virtual reality experience\"},\"elements\":[{\"id\":\"15643ab\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"8ec2d0f\",\"elType\":\"widget\",\"settings\":{\"title\":\"VIRTUAL REALITY EXPERIENCE\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4e004ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"SPIDER-MAN HOMECOMING DISPLAY\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"73a2406\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Submerse yourself in the world of your friendly neighborhood Spider-Man in this fun and thrilling VR Theatrical Display.\\u00a0\\u00a0Based on the all-new 2017 film, the Spider-Man Homecoming VR Experience is a first-person look through the eyes of Spidey himself.<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"04b03b4\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7f4ffcc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"7f85dc5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":76,\"_title\":\"spiderman homecoming\"},\"elements\":[{\"id\":\"9a5a392\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Spidey_Home_V4_002.jpg\",\"id\":230},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"css_filters_css_filter\":\"custom\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"c16541a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":24,\"_title\":\"spiderman 2 vertical pics\"},\"elements\":[{\"id\":\"95b0eed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/IMG_3834.jpg\",\"id\":231},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8ea51a8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/IMG_3788.jpg\",\"id\":233}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"12d34c8\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"00\",\"bottom\":\"00\",\"left\":\"00\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"95003e6\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":435,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/TheStrangers_V01.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":7.6,\"sizes\":[]},\"layout\":\"full_width\",\"column_position\":\"top\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":68}},\"motion_fx_scale_effect\":\"yes\",\"_title\":\"Section - STRANGERS HERO\",\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\"},\"elements\":[{\"id\":\"b6deb1a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_title\":\"strangers prey at night\"},\"elements\":[{\"id\":\"7a350ee\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"70\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"ecd0cbe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"d684039\",\"elType\":\"widget\",\"settings\":{\"title\":\"THE STRANGERS PREY AT NIGHT\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"003eb99\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5fd9452\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"93ad64e\",\"elType\":\"widget\",\"settings\":{\"title\":\"GRAND FORMAT PHOTO-OP STANDEE\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"247aafb\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"_title\":\"Section - MARKETING AT ITS FINEST\"},\"elements\":[{\"id\":\"f002e93\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"d1321ed\",\"elType\":\"widget\",\"settings\":{\"title\":\"MARKETING AT ITS FINEST, TAILORED FOR SOCIAL MEDIA\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a16ef4e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>This theatrical display allows fans to take photos with Dollface, Pin-up Girl, the Man in the Mask and share their photos on social media.<\\/p>\",\"align\":\"center\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b58ab88\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"00ca412\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58},\"elements\":[{\"id\":\"032d3df\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/003.jpg\",\"id\":446},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"672c1f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42},\"elements\":[{\"id\":\"623f6d1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/26222472_170774200201231_6120473304701599744_n.jpg\",\"id\":447},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a641f07\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/VIDEO_COMING_SOON_01.jpg\",\"id\":449}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cf9e008\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"677b52c\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b747fda\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":700},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":900},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"_title\":\"our company bitches\"},\"elements\":[{\"id\":\"7eab781\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"43661634\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our company is a collective of amazing people striving to build delightful products.\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.4},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70cc6d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.<\\/p>\",\"align\":\"center\",\"text_color\":\"#686868\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"615dfb3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1000},\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"6414755f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3bb26eed\",\"elType\":\"widget\",\"settings\":{\"text\":\"Read More\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3},\"button_text_color\":\"#ffffff\",\"background_color\":\"rgba(0,0,0,0)\",\"hover_color\":\"#00ce1b\",\"button_hover_border_color\":\"#00ce1b\",\"hover_animation\":\"grow\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"123f6d1\",\"elType\":\"section\",\"settings\":{\"_title\":\"blank at bottom\"},\"elements\":[{\"id\":\"25fcf2e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"64f593f\",\"elType\":\"section\",\"settings\":{\"_title\":\"blank at bottom\"},\"elements\":[{\"id\":\"596f429\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(2964,461,'_elementor_edit_mode','builder'),(2965,461,'_elementor_elements_usage','a:9:{s:7:\"heading\";i:12;s:6:\"column\";i:21;s:7:\"section\";i:17;s:7:\"divider\";i:6;s:11:\"text-editor\";i:5;s:5:\"image\";i:9;s:5:\"video\";i:2;s:6:\"spacer\";i:2;s:6:\"button\";i:1;}'),(2966,461,'_elementor_css','a:5:{s:4:\"time\";i:1569107575;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:1:{i:0;s:0:\"\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(2970,462,'_wp_page_template','default'),(2971,462,'_elementor_data','[{\"id\":\"55396f27\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":50,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Theatrical_Display_V003C.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_range\":\"viewport\",\"layout\":\"full_width\",\"column_position\":\"top\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"_title\":\"Section - INSIDIOUS HERO\"},\"elements\":[{\"id\":\"905a97c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ad7f3f6\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"162\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2489c07\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"c0bbe21\",\"elType\":\"widget\",\"settings\":{\"title\":\"#WHAT\'S COOL\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"dc881ae\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"18630a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"870a9ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"INNOVATIONS FROM ONDISPLAY CREATIVE\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7df48509\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"_title\":\"Section - LIVING STANDEES\"},\"elements\":[{\"id\":\"1147078d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"23bbc68\",\"elType\":\"widget\",\"settings\":{\"title\":\"LIVING STANDEES HAUNTING THEATERS\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b40d155\",\"elType\":\"widget\",\"settings\":{\"title\":\"ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"700\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86cff8b\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"225341d\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS \\u2013 THE LAST KEY\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a680ae8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"be59fa3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e36fe5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"d4d2039\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2.jpg\",\"id\":88},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3c9b758\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"79e122a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2-1.jpg\",\"id\":87},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3dc9df5\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"start\":0},\"elements\":[],\"widgetType\":\"video\"},{\"id\":\"b61a90b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"8f63560\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"08c588a\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS CHAPTER 3\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0e612c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>OnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7e77f5a\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"gap\":\"wide\"},\"elements\":[{\"id\":\"7eb5a21\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.332},\"elements\":[{\"id\":\"ae25867\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/image-asset.jpeg\",\"id\":196},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"24c773b\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":58},\"elements\":[{\"id\":\"93ad602\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/130807026\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"cb5dad6\",\"elType\":\"section\",\"settings\":{\"_title\":\"Inner Sedtion\"},\"elements\":[{\"id\":\"25cd114\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_title\":\"virtual reality experience\"},\"elements\":[{\"id\":\"15643ab\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"8ec2d0f\",\"elType\":\"widget\",\"settings\":{\"title\":\"VIRTUAL REALITY EXPERIENCE\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4e004ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"SPIDER-MAN HOMECOMING DISPLAY\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"73a2406\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Submerse yourself in the world of your friendly neighborhood Spider-Man in this fun and thrilling VR Theatrical Display.\\u00a0\\u00a0Based on the all-new 2017 film, the Spider-Man Homecoming VR Experience is a first-person look through the eyes of Spidey himself.<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"04b03b4\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7f4ffcc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"7f85dc5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":76,\"_title\":\"spiderman homecoming\"},\"elements\":[{\"id\":\"9a5a392\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Spidey_Home_V4_002.jpg\",\"id\":230},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"css_filters_css_filter\":\"custom\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"c16541a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":24,\"_title\":\"spiderman 2 vertical pics\"},\"elements\":[{\"id\":\"95b0eed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/IMG_3834.jpg\",\"id\":231},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8ea51a8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/IMG_3788.jpg\",\"id\":233}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"12d34c8\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"00\",\"bottom\":\"00\",\"left\":\"00\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"95003e6\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":435,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/TheStrangers_V01.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":7.6,\"sizes\":[]},\"layout\":\"full_width\",\"column_position\":\"top\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":68}},\"_title\":\"Section - STRANGERS HERO\",\"motion_fx_translateY_effect\":\"yes\"},\"elements\":[{\"id\":\"b6deb1a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_title\":\"strangers prey at night\"},\"elements\":[{\"id\":\"7a350ee\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"70\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"ecd0cbe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"d684039\",\"elType\":\"widget\",\"settings\":{\"title\":\"THE STRANGERS PREY AT NIGHT\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"003eb99\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5fd9452\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"93ad64e\",\"elType\":\"widget\",\"settings\":{\"title\":\"GRAND FORMAT PHOTO-OP STANDEE\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"247aafb\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"_title\":\"Section - MARKETING AT ITS FINEST\"},\"elements\":[{\"id\":\"f002e93\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"d1321ed\",\"elType\":\"widget\",\"settings\":{\"title\":\"MARKETING AT ITS FINEST, TAILORED FOR SOCIAL MEDIA\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a16ef4e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>This theatrical display allows fans to take photos with Dollface, Pin-up Girl, the Man in the Mask and share their photos on social media.<\\/p>\",\"align\":\"center\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b58ab88\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"00ca412\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58},\"elements\":[{\"id\":\"032d3df\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/003.jpg\",\"id\":446},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"672c1f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42},\"elements\":[{\"id\":\"623f6d1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/26222472_170774200201231_6120473304701599744_n.jpg\",\"id\":447},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a641f07\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/VIDEO_COMING_SOON_01.jpg\",\"id\":449}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cf9e008\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"677b52c\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b747fda\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":700},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":900},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"_title\":\"our company bitches\"},\"elements\":[{\"id\":\"7eab781\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"43661634\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our company is a collective of amazing people striving to build delightful products.\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.4},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70cc6d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.<\\/p>\",\"align\":\"center\",\"text_color\":\"#686868\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"615dfb3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1000},\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"6414755f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3bb26eed\",\"elType\":\"widget\",\"settings\":{\"text\":\"Read More\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3},\"button_text_color\":\"#ffffff\",\"background_color\":\"rgba(0,0,0,0)\",\"hover_color\":\"#00ce1b\",\"button_hover_border_color\":\"#00ce1b\",\"hover_animation\":\"grow\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"123f6d1\",\"elType\":\"section\",\"settings\":{\"_title\":\"blank at bottom\"},\"elements\":[{\"id\":\"25fcf2e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"64f593f\",\"elType\":\"section\",\"settings\":{\"_title\":\"blank at bottom\"},\"elements\":[{\"id\":\"596f429\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(2972,462,'_elementor_edit_mode','builder'),(2973,462,'_elementor_elements_usage','a:9:{s:7:\"heading\";i:12;s:6:\"column\";i:21;s:7:\"section\";i:17;s:7:\"divider\";i:6;s:11:\"text-editor\";i:5;s:5:\"image\";i:9;s:5:\"video\";i:2;s:6:\"spacer\";i:2;s:6:\"button\";i:1;}'),(2982,464,'_elementor_template_type','post'),(2983,464,'_elementor_version','2.6.8'),(2984,464,'_elementor_pro_version','2.6.5'),(2985,464,'_wp_page_template','default'),(2986,464,'_elementor_data','[{\"id\":\"55396f27\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":50,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Theatrical_Display_V003C.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_range\":\"viewport\",\"layout\":\"full_width\",\"column_position\":\"top\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"_title\":\"Section - INSIDIOUS HERO\",\"motion_fx_motion_fx_scrolling\":\"yes\"},\"elements\":[{\"id\":\"905a97c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ad7f3f6\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"162\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2489c07\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"c0bbe21\",\"elType\":\"widget\",\"settings\":{\"title\":\"#WHAT\'S COOL\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"dc881ae\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"18630a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"870a9ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"INNOVATIONS FROM ONDISPLAY CREATIVE\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7df48509\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"_title\":\"Section - LIVING STANDEES\"},\"elements\":[{\"id\":\"1147078d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"23bbc68\",\"elType\":\"widget\",\"settings\":{\"title\":\"LIVING STANDEES HAUNTING THEATERS\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b40d155\",\"elType\":\"widget\",\"settings\":{\"title\":\"ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"700\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86cff8b\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"225341d\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS \\u2013 THE LAST KEY\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a680ae8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"be59fa3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e36fe5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"d4d2039\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2.jpg\",\"id\":88},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3c9b758\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"79e122a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2-1.jpg\",\"id\":87},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3dc9df5\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"start\":0},\"elements\":[],\"widgetType\":\"video\"},{\"id\":\"b61a90b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"8f63560\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"08c588a\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS CHAPTER 3\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0e612c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>OnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7e77f5a\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"gap\":\"wide\"},\"elements\":[{\"id\":\"7eb5a21\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.332},\"elements\":[{\"id\":\"ae25867\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/image-asset.jpeg\",\"id\":196},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"24c773b\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":58},\"elements\":[{\"id\":\"93ad602\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/130807026\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"cb5dad6\",\"elType\":\"section\",\"settings\":{\"_title\":\"Inner Sedtion\"},\"elements\":[{\"id\":\"25cd114\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_title\":\"virtual reality experience\"},\"elements\":[{\"id\":\"15643ab\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"8ec2d0f\",\"elType\":\"widget\",\"settings\":{\"title\":\"VIRTUAL REALITY EXPERIENCE\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4e004ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"SPIDER-MAN HOMECOMING DISPLAY\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"73a2406\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Submerse yourself in the world of your friendly neighborhood Spider-Man in this fun and thrilling VR Theatrical Display.\\u00a0\\u00a0Based on the all-new 2017 film, the Spider-Man Homecoming VR Experience is a first-person look through the eyes of Spidey himself.<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"04b03b4\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7f4ffcc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"7f85dc5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":76,\"_title\":\"spiderman homecoming\"},\"elements\":[{\"id\":\"9a5a392\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Spidey_Home_V4_002.jpg\",\"id\":230},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"css_filters_css_filter\":\"custom\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"c16541a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":24,\"_title\":\"spiderman 2 vertical pics\"},\"elements\":[{\"id\":\"95b0eed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/IMG_3834.jpg\",\"id\":231},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8ea51a8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/IMG_3788.jpg\",\"id\":233}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"12d34c8\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"00\",\"bottom\":\"00\",\"left\":\"00\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"95003e6\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":435,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/TheStrangers_V01.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":7.6,\"sizes\":[]},\"layout\":\"full_width\",\"column_position\":\"top\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":68}},\"_title\":\"Section - STRANGERS HERO\",\"motion_fx_translateY_effect\":\"yes\"},\"elements\":[{\"id\":\"b6deb1a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_title\":\"strangers prey at night\"},\"elements\":[{\"id\":\"7a350ee\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"70\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"ecd0cbe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"d684039\",\"elType\":\"widget\",\"settings\":{\"title\":\"THE STRANGERS PREY AT NIGHT\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"003eb99\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5fd9452\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"93ad64e\",\"elType\":\"widget\",\"settings\":{\"title\":\"GRAND FORMAT PHOTO-OP STANDEE\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"247aafb\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"_title\":\"Section - MARKETING AT ITS FINEST\"},\"elements\":[{\"id\":\"f002e93\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"d1321ed\",\"elType\":\"widget\",\"settings\":{\"title\":\"MARKETING AT ITS FINEST, TAILORED FOR SOCIAL MEDIA\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a16ef4e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>This theatrical display allows fans to take photos with Dollface, Pin-up Girl, the Man in the Mask and share their photos on social media.<\\/p>\",\"align\":\"center\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b58ab88\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"00ca412\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58},\"elements\":[{\"id\":\"032d3df\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/003.jpg\",\"id\":446},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"672c1f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42},\"elements\":[{\"id\":\"623f6d1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/26222472_170774200201231_6120473304701599744_n.jpg\",\"id\":447},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a641f07\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/VIDEO_COMING_SOON_01.jpg\",\"id\":449}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cf9e008\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"677b52c\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b747fda\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":700},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":900},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"_title\":\"our company bitches\"},\"elements\":[{\"id\":\"7eab781\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"43661634\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our company is a collective of amazing people striving to build delightful products.\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.4},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70cc6d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.<\\/p>\",\"align\":\"center\",\"text_color\":\"#686868\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"615dfb3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1000},\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"6414755f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3bb26eed\",\"elType\":\"widget\",\"settings\":{\"text\":\"Read More\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3},\"button_text_color\":\"#ffffff\",\"background_color\":\"rgba(0,0,0,0)\",\"hover_color\":\"#00ce1b\",\"button_hover_border_color\":\"#00ce1b\",\"hover_animation\":\"grow\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"123f6d1\",\"elType\":\"section\",\"settings\":{\"_title\":\"blank at bottom\"},\"elements\":[{\"id\":\"25fcf2e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"64f593f\",\"elType\":\"section\",\"settings\":{\"_title\":\"blank at bottom\"},\"elements\":[{\"id\":\"596f429\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(2974,463,'_elementor_template_type','post'),(2975,463,'_elementor_version','2.6.8'),(2976,463,'_elementor_pro_version','2.6.5'),(2977,463,'_wp_page_template','default'),(2978,463,'_elementor_data','[{\"id\":\"55396f27\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":50,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Theatrical_Display_V003C.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_range\":\"viewport\",\"layout\":\"full_width\",\"column_position\":\"top\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"_title\":\"Section - INSIDIOUS HERO\"},\"elements\":[{\"id\":\"905a97c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ad7f3f6\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"162\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2489c07\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"c0bbe21\",\"elType\":\"widget\",\"settings\":{\"title\":\"#WHAT\'S COOL\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"dc881ae\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"18630a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"870a9ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"INNOVATIONS FROM ONDISPLAY CREATIVE\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7df48509\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"_title\":\"Section - LIVING STANDEES\"},\"elements\":[{\"id\":\"1147078d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"23bbc68\",\"elType\":\"widget\",\"settings\":{\"title\":\"LIVING STANDEES HAUNTING THEATERS\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b40d155\",\"elType\":\"widget\",\"settings\":{\"title\":\"ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"700\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86cff8b\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"225341d\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS \\u2013 THE LAST KEY\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a680ae8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"be59fa3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e36fe5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"d4d2039\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2.jpg\",\"id\":88},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3c9b758\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"79e122a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2-1.jpg\",\"id\":87},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3dc9df5\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"start\":0},\"elements\":[],\"widgetType\":\"video\"},{\"id\":\"b61a90b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"8f63560\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"08c588a\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS CHAPTER 3\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0e612c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>OnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7e77f5a\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"gap\":\"wide\"},\"elements\":[{\"id\":\"7eb5a21\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.332},\"elements\":[{\"id\":\"ae25867\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/image-asset.jpeg\",\"id\":196},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"24c773b\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":58},\"elements\":[{\"id\":\"93ad602\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/130807026\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"cb5dad6\",\"elType\":\"section\",\"settings\":{\"_title\":\"Inner Sedtion\"},\"elements\":[{\"id\":\"25cd114\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_title\":\"virtual reality experience\"},\"elements\":[{\"id\":\"15643ab\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"8ec2d0f\",\"elType\":\"widget\",\"settings\":{\"title\":\"VIRTUAL REALITY EXPERIENCE\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4e004ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"SPIDER-MAN HOMECOMING DISPLAY\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"73a2406\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Submerse yourself in the world of your friendly neighborhood Spider-Man in this fun and thrilling VR Theatrical Display.\\u00a0\\u00a0Based on the all-new 2017 film, the Spider-Man Homecoming VR Experience is a first-person look through the eyes of Spidey himself.<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"04b03b4\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7f4ffcc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"7f85dc5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":76,\"_title\":\"spiderman homecoming\"},\"elements\":[{\"id\":\"9a5a392\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Spidey_Home_V4_002.jpg\",\"id\":230},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"css_filters_css_filter\":\"custom\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"c16541a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":24,\"_title\":\"spiderman 2 vertical pics\"},\"elements\":[{\"id\":\"95b0eed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/IMG_3834.jpg\",\"id\":231},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8ea51a8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/IMG_3788.jpg\",\"id\":233}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"12d34c8\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"00\",\"bottom\":\"00\",\"left\":\"00\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"95003e6\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":435,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/TheStrangers_V01.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":7.6,\"sizes\":[]},\"layout\":\"full_width\",\"column_position\":\"top\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":68}},\"_title\":\"Section - STRANGERS HERO\",\"motion_fx_translateY_effect\":\"yes\"},\"elements\":[{\"id\":\"b6deb1a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_title\":\"strangers prey at night\"},\"elements\":[{\"id\":\"7a350ee\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"70\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"ecd0cbe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"d684039\",\"elType\":\"widget\",\"settings\":{\"title\":\"THE STRANGERS PREY AT NIGHT\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"003eb99\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5fd9452\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"93ad64e\",\"elType\":\"widget\",\"settings\":{\"title\":\"GRAND FORMAT PHOTO-OP STANDEE\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"247aafb\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"_title\":\"Section - MARKETING AT ITS FINEST\"},\"elements\":[{\"id\":\"f002e93\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"d1321ed\",\"elType\":\"widget\",\"settings\":{\"title\":\"MARKETING AT ITS FINEST, TAILORED FOR SOCIAL MEDIA\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a16ef4e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>This theatrical display allows fans to take photos with Dollface, Pin-up Girl, the Man in the Mask and share their photos on social media.<\\/p>\",\"align\":\"center\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b58ab88\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"00ca412\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58},\"elements\":[{\"id\":\"032d3df\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/003.jpg\",\"id\":446},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"672c1f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42},\"elements\":[{\"id\":\"623f6d1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/26222472_170774200201231_6120473304701599744_n.jpg\",\"id\":447},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a641f07\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/VIDEO_COMING_SOON_01.jpg\",\"id\":449}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cf9e008\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"677b52c\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"904fd2e\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":435,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/TheStrangers_V01.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":7.6,\"sizes\":[]},\"layout\":\"full_width\",\"column_position\":\"top\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":68}},\"_title\":\"Section - STRANGERS HERO\",\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"motion_fx_translateY_effect\":\"yes\"},\"elements\":[{\"id\":\"249cba8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_title\":\"strangers prey at night\",\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_motion_fx_translateY_effect\":\"yes\",\"background_motion_fx_mouseTrack_effect\":\"yes\",\"background_motion_fx_mouseTrack_direction\":\"negative\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[{\"id\":\"18125b8\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"70\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"3fc34a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"e3489ed\",\"elType\":\"widget\",\"settings\":{\"title\":\"THE STRANGERS PREY AT NIGHT\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"c91b1f3\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5611ce0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"2b190a0\",\"elType\":\"widget\",\"settings\":{\"title\":\"GRAND FORMAT PHOTO-OP STANDEE\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b747fda\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":700},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":900},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"_title\":\"our company bitches\"},\"elements\":[{\"id\":\"7eab781\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"43661634\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our company is a collective of amazing people striving to build delightful products.\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.4},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70cc6d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.<\\/p>\",\"align\":\"center\",\"text_color\":\"#686868\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"615dfb3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1000},\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"6414755f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3bb26eed\",\"elType\":\"widget\",\"settings\":{\"text\":\"Read More\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3},\"button_text_color\":\"#ffffff\",\"background_color\":\"rgba(0,0,0,0)\",\"hover_color\":\"#00ce1b\",\"button_hover_border_color\":\"#00ce1b\",\"hover_animation\":\"grow\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"123f6d1\",\"elType\":\"section\",\"settings\":{\"_title\":\"blank at bottom\"},\"elements\":[{\"id\":\"25fcf2e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"64f593f\",\"elType\":\"section\",\"settings\":{\"_title\":\"blank at bottom\"},\"elements\":[{\"id\":\"596f429\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(2979,463,'_elementor_edit_mode','builder'),(2980,463,'_elementor_elements_usage','a:9:{s:7:\"heading\";i:14;s:6:\"column\";i:24;s:7:\"section\";i:20;s:7:\"divider\";i:6;s:11:\"text-editor\";i:5;s:5:\"image\";i:9;s:5:\"video\";i:2;s:6:\"spacer\";i:2;s:6:\"button\";i:1;}'),(3454,515,'_wp_attached_file','2019/09/FREEBIRDS_V1B.jpg'),(3455,515,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2500;s:6:\"height\";i:1736;s:4:\"file\";s:25:\"2019/09/FREEBIRDS_V1B.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"FREEBIRDS_V1B-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"FREEBIRDS_V1B-300x208.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:208;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:25:\"FREEBIRDS_V1B-768x533.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:533;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:26:\"FREEBIRDS_V1B-1024x711.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:711;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2987,464,'_elementor_edit_mode','builder'),(2988,464,'_elementor_elements_usage','a:9:{s:7:\"heading\";i:12;s:6:\"column\";i:21;s:7:\"section\";i:17;s:7:\"divider\";i:6;s:11:\"text-editor\";i:5;s:5:\"image\";i:9;s:5:\"video\";i:2;s:6:\"spacer\";i:2;s:6:\"button\";i:1;}'),(2989,464,'_elementor_css','a:5:{s:4:\"time\";i:1569108510;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:1:{i:0;s:0:\"\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(2991,465,'_elementor_template_type','post'),(2992,465,'_elementor_version','2.6.8'),(2993,465,'_elementor_pro_version','2.6.5'),(2994,465,'_wp_page_template','default'),(2995,465,'_elementor_data','[{\"id\":\"55396f27\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":50,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Theatrical_Display_V003C.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"motion_fx_range\":\"viewport\",\"layout\":\"full_width\",\"column_position\":\"top\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"_title\":\"Section - INSIDIOUS HERO\",\"motion_fx_motion_fx_scrolling\":\"yes\"},\"elements\":[{\"id\":\"905a97c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ad7f3f6\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"162\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2489c07\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"c0bbe21\",\"elType\":\"widget\",\"settings\":{\"title\":\"#WHAT\'S COOL\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"dc881ae\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"18630a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"870a9ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"INNOVATIONS FROM ONDISPLAY CREATIVE\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7df48509\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"_title\":\"Section - LIVING STANDEES\"},\"elements\":[{\"id\":\"1147078d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"23bbc68\",\"elType\":\"widget\",\"settings\":{\"title\":\"LIVING STANDEES HAUNTING THEATERS\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b40d155\",\"elType\":\"widget\",\"settings\":{\"title\":\"ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"700\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86cff8b\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"225341d\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS \\u2013 THE LAST KEY\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a680ae8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"be59fa3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e36fe5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"d4d2039\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2.jpg\",\"id\":88},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3c9b758\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"79e122a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2-1.jpg\",\"id\":87},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3dc9df5\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"start\":0},\"elements\":[],\"widgetType\":\"video\"},{\"id\":\"b61a90b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"8f63560\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"08c588a\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS CHAPTER 3\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0e612c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>OnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7e77f5a\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"gap\":\"wide\"},\"elements\":[{\"id\":\"7eb5a21\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.332},\"elements\":[{\"id\":\"ae25867\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/image-asset.jpeg\",\"id\":196},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"24c773b\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":58},\"elements\":[{\"id\":\"93ad602\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/130807026\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"cb5dad6\",\"elType\":\"section\",\"settings\":{\"_title\":\"Inner Sedtion\"},\"elements\":[{\"id\":\"25cd114\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_title\":\"virtual reality experience\"},\"elements\":[{\"id\":\"15643ab\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"8ec2d0f\",\"elType\":\"widget\",\"settings\":{\"title\":\"VIRTUAL REALITY EXPERIENCE\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4e004ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"SPIDER-MAN HOMECOMING DISPLAY\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"73a2406\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Submerse yourself in the world of your friendly neighborhood Spider-Man in this fun and thrilling VR Theatrical Display.\\u00a0\\u00a0Based on the all-new 2017 film, the Spider-Man Homecoming VR Experience is a first-person look through the eyes of Spidey himself.<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"04b03b4\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7f4ffcc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"7f85dc5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":76,\"_title\":\"spiderman homecoming\"},\"elements\":[{\"id\":\"9a5a392\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Spidey_Home_V4_002.jpg\",\"id\":230},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"css_filters_css_filter\":\"custom\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"c16541a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":24,\"_title\":\"spiderman 2 vertical pics\"},\"elements\":[{\"id\":\"95b0eed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/IMG_3834.jpg\",\"id\":231},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8ea51a8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/IMG_3788.jpg\",\"id\":233}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"12d34c8\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"00\",\"bottom\":\"00\",\"left\":\"00\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"95003e6\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":435,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/TheStrangers_V01.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":7.6,\"sizes\":[]},\"layout\":\"full_width\",\"column_position\":\"top\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":68}},\"_title\":\"Section - STRANGERS HERO\",\"motion_fx_translateY_effect\":\"yes\"},\"elements\":[{\"id\":\"b6deb1a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_title\":\"strangers prey at night\"},\"elements\":[{\"id\":\"7a350ee\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"70\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"ecd0cbe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"d684039\",\"elType\":\"widget\",\"settings\":{\"title\":\"THE STRANGERS PREY AT NIGHT\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"003eb99\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5fd9452\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"93ad64e\",\"elType\":\"widget\",\"settings\":{\"title\":\"GRAND FORMAT PHOTO-OP STANDEE\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"247aafb\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"_title\":\"Section - MARKETING AT ITS FINEST\"},\"elements\":[{\"id\":\"f002e93\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"d1321ed\",\"elType\":\"widget\",\"settings\":{\"title\":\"MARKETING AT ITS FINEST, TAILORED FOR SOCIAL MEDIA\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a16ef4e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>This theatrical display allows fans to take photos with Dollface, Pin-up Girl, the Man in the Mask and share their photos on social media.<\\/p>\",\"align\":\"center\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b58ab88\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"00ca412\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58},\"elements\":[{\"id\":\"032d3df\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/003.jpg\",\"id\":446},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"672c1f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42},\"elements\":[{\"id\":\"623f6d1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/26222472_170774200201231_6120473304701599744_n.jpg\",\"id\":447},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a641f07\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/VIDEO_COMING_SOON_01.jpg\",\"id\":449}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cf9e008\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"677b52c\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b747fda\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":700},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":900},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"_title\":\"our company bitches\"},\"elements\":[{\"id\":\"7eab781\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"43661634\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our company is a collective of amazing people striving to build delightful products.\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.4},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70cc6d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.<\\/p>\",\"align\":\"center\",\"text_color\":\"#686868\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"615dfb3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1000},\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"6414755f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3bb26eed\",\"elType\":\"widget\",\"settings\":{\"text\":\"Read More\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3},\"button_text_color\":\"#ffffff\",\"background_color\":\"rgba(0,0,0,0)\",\"hover_color\":\"#00ce1b\",\"button_hover_border_color\":\"#00ce1b\",\"hover_animation\":\"grow\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"123f6d1\",\"elType\":\"section\",\"settings\":{\"_title\":\"blank at bottom\"},\"elements\":[{\"id\":\"25fcf2e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"64f593f\",\"elType\":\"section\",\"settings\":{\"_title\":\"blank at bottom\"},\"elements\":[{\"id\":\"596f429\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(2996,465,'_elementor_edit_mode','builder'),(2997,465,'_elementor_elements_usage','a:9:{s:7:\"heading\";i:12;s:6:\"column\";i:21;s:7:\"section\";i:17;s:7:\"divider\";i:6;s:11:\"text-editor\";i:5;s:5:\"image\";i:9;s:5:\"video\";i:2;s:6:\"spacer\";i:2;s:6:\"button\";i:1;}'),(2998,465,'_elementor_css','a:5:{s:4:\"time\";i:1569108609;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:1:{i:0;s:0:\"\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(3000,466,'_elementor_template_type','post'),(3001,466,'_elementor_version','2.6.8'),(3002,466,'_elementor_pro_version','2.6.5'),(3003,466,'_wp_page_template','default'),(3004,466,'_elementor_data','[{\"id\":\"55396f27\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":50,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Theatrical_Display_V003C.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"motion_fx_range\":\"viewport\",\"layout\":\"full_width\",\"column_position\":\"top\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"_title\":\"Section - INSIDIOUS HERO\",\"motion_fx_motion_fx_scrolling\":\"yes\"},\"elements\":[{\"id\":\"905a97c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ad7f3f6\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"162\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2489c07\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"c0bbe21\",\"elType\":\"widget\",\"settings\":{\"title\":\"#WHAT\'S COOL\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"dc881ae\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"18630a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"870a9ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"INNOVATIONS FROM ONDISPLAY CREATIVE\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7df48509\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"_title\":\"Section - LIVING STANDEES\"},\"elements\":[{\"id\":\"1147078d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"23bbc68\",\"elType\":\"widget\",\"settings\":{\"title\":\"LIVING STANDEES HAUNTING THEATERS\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b40d155\",\"elType\":\"widget\",\"settings\":{\"title\":\"ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"700\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86cff8b\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"225341d\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS \\u2013 THE LAST KEY\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a680ae8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"be59fa3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e36fe5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"d4d2039\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2.jpg\",\"id\":88},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3c9b758\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"79e122a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2-1.jpg\",\"id\":87},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3dc9df5\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"start\":0},\"elements\":[],\"widgetType\":\"video\"},{\"id\":\"b61a90b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"8f63560\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"08c588a\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS CHAPTER 3\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0e612c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>OnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7e77f5a\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"gap\":\"wide\"},\"elements\":[{\"id\":\"7eb5a21\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.332},\"elements\":[{\"id\":\"ae25867\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/image-asset.jpeg\",\"id\":196},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"24c773b\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":58},\"elements\":[{\"id\":\"93ad602\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/130807026\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"cb5dad6\",\"elType\":\"section\",\"settings\":{\"_title\":\"Inner Sedtion\"},\"elements\":[{\"id\":\"25cd114\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_title\":\"virtual reality experience\"},\"elements\":[{\"id\":\"15643ab\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"8ec2d0f\",\"elType\":\"widget\",\"settings\":{\"title\":\"VIRTUAL REALITY EXPERIENCE\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4e004ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"SPIDER-MAN HOMECOMING DISPLAY\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"73a2406\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Submerse yourself in the world of your friendly neighborhood Spider-Man in this fun and thrilling VR Theatrical Display.\\u00a0\\u00a0Based on the all-new 2017 film, the Spider-Man Homecoming VR Experience is a first-person look through the eyes of Spidey himself.<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"04b03b4\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7f4ffcc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"7f85dc5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":76,\"_title\":\"spiderman homecoming\"},\"elements\":[{\"id\":\"9a5a392\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Spidey_Home_V4_002.jpg\",\"id\":230},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"css_filters_css_filter\":\"custom\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"c16541a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":24,\"_title\":\"spiderman 2 vertical pics\"},\"elements\":[{\"id\":\"95b0eed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/IMG_3834.jpg\",\"id\":231},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8ea51a8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/IMG_3788.jpg\",\"id\":233}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"12d34c8\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"00\",\"bottom\":\"00\",\"left\":\"00\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"95003e6\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":435,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/TheStrangers_V01.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":4.9,\"sizes\":[]},\"layout\":\"full_width\",\"column_position\":\"top\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":68}},\"_title\":\"Section - STRANGERS HERO\",\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\"},\"elements\":[{\"id\":\"b6deb1a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_title\":\"strangers prey at night\"},\"elements\":[{\"id\":\"7a350ee\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"70\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"ecd0cbe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"d684039\",\"elType\":\"widget\",\"settings\":{\"title\":\"THE STRANGERS PREY AT NIGHT\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"003eb99\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5fd9452\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"93ad64e\",\"elType\":\"widget\",\"settings\":{\"title\":\"GRAND FORMAT PHOTO-OP STANDEE\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"247aafb\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"_title\":\"Section - MARKETING AT ITS FINEST\"},\"elements\":[{\"id\":\"f002e93\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"d1321ed\",\"elType\":\"widget\",\"settings\":{\"title\":\"MARKETING AT ITS FINEST, TAILORED FOR SOCIAL MEDIA\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a16ef4e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>This theatrical display allows fans to take photos with Dollface, Pin-up Girl, the Man in the Mask and share their photos on social media.<\\/p>\",\"align\":\"center\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b58ab88\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"00ca412\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58},\"elements\":[{\"id\":\"032d3df\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/003.jpg\",\"id\":446},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"672c1f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42},\"elements\":[{\"id\":\"623f6d1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/26222472_170774200201231_6120473304701599744_n.jpg\",\"id\":447},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a641f07\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/VIDEO_COMING_SOON_01.jpg\",\"id\":449}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cf9e008\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"677b52c\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b747fda\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":700},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":900},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"_title\":\"our company bitches\"},\"elements\":[{\"id\":\"7eab781\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"43661634\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our company is a collective of amazing people striving to build delightful products.\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.4},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70cc6d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.<\\/p>\",\"align\":\"center\",\"text_color\":\"#686868\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"615dfb3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1000},\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"6414755f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3bb26eed\",\"elType\":\"widget\",\"settings\":{\"text\":\"Read More\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3},\"button_text_color\":\"#ffffff\",\"background_color\":\"rgba(0,0,0,0)\",\"hover_color\":\"#00ce1b\",\"button_hover_border_color\":\"#00ce1b\",\"hover_animation\":\"grow\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"123f6d1\",\"elType\":\"section\",\"settings\":{\"_title\":\"blank at bottom\"},\"elements\":[{\"id\":\"25fcf2e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"64f593f\",\"elType\":\"section\",\"settings\":{\"_title\":\"blank at bottom\"},\"elements\":[{\"id\":\"596f429\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(3005,466,'_elementor_edit_mode','builder'),(3006,466,'_elementor_elements_usage','a:9:{s:7:\"heading\";i:12;s:6:\"column\";i:21;s:7:\"section\";i:17;s:7:\"divider\";i:6;s:11:\"text-editor\";i:5;s:5:\"image\";i:9;s:5:\"video\";i:2;s:6:\"spacer\";i:2;s:6:\"button\";i:1;}'),(3007,466,'_elementor_css','a:5:{s:4:\"time\";i:1569108722;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:1:{i:0;s:0:\"\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(3009,467,'_elementor_template_type','post'),(3010,467,'_elementor_version','2.6.8'),(3011,467,'_elementor_pro_version','2.6.5'),(3012,467,'_wp_page_template','default'),(3013,467,'_elementor_data','[{\"id\":\"55396f27\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":50,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Theatrical_Display_V003C.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"motion_fx_range\":\"viewport\",\"layout\":\"full_width\",\"column_position\":\"top\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"_title\":\"Section - INSIDIOUS HERO\",\"motion_fx_motion_fx_scrolling\":\"yes\"},\"elements\":[{\"id\":\"905a97c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ad7f3f6\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"162\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2489c07\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"c0bbe21\",\"elType\":\"widget\",\"settings\":{\"title\":\"#WHAT\'S COOL\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"dc881ae\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"18630a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"870a9ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"INNOVATIONS FROM ONDISPLAY CREATIVE\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7df48509\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"_title\":\"Section - LIVING STANDEES\"},\"elements\":[{\"id\":\"1147078d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"23bbc68\",\"elType\":\"widget\",\"settings\":{\"title\":\"LIVING STANDEES HAUNTING THEATERS\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b40d155\",\"elType\":\"widget\",\"settings\":{\"title\":\"ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"700\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86cff8b\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"225341d\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS \\u2013 THE LAST KEY\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a680ae8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"be59fa3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e36fe5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"d4d2039\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2.jpg\",\"id\":88},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3c9b758\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"79e122a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2-1.jpg\",\"id\":87},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3dc9df5\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"start\":0},\"elements\":[],\"widgetType\":\"video\"},{\"id\":\"b61a90b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"8f63560\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"08c588a\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS CHAPTER 3\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0e612c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>OnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7e77f5a\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"gap\":\"wide\"},\"elements\":[{\"id\":\"7eb5a21\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.332},\"elements\":[{\"id\":\"ae25867\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/image-asset.jpeg\",\"id\":196},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"24c773b\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":58},\"elements\":[{\"id\":\"93ad602\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/130807026\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"cb5dad6\",\"elType\":\"section\",\"settings\":{\"_title\":\"Inner Sedtion\"},\"elements\":[{\"id\":\"25cd114\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_title\":\"virtual reality experience\"},\"elements\":[{\"id\":\"15643ab\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"8ec2d0f\",\"elType\":\"widget\",\"settings\":{\"title\":\"VIRTUAL REALITY EXPERIENCE\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4e004ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"SPIDER-MAN HOMECOMING DISPLAY\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"73a2406\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Submerse yourself in the world of your friendly neighborhood Spider-Man in this fun and thrilling VR Theatrical Display.\\u00a0\\u00a0Based on the all-new 2017 film, the Spider-Man Homecoming VR Experience is a first-person look through the eyes of Spidey himself.<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"04b03b4\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7f4ffcc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"7f85dc5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":76,\"_title\":\"spiderman homecoming\"},\"elements\":[{\"id\":\"9a5a392\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Spidey_Home_V4_002.jpg\",\"id\":230},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"css_filters_css_filter\":\"custom\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"c16541a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":24,\"_title\":\"spiderman 2 vertical pics\"},\"elements\":[{\"id\":\"95b0eed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/IMG_3834.jpg\",\"id\":231},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8ea51a8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/IMG_3788.jpg\",\"id\":233}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"12d34c8\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"00\",\"bottom\":\"00\",\"left\":\"00\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"95003e6\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":435,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/TheStrangers_V01.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":4.9,\"sizes\":[]},\"layout\":\"full_width\",\"column_position\":\"top\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":68}},\"_title\":\"Section - STRANGERS HERO\",\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\"},\"elements\":[{\"id\":\"b6deb1a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_title\":\"strangers prey at night\"},\"elements\":[{\"id\":\"7a350ee\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"70\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"ecd0cbe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"d684039\",\"elType\":\"widget\",\"settings\":{\"title\":\"THE STRANGERS PREY AT NIGHT\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"003eb99\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5fd9452\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"93ad64e\",\"elType\":\"widget\",\"settings\":{\"title\":\"GRAND FORMAT PHOTO-OP STANDEE\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"247aafb\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"_title\":\"Section - MARKETING AT ITS FINEST\"},\"elements\":[{\"id\":\"f002e93\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"d1321ed\",\"elType\":\"widget\",\"settings\":{\"title\":\"MARKETING AT ITS FINEST, TAILORED FOR SOCIAL MEDIA\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a16ef4e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>This theatrical display allows fans to take photos with Dollface, Pin-up Girl, the Man in the Mask and share their photos on social media.<\\/p>\",\"align\":\"center\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b58ab88\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"00ca412\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58},\"elements\":[{\"id\":\"032d3df\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/003.jpg\",\"id\":446},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"672c1f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42},\"elements\":[{\"id\":\"623f6d1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/26222472_170774200201231_6120473304701599744_n.jpg\",\"id\":447},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a641f07\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/VIDEO_COMING_SOON_01.jpg\",\"id\":449}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cf9e008\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"677b52c\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b747fda\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":700},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":900},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"_title\":\"our company bitches\"},\"elements\":[{\"id\":\"7eab781\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"43661634\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our company is a collective of amazing people striving to build delightful products.\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.4},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70cc6d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.<\\/p>\",\"align\":\"center\",\"text_color\":\"#686868\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"615dfb3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1000},\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"6414755f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3bb26eed\",\"elType\":\"widget\",\"settings\":{\"text\":\"Read More\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3},\"button_text_color\":\"#ffffff\",\"background_color\":\"rgba(0,0,0,0)\",\"hover_color\":\"#00ce1b\",\"button_hover_border_color\":\"#00ce1b\",\"hover_animation\":\"grow\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"123f6d1\",\"elType\":\"section\",\"settings\":{\"_title\":\"blank at bottom\"},\"elements\":[{\"id\":\"25fcf2e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"64f593f\",\"elType\":\"section\",\"settings\":{\"_title\":\"blank at bottom\"},\"elements\":[{\"id\":\"596f429\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(3014,467,'_elementor_edit_mode','builder'),(3015,467,'_elementor_elements_usage','a:9:{s:7:\"heading\";i:12;s:6:\"column\";i:21;s:7:\"section\";i:17;s:7:\"divider\";i:6;s:11:\"text-editor\";i:5;s:5:\"image\";i:9;s:5:\"video\";i:2;s:6:\"spacer\";i:2;s:6:\"button\";i:1;}'),(3016,467,'_elementor_css','a:5:{s:4:\"time\";i:1569108760;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:1:{i:0;s:0:\"\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(3305,500,'_elementor_template_type','post'),(3018,468,'_elementor_template_type','post'),(3019,468,'_elementor_version','2.6.8'),(3020,468,'_elementor_pro_version','2.6.5'),(3021,468,'_wp_page_template','default'),(3022,468,'_elementor_data','[{\"id\":\"55396f27\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":50,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Theatrical_Display_V003C.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"motion_fx_range\":\"viewport\",\"layout\":\"full_width\",\"column_position\":\"top\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"_title\":\"Section - INSIDIOUS HERO\",\"motion_fx_motion_fx_scrolling\":\"yes\"},\"elements\":[{\"id\":\"905a97c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ad7f3f6\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"162\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2489c07\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"c0bbe21\",\"elType\":\"widget\",\"settings\":{\"title\":\"#WHAT\'S COOL\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"dc881ae\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"18630a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"870a9ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"INNOVATIONS FROM ONDISPLAY CREATIVE\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7df48509\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"_title\":\"Section - LIVING STANDEES\"},\"elements\":[{\"id\":\"1147078d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"23bbc68\",\"elType\":\"widget\",\"settings\":{\"title\":\"LIVING STANDEES HAUNTING THEATERS\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b40d155\",\"elType\":\"widget\",\"settings\":{\"title\":\"ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"700\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86cff8b\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"225341d\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS \\u2013 THE LAST KEY\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a680ae8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"be59fa3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e36fe5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"d4d2039\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2.jpg\",\"id\":88},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3c9b758\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"79e122a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2-1.jpg\",\"id\":87},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3dc9df5\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"start\":0},\"elements\":[],\"widgetType\":\"video\"},{\"id\":\"b61a90b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"8f63560\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"08c588a\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS CHAPTER 3\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0e612c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>OnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7e77f5a\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"gap\":\"wide\"},\"elements\":[{\"id\":\"7eb5a21\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.332},\"elements\":[{\"id\":\"ae25867\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/image-asset.jpeg\",\"id\":196},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"24c773b\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":58},\"elements\":[{\"id\":\"93ad602\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/130807026\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"cb5dad6\",\"elType\":\"section\",\"settings\":{\"_title\":\"Inner Sedtion\"},\"elements\":[{\"id\":\"25cd114\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_title\":\"virtual reality experience\"},\"elements\":[{\"id\":\"15643ab\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"8ec2d0f\",\"elType\":\"widget\",\"settings\":{\"title\":\"VIRTUAL REALITY EXPERIENCE\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4e004ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"SPIDER-MAN HOMECOMING DISPLAY\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"73a2406\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Submerse yourself in the world of your friendly neighborhood Spider-Man in this fun and thrilling VR Theatrical Display.\\u00a0\\u00a0Based on the all-new 2017 film, the Spider-Man Homecoming VR Experience is a first-person look through the eyes of Spidey himself.<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"04b03b4\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7f4ffcc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"7f85dc5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":76,\"_title\":\"spiderman homecoming\"},\"elements\":[{\"id\":\"9a5a392\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Spidey_Home_V4_002.jpg\",\"id\":230},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"css_filters_css_filter\":\"custom\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"c16541a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":24,\"_title\":\"spiderman 2 vertical pics\"},\"elements\":[{\"id\":\"95b0eed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/IMG_3834.jpg\",\"id\":231},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8ea51a8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/IMG_3788.jpg\",\"id\":233}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"12d34c8\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"00\",\"bottom\":\"00\",\"left\":\"00\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"95003e6\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":435,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/TheStrangers_V01.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":4.9,\"sizes\":[]},\"layout\":\"full_width\",\"column_position\":\"top\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":68}},\"_title\":\"Section - STRANGERS HERO\",\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\"},\"elements\":[{\"id\":\"b6deb1a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_title\":\"strangers prey at night\"},\"elements\":[{\"id\":\"7a350ee\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"70\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"ecd0cbe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"d684039\",\"elType\":\"widget\",\"settings\":{\"title\":\"THE STRANGERS PREY AT NIGHT\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"003eb99\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5fd9452\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"93ad64e\",\"elType\":\"widget\",\"settings\":{\"title\":\"GRAND FORMAT PHOTO-OP STANDEE\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"247aafb\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"_title\":\"Section - MARKETING AT ITS FINEST\"},\"elements\":[{\"id\":\"f002e93\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"d1321ed\",\"elType\":\"widget\",\"settings\":{\"title\":\"MARKETING AT ITS FINEST, TAILORED FOR SOCIAL MEDIA\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a16ef4e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>This theatrical display allows fans to take photos with Dollface, Pin-up Girl, the Man in the Mask and share their photos on social media.<\\/p>\",\"align\":\"center\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b58ab88\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"00ca412\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58},\"elements\":[{\"id\":\"032d3df\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/003.jpg\",\"id\":446},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"672c1f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42},\"elements\":[{\"id\":\"623f6d1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/26222472_170774200201231_6120473304701599744_n.jpg\",\"id\":447},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a641f07\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/VIDEO_COMING_SOON_01.jpg\",\"id\":449}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cf9e008\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"677b52c\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b747fda\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":700},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":900},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"_title\":\"our company bitches\"},\"elements\":[{\"id\":\"7eab781\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"43661634\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our company is a collective of amazing people striving to build delightful products.\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.4},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70cc6d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.<\\/p>\",\"align\":\"center\",\"text_color\":\"#686868\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"615dfb3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1000},\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"6414755f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3bb26eed\",\"elType\":\"widget\",\"settings\":{\"text\":\"Read More\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3},\"button_text_color\":\"#ffffff\",\"background_color\":\"rgba(0,0,0,0)\",\"hover_color\":\"#00ce1b\",\"button_hover_border_color\":\"#00ce1b\",\"hover_animation\":\"grow\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"123f6d1\",\"elType\":\"section\",\"settings\":{\"_title\":\"blank at bottom\"},\"elements\":[{\"id\":\"25fcf2e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"64f593f\",\"elType\":\"section\",\"settings\":{\"_title\":\"blank at bottom\"},\"elements\":[{\"id\":\"596f429\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(3023,468,'_elementor_edit_mode','builder'),(3024,468,'_elementor_elements_usage','a:9:{s:7:\"heading\";i:12;s:6:\"column\";i:21;s:7:\"section\";i:17;s:7:\"divider\";i:6;s:11:\"text-editor\";i:5;s:5:\"image\";i:9;s:5:\"video\";i:2;s:6:\"spacer\";i:2;s:6:\"button\";i:1;}'),(3025,468,'_elementor_css','a:5:{s:4:\"time\";i:1569108827;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:1:{i:0;s:0:\"\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(3054,472,'_elementor_template_type','post'),(3045,471,'_elementor_template_type','post'),(3027,469,'_elementor_template_type','post'),(3028,469,'_elementor_version','2.6.8'),(3029,469,'_elementor_pro_version','2.6.5'),(3030,469,'_wp_page_template','default'),(3031,469,'_elementor_data','[{\"id\":\"55396f27\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":50,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Theatrical_Display_V003C.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"motion_fx_range\":\"viewport\",\"layout\":\"full_width\",\"column_position\":\"top\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"_title\":\"Section - INSIDIOUS HERO\",\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":1.9,\"sizes\":[]}},\"elements\":[{\"id\":\"905a97c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ad7f3f6\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"162\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2489c07\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"c0bbe21\",\"elType\":\"widget\",\"settings\":{\"title\":\"#WHAT\'S COOL\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"dc881ae\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"18630a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"870a9ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"INNOVATIONS FROM ONDISPLAY CREATIVE\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7df48509\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"_title\":\"Section - LIVING STANDEES\"},\"elements\":[{\"id\":\"1147078d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"23bbc68\",\"elType\":\"widget\",\"settings\":{\"title\":\"LIVING STANDEES HAUNTING THEATERS\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b40d155\",\"elType\":\"widget\",\"settings\":{\"title\":\"ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"700\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86cff8b\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"225341d\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS \\u2013 THE LAST KEY\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a680ae8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"be59fa3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e36fe5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"d4d2039\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2.jpg\",\"id\":88},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3c9b758\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"79e122a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2-1.jpg\",\"id\":87},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3dc9df5\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"start\":0},\"elements\":[],\"widgetType\":\"video\"},{\"id\":\"b61a90b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"8f63560\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"08c588a\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS CHAPTER 3\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0e612c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>OnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7e77f5a\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"gap\":\"wide\"},\"elements\":[{\"id\":\"7eb5a21\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.332},\"elements\":[{\"id\":\"ae25867\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/image-asset.jpeg\",\"id\":196},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"24c773b\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":58},\"elements\":[{\"id\":\"93ad602\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/130807026\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"cb5dad6\",\"elType\":\"section\",\"settings\":{\"_title\":\"Inner Sedtion\"},\"elements\":[{\"id\":\"25cd114\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_title\":\"virtual reality experience\"},\"elements\":[{\"id\":\"15643ab\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"8ec2d0f\",\"elType\":\"widget\",\"settings\":{\"title\":\"VIRTUAL REALITY EXPERIENCE\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4e004ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"SPIDER-MAN HOMECOMING DISPLAY\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"73a2406\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Submerse yourself in the world of your friendly neighborhood Spider-Man in this fun and thrilling VR Theatrical Display.\\u00a0\\u00a0Based on the all-new 2017 film, the Spider-Man Homecoming VR Experience is a first-person look through the eyes of Spidey himself.<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"04b03b4\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7f4ffcc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"7f85dc5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":76,\"_title\":\"spiderman homecoming\"},\"elements\":[{\"id\":\"9a5a392\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Spidey_Home_V4_002.jpg\",\"id\":230},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"css_filters_css_filter\":\"custom\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"c16541a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":24,\"_title\":\"spiderman 2 vertical pics\"},\"elements\":[{\"id\":\"95b0eed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/IMG_3834.jpg\",\"id\":231},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8ea51a8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/IMG_3788.jpg\",\"id\":233}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"12d34c8\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"00\",\"bottom\":\"00\",\"left\":\"00\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"95003e6\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":435,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/TheStrangers_V01.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":4.9,\"sizes\":[]},\"layout\":\"full_width\",\"column_position\":\"top\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":68}},\"_title\":\"Section - STRANGERS HERO\",\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\"},\"elements\":[{\"id\":\"b6deb1a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_title\":\"strangers prey at night\"},\"elements\":[{\"id\":\"7a350ee\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"70\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"ecd0cbe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"d684039\",\"elType\":\"widget\",\"settings\":{\"title\":\"THE STRANGERS PREY AT NIGHT\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"003eb99\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5fd9452\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"93ad64e\",\"elType\":\"widget\",\"settings\":{\"title\":\"GRAND FORMAT PHOTO-OP STANDEE\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"247aafb\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"_title\":\"Section - MARKETING AT ITS FINEST\"},\"elements\":[{\"id\":\"f002e93\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"d1321ed\",\"elType\":\"widget\",\"settings\":{\"title\":\"MARKETING AT ITS FINEST, TAILORED FOR SOCIAL MEDIA\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a16ef4e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>This theatrical display allows fans to take photos with Dollface, Pin-up Girl, the Man in the Mask and share their photos on social media.<\\/p>\",\"align\":\"center\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b58ab88\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"00ca412\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58},\"elements\":[{\"id\":\"032d3df\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/003.jpg\",\"id\":446},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"672c1f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42},\"elements\":[{\"id\":\"623f6d1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/26222472_170774200201231_6120473304701599744_n.jpg\",\"id\":447},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a641f07\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/VIDEO_COMING_SOON_01.jpg\",\"id\":449}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cf9e008\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"677b52c\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b747fda\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":700},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":900},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"_title\":\"our company bitches\"},\"elements\":[{\"id\":\"7eab781\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"43661634\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our company is a collective of amazing people striving to build delightful products.\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.4},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70cc6d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.<\\/p>\",\"align\":\"center\",\"text_color\":\"#686868\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"615dfb3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1000},\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"6414755f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3bb26eed\",\"elType\":\"widget\",\"settings\":{\"text\":\"Read More\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3},\"button_text_color\":\"#ffffff\",\"background_color\":\"rgba(0,0,0,0)\",\"hover_color\":\"#00ce1b\",\"button_hover_border_color\":\"#00ce1b\",\"hover_animation\":\"grow\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"123f6d1\",\"elType\":\"section\",\"settings\":{\"_title\":\"blank at bottom\"},\"elements\":[{\"id\":\"25fcf2e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"64f593f\",\"elType\":\"section\",\"settings\":{\"_title\":\"blank at bottom\"},\"elements\":[{\"id\":\"596f429\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(3032,469,'_elementor_edit_mode','builder'),(3033,469,'_elementor_elements_usage','a:9:{s:7:\"heading\";i:12;s:6:\"column\";i:21;s:7:\"section\";i:17;s:7:\"divider\";i:6;s:11:\"text-editor\";i:5;s:5:\"image\";i:9;s:5:\"video\";i:2;s:6:\"spacer\";i:2;s:6:\"button\";i:1;}'),(3034,469,'_elementor_css','a:5:{s:4:\"time\";i:1569108867;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:1:{i:0;s:0:\"\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(3036,470,'_elementor_template_type','post'),(3037,470,'_elementor_version','2.6.8'),(3038,470,'_elementor_pro_version','2.6.5'),(3039,470,'_wp_page_template','default'),(3040,470,'_elementor_data','[{\"id\":\"55396f27\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":50,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Theatrical_Display_V003C.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"motion_fx_range\":\"viewport\",\"layout\":\"full_width\",\"column_position\":\"top\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"_title\":\"Section - INSIDIOUS HERO\",\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":1.9,\"sizes\":[]}},\"elements\":[{\"id\":\"905a97c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ad7f3f6\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"162\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2489c07\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"c0bbe21\",\"elType\":\"widget\",\"settings\":{\"title\":\"#WHAT\'S COOL\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"dc881ae\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"18630a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"870a9ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"INNOVATIONS FROM ONDISPLAY CREATIVE\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7df48509\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"_title\":\"Section - LIVING STANDEES\"},\"elements\":[{\"id\":\"1147078d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"23bbc68\",\"elType\":\"widget\",\"settings\":{\"title\":\"LIVING STANDEES HAUNTING THEATERS\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b40d155\",\"elType\":\"widget\",\"settings\":{\"title\":\"ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"700\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86cff8b\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"225341d\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS \\u2013 THE LAST KEY\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a680ae8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"be59fa3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e36fe5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"d4d2039\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2.jpg\",\"id\":88},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3c9b758\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"79e122a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2-1.jpg\",\"id\":87},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3dc9df5\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"start\":0},\"elements\":[],\"widgetType\":\"video\"},{\"id\":\"b61a90b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"8f63560\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"08c588a\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS CHAPTER 3\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0e612c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>OnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7e77f5a\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"gap\":\"wide\"},\"elements\":[{\"id\":\"7eb5a21\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.332},\"elements\":[{\"id\":\"ae25867\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/image-asset.jpeg\",\"id\":196},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"24c773b\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":58},\"elements\":[{\"id\":\"93ad602\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/130807026\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"cb5dad6\",\"elType\":\"section\",\"settings\":{\"_title\":\"Inner Sedtion\"},\"elements\":[{\"id\":\"25cd114\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_title\":\"virtual reality experience\"},\"elements\":[{\"id\":\"15643ab\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"8ec2d0f\",\"elType\":\"widget\",\"settings\":{\"title\":\"VIRTUAL REALITY EXPERIENCE\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4e004ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"SPIDER-MAN HOMECOMING DISPLAY\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"73a2406\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Submerse yourself in the world of your friendly neighborhood Spider-Man in this fun and thrilling VR Theatrical Display.\\u00a0\\u00a0Based on the all-new 2017 film, the Spider-Man Homecoming VR Experience is a first-person look through the eyes of Spidey himself.<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"04b03b4\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7f4ffcc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"7f85dc5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":76,\"_title\":\"spiderman homecoming\"},\"elements\":[{\"id\":\"9a5a392\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Spidey_Home_V4_002.jpg\",\"id\":230},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"css_filters_css_filter\":\"custom\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"c16541a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":24,\"_title\":\"spiderman 2 vertical pics\"},\"elements\":[{\"id\":\"95b0eed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/IMG_3834.jpg\",\"id\":231},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8ea51a8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/IMG_3788.jpg\",\"id\":233}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"12d34c8\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"00\",\"bottom\":\"00\",\"left\":\"00\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"95003e6\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":435,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/TheStrangers_V01.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":4.9,\"sizes\":[]},\"layout\":\"full_width\",\"column_position\":\"top\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":68}},\"_title\":\"Section - STRANGERS HERO\",\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"motion_fx_translateY_direction\":\"negative\"},\"elements\":[{\"id\":\"b6deb1a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_title\":\"strangers prey at night\"},\"elements\":[{\"id\":\"7a350ee\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"70\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"ecd0cbe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"d684039\",\"elType\":\"widget\",\"settings\":{\"title\":\"THE STRANGERS PREY AT NIGHT\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"003eb99\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5fd9452\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"93ad64e\",\"elType\":\"widget\",\"settings\":{\"title\":\"GRAND FORMAT PHOTO-OP STANDEE\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"247aafb\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"_title\":\"Section - MARKETING AT ITS FINEST\"},\"elements\":[{\"id\":\"f002e93\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"d1321ed\",\"elType\":\"widget\",\"settings\":{\"title\":\"MARKETING AT ITS FINEST, TAILORED FOR SOCIAL MEDIA\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a16ef4e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>This theatrical display allows fans to take photos with Dollface, Pin-up Girl, the Man in the Mask and share their photos on social media.<\\/p>\",\"align\":\"center\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b58ab88\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"00ca412\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58},\"elements\":[{\"id\":\"032d3df\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/003.jpg\",\"id\":446},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"672c1f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42},\"elements\":[{\"id\":\"623f6d1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/26222472_170774200201231_6120473304701599744_n.jpg\",\"id\":447},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a641f07\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/VIDEO_COMING_SOON_01.jpg\",\"id\":449}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cf9e008\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"677b52c\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b747fda\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":700},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":900},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"_title\":\"our company bitches\"},\"elements\":[{\"id\":\"7eab781\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"43661634\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our company is a collective of amazing people striving to build delightful products.\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.4},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70cc6d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.<\\/p>\",\"align\":\"center\",\"text_color\":\"#686868\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"615dfb3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1000},\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"6414755f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3bb26eed\",\"elType\":\"widget\",\"settings\":{\"text\":\"Read More\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3},\"button_text_color\":\"#ffffff\",\"background_color\":\"rgba(0,0,0,0)\",\"hover_color\":\"#00ce1b\",\"button_hover_border_color\":\"#00ce1b\",\"hover_animation\":\"grow\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"123f6d1\",\"elType\":\"section\",\"settings\":{\"_title\":\"blank at bottom\"},\"elements\":[{\"id\":\"25fcf2e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"64f593f\",\"elType\":\"section\",\"settings\":{\"_title\":\"blank at bottom\"},\"elements\":[{\"id\":\"596f429\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(3041,470,'_elementor_edit_mode','builder'),(3042,470,'_elementor_elements_usage','a:9:{s:7:\"heading\";i:12;s:6:\"column\";i:21;s:7:\"section\";i:17;s:7:\"divider\";i:6;s:11:\"text-editor\";i:5;s:5:\"image\";i:9;s:5:\"video\";i:2;s:6:\"spacer\";i:2;s:6:\"button\";i:1;}'),(3043,470,'_elementor_css','a:5:{s:4:\"time\";i:1569108939;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:1:{i:0;s:0:\"\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(3046,471,'_elementor_version','2.6.8'),(3047,471,'_elementor_pro_version','2.6.5'),(3048,471,'_wp_page_template','default'),(3049,471,'_elementor_data','[{\"id\":\"55396f27\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":50,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Theatrical_Display_V003C.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"motion_fx_range\":\"viewport\",\"layout\":\"full_width\",\"column_position\":\"top\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"_title\":\"Section - INSIDIOUS HERO\",\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":1.9,\"sizes\":[]}},\"elements\":[{\"id\":\"905a97c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ad7f3f6\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"162\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2489c07\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"c0bbe21\",\"elType\":\"widget\",\"settings\":{\"title\":\"#WHAT\'S COOL\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"dc881ae\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"18630a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"870a9ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"INNOVATIONS FROM ONDISPLAY CREATIVE\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7df48509\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"_title\":\"Section - LIVING STANDEES\"},\"elements\":[{\"id\":\"1147078d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"23bbc68\",\"elType\":\"widget\",\"settings\":{\"title\":\"LIVING STANDEES HAUNTING THEATERS\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b40d155\",\"elType\":\"widget\",\"settings\":{\"title\":\"ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"700\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86cff8b\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"225341d\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS \\u2013 THE LAST KEY\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a680ae8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"be59fa3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e36fe5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"d4d2039\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2.jpg\",\"id\":88},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3c9b758\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"79e122a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2-1.jpg\",\"id\":87},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3dc9df5\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"start\":0},\"elements\":[],\"widgetType\":\"video\"},{\"id\":\"b61a90b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"8f63560\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"08c588a\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS CHAPTER 3\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0e612c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>OnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7e77f5a\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"gap\":\"wide\"},\"elements\":[{\"id\":\"7eb5a21\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.332},\"elements\":[{\"id\":\"ae25867\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/image-asset.jpeg\",\"id\":196},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"24c773b\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":58},\"elements\":[{\"id\":\"93ad602\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/130807026\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"cb5dad6\",\"elType\":\"section\",\"settings\":{\"_title\":\"Inner Sedtion\"},\"elements\":[{\"id\":\"25cd114\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_title\":\"virtual reality experience\"},\"elements\":[{\"id\":\"15643ab\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"8ec2d0f\",\"elType\":\"widget\",\"settings\":{\"title\":\"VIRTUAL REALITY EXPERIENCE\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4e004ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"SPIDER-MAN HOMECOMING DISPLAY\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"73a2406\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Submerse yourself in the world of your friendly neighborhood Spider-Man in this fun and thrilling VR Theatrical Display.\\u00a0\\u00a0Based on the all-new 2017 film, the Spider-Man Homecoming VR Experience is a first-person look through the eyes of Spidey himself.<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"04b03b4\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7f4ffcc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"7f85dc5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":76,\"_title\":\"spiderman homecoming\"},\"elements\":[{\"id\":\"9a5a392\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Spidey_Home_V4_002.jpg\",\"id\":230},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"css_filters_css_filter\":\"custom\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"c16541a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":24,\"_title\":\"spiderman 2 vertical pics\"},\"elements\":[{\"id\":\"95b0eed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/IMG_3834.jpg\",\"id\":231},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8ea51a8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/IMG_3788.jpg\",\"id\":233}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"12d34c8\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"00\",\"bottom\":\"00\",\"left\":\"00\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"95003e6\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":435,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/TheStrangers_V01.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":4.9,\"sizes\":[]},\"layout\":\"full_width\",\"column_position\":\"top\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":68}},\"_title\":\"Section - STRANGERS HERO\",\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"motion_fx_translateY_direction\":\"negative\"},\"elements\":[{\"id\":\"b6deb1a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_title\":\"strangers prey at night\"},\"elements\":[{\"id\":\"7a350ee\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"70\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"ecd0cbe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"d684039\",\"elType\":\"widget\",\"settings\":{\"title\":\"THE STRANGERS PREY AT NIGHT\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"003eb99\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5fd9452\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"93ad64e\",\"elType\":\"widget\",\"settings\":{\"title\":\"GRAND FORMAT PHOTO-OP STANDEE\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"247aafb\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"_title\":\"Section - MARKETING AT ITS FINEST\"},\"elements\":[{\"id\":\"f002e93\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"d1321ed\",\"elType\":\"widget\",\"settings\":{\"title\":\"MARKETING AT ITS FINEST, TAILORED FOR SOCIAL MEDIA\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a16ef4e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>This theatrical display allows fans to take photos with Dollface, Pin-up Girl, the Man in the Mask and share their photos on social media.<\\/p>\",\"align\":\"center\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b58ab88\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"00ca412\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58},\"elements\":[{\"id\":\"032d3df\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/003.jpg\",\"id\":446},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"672c1f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42},\"elements\":[{\"id\":\"623f6d1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/26222472_170774200201231_6120473304701599744_n.jpg\",\"id\":447},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a641f07\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/VIDEO_COMING_SOON_01.jpg\",\"id\":449}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cf9e008\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"677b52c\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b747fda\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":700},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":900},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"_title\":\"our company bitches\"},\"elements\":[{\"id\":\"7eab781\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"43661634\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our company is a collective of amazing people striving to build delightful products.\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.4},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70cc6d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.<\\/p>\",\"align\":\"center\",\"text_color\":\"#686868\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"615dfb3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1000},\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"6414755f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3bb26eed\",\"elType\":\"widget\",\"settings\":{\"text\":\"Read More\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3},\"button_text_color\":\"#ffffff\",\"background_color\":\"rgba(0,0,0,0)\",\"hover_color\":\"#00ce1b\",\"button_hover_border_color\":\"#00ce1b\",\"hover_animation\":\"grow\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"123f6d1\",\"elType\":\"section\",\"settings\":{\"_title\":\"blank at bottom\"},\"elements\":[{\"id\":\"25fcf2e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"64f593f\",\"elType\":\"section\",\"settings\":{\"_title\":\"blank at bottom\"},\"elements\":[{\"id\":\"596f429\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(3050,471,'_elementor_edit_mode','builder'),(3051,471,'_elementor_elements_usage','a:9:{s:7:\"heading\";i:12;s:6:\"column\";i:21;s:7:\"section\";i:17;s:7:\"divider\";i:6;s:11:\"text-editor\";i:5;s:5:\"image\";i:9;s:5:\"video\";i:2;s:6:\"spacer\";i:2;s:6:\"button\";i:1;}'),(3052,471,'_elementor_css','a:5:{s:4:\"time\";i:1569108956;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:1:{i:0;s:0:\"\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(3055,472,'_elementor_version','2.6.8'),(3056,472,'_elementor_pro_version','2.6.5'),(3057,472,'_wp_page_template','default'),(3058,472,'_elementor_data','[{\"id\":\"55396f27\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":50,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Theatrical_Display_V003C.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"motion_fx_range\":\"viewport\",\"layout\":\"full_width\",\"column_position\":\"top\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"_title\":\"Section - INSIDIOUS HERO\",\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":1.9,\"sizes\":[]}},\"elements\":[{\"id\":\"905a97c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ad7f3f6\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"162\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2489c07\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"c0bbe21\",\"elType\":\"widget\",\"settings\":{\"title\":\"#WHAT\'S COOL\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"dc881ae\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"18630a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"870a9ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"INNOVATIONS FROM ONDISPLAY CREATIVE\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7df48509\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"_title\":\"Section - LIVING STANDEES\"},\"elements\":[{\"id\":\"1147078d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"23bbc68\",\"elType\":\"widget\",\"settings\":{\"title\":\"LIVING STANDEES HAUNTING THEATERS\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b40d155\",\"elType\":\"widget\",\"settings\":{\"title\":\"ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"700\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86cff8b\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"225341d\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS \\u2013 THE LAST KEY\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a680ae8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"be59fa3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e36fe5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"d4d2039\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2.jpg\",\"id\":88},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3c9b758\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"79e122a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2-1.jpg\",\"id\":87},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3dc9df5\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"start\":0},\"elements\":[],\"widgetType\":\"video\"},{\"id\":\"b61a90b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"8f63560\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"08c588a\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS CHAPTER 3\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0e612c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>OnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7e77f5a\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"gap\":\"wide\"},\"elements\":[{\"id\":\"7eb5a21\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.332},\"elements\":[{\"id\":\"ae25867\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/image-asset.jpeg\",\"id\":196},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"24c773b\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":58},\"elements\":[{\"id\":\"93ad602\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/130807026\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"cb5dad6\",\"elType\":\"section\",\"settings\":{\"_title\":\"Inner Sedtion\"},\"elements\":[{\"id\":\"25cd114\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_title\":\"virtual reality experience\"},\"elements\":[{\"id\":\"15643ab\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"8ec2d0f\",\"elType\":\"widget\",\"settings\":{\"title\":\"VIRTUAL REALITY EXPERIENCE\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4e004ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"SPIDER-MAN HOMECOMING DISPLAY\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"73a2406\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Submerse yourself in the world of your friendly neighborhood Spider-Man in this fun and thrilling VR Theatrical Display.\\u00a0\\u00a0Based on the all-new 2017 film, the Spider-Man Homecoming VR Experience is a first-person look through the eyes of Spidey himself.<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"04b03b4\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7f4ffcc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"7f85dc5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":76,\"_title\":\"spiderman homecoming\"},\"elements\":[{\"id\":\"9a5a392\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Spidey_Home_V4_002.jpg\",\"id\":230},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"css_filters_css_filter\":\"custom\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"c16541a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":24,\"_title\":\"spiderman 2 vertical pics\"},\"elements\":[{\"id\":\"95b0eed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/IMG_3834.jpg\",\"id\":231},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8ea51a8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/IMG_3788.jpg\",\"id\":233}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"12d34c8\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"00\",\"bottom\":\"00\",\"left\":\"00\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"95003e6\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":435,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/TheStrangers_V01.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":4.9,\"sizes\":[]},\"layout\":\"full_width\",\"column_position\":\"top\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":68}},\"_title\":\"Section - STRANGERS HERO\",\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"motion_fx_translateY_direction\":\"negative\"},\"elements\":[{\"id\":\"b6deb1a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_title\":\"strangers prey at night\"},\"elements\":[{\"id\":\"7a350ee\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"70\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"ecd0cbe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"d684039\",\"elType\":\"widget\",\"settings\":{\"title\":\"THE STRANGERS PREY AT NIGHT\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"003eb99\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5fd9452\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"93ad64e\",\"elType\":\"widget\",\"settings\":{\"title\":\"GRAND FORMAT PHOTO-OP STANDEE\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"247aafb\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"_title\":\"Section - MARKETING AT ITS FINEST\"},\"elements\":[{\"id\":\"f002e93\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"d1321ed\",\"elType\":\"widget\",\"settings\":{\"title\":\"MARKETING AT ITS FINEST, TAILORED FOR SOCIAL MEDIA\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a16ef4e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>This theatrical display allows fans to take photos with Dollface, Pin-up Girl, the Man in the Mask and share their photos on social media.<\\/p>\",\"align\":\"center\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b58ab88\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"00ca412\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58},\"elements\":[{\"id\":\"032d3df\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/003.jpg\",\"id\":446},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"672c1f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42},\"elements\":[{\"id\":\"623f6d1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/26222472_170774200201231_6120473304701599744_n.jpg\",\"id\":447},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a641f07\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/VIDEO_COMING_SOON_01.jpg\",\"id\":449}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cf9e008\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"677b52c\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b747fda\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":700},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":900},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"_title\":\"our company bitches\"},\"elements\":[{\"id\":\"7eab781\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"43661634\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our company is a collective of amazing people striving to build delightful products.\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.4},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70cc6d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.<\\/p>\",\"align\":\"center\",\"text_color\":\"#686868\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"615dfb3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1000},\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"6414755f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3bb26eed\",\"elType\":\"widget\",\"settings\":{\"text\":\"Read More\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3},\"button_text_color\":\"#ffffff\",\"background_color\":\"rgba(0,0,0,0)\",\"hover_color\":\"#00ce1b\",\"button_hover_border_color\":\"#00ce1b\",\"hover_animation\":\"grow\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"123f6d1\",\"elType\":\"section\",\"settings\":{\"_title\":\"blank at bottom\"},\"elements\":[{\"id\":\"25fcf2e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"64f593f\",\"elType\":\"section\",\"settings\":{\"_title\":\"blank at bottom\"},\"elements\":[{\"id\":\"596f429\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(3059,472,'_elementor_edit_mode','builder'),(3060,472,'_elementor_elements_usage','a:9:{s:7:\"heading\";i:12;s:6:\"column\";i:21;s:7:\"section\";i:17;s:7:\"divider\";i:6;s:11:\"text-editor\";i:5;s:5:\"image\";i:9;s:5:\"video\";i:2;s:6:\"spacer\";i:2;s:6:\"button\";i:1;}'),(3061,472,'_elementor_css','a:5:{s:4:\"time\";i:1569108997;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:1:{i:0;s:0:\"\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(3063,473,'_elementor_template_type','post'),(3064,473,'_elementor_version','2.6.8'),(3065,473,'_elementor_pro_version','2.6.5'),(3066,473,'_wp_page_template','default'),(3067,473,'_elementor_data','[{\"id\":\"55396f27\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":50,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Theatrical_Display_V003C.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"motion_fx_range\":\"viewport\",\"layout\":\"full_width\",\"column_position\":\"top\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"_title\":\"Section - INSIDIOUS HERO\",\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":1.9,\"sizes\":[]}},\"elements\":[{\"id\":\"905a97c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ad7f3f6\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"162\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2489c07\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"c0bbe21\",\"elType\":\"widget\",\"settings\":{\"title\":\"#WHAT\'S COOL\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"dc881ae\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"18630a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"870a9ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"INNOVATIONS FROM ONDISPLAY CREATIVE\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7df48509\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"_title\":\"Section - LIVING STANDEES\"},\"elements\":[{\"id\":\"1147078d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"23bbc68\",\"elType\":\"widget\",\"settings\":{\"title\":\"LIVING STANDEES HAUNTING THEATERS\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b40d155\",\"elType\":\"widget\",\"settings\":{\"title\":\"ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"700\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86cff8b\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"225341d\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS \\u2013 THE LAST KEY\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a680ae8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"be59fa3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e36fe5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"d4d2039\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2.jpg\",\"id\":88},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3c9b758\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"79e122a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2-1.jpg\",\"id\":87},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3dc9df5\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"start\":0},\"elements\":[],\"widgetType\":\"video\"},{\"id\":\"b61a90b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"8f63560\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"08c588a\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS CHAPTER 3\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0e612c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>OnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7e77f5a\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"gap\":\"wide\"},\"elements\":[{\"id\":\"7eb5a21\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.332},\"elements\":[{\"id\":\"ae25867\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/image-asset.jpeg\",\"id\":196},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"24c773b\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":58},\"elements\":[{\"id\":\"93ad602\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/130807026\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"cb5dad6\",\"elType\":\"section\",\"settings\":{\"_title\":\"Inner Sedtion\"},\"elements\":[{\"id\":\"25cd114\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_title\":\"virtual reality experience\"},\"elements\":[{\"id\":\"15643ab\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"8ec2d0f\",\"elType\":\"widget\",\"settings\":{\"title\":\"VIRTUAL REALITY EXPERIENCE\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4e004ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"SPIDER-MAN HOMECOMING DISPLAY\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"73a2406\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Submerse yourself in the world of your friendly neighborhood Spider-Man in this fun and thrilling VR Theatrical Display.\\u00a0\\u00a0Based on the all-new 2017 film, the Spider-Man Homecoming VR Experience is a first-person look through the eyes of Spidey himself.<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"04b03b4\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7f4ffcc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"7f85dc5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":76,\"_title\":\"spiderman homecoming\"},\"elements\":[{\"id\":\"9a5a392\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Spidey_Home_V4_002.jpg\",\"id\":230},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"css_filters_css_filter\":\"custom\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"c16541a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":24,\"_title\":\"spiderman 2 vertical pics\"},\"elements\":[{\"id\":\"95b0eed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/IMG_3834.jpg\",\"id\":231},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8ea51a8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/IMG_3788.jpg\",\"id\":233}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"12d34c8\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"00\",\"bottom\":\"00\",\"left\":\"00\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"95003e6\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":435,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/TheStrangers_V01.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":4.9,\"sizes\":[]},\"layout\":\"full_width\",\"column_position\":\"top\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":68}},\"_title\":\"Section - STRANGERS HERO\",\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"motion_fx_translateY_direction\":\"negative\"},\"elements\":[{\"id\":\"b6deb1a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_title\":\"strangers prey at night\"},\"elements\":[{\"id\":\"7a350ee\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"70\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"ecd0cbe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"d684039\",\"elType\":\"widget\",\"settings\":{\"title\":\"THE STRANGERS PREY AT NIGHT\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"003eb99\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5fd9452\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"93ad64e\",\"elType\":\"widget\",\"settings\":{\"title\":\"GRAND FORMAT PHOTO-OP STANDEE\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"247aafb\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"_title\":\"Section - MARKETING AT ITS FINEST\"},\"elements\":[{\"id\":\"f002e93\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"d1321ed\",\"elType\":\"widget\",\"settings\":{\"title\":\"MARKETING AT ITS FINEST, TAILORED FOR SOCIAL MEDIA\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a16ef4e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>This theatrical display allows fans to take photos with Dollface, Pin-up Girl, the Man in the Mask and share their photos on social media.<\\/p>\",\"align\":\"center\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b58ab88\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"00ca412\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58},\"elements\":[{\"id\":\"032d3df\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/003.jpg\",\"id\":446},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"672c1f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42},\"elements\":[{\"id\":\"623f6d1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/26222472_170774200201231_6120473304701599744_n.jpg\",\"id\":447},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a641f07\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/VIDEO_COMING_SOON_01.jpg\",\"id\":449}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cf9e008\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"677b52c\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b747fda\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":700},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":900},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"_title\":\"our company bitches\"},\"elements\":[{\"id\":\"7eab781\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"43661634\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our company is a collective of amazing people striving to build delightful products.\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.4},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70cc6d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.<\\/p>\",\"align\":\"center\",\"text_color\":\"#686868\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"615dfb3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1000},\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"6414755f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3bb26eed\",\"elType\":\"widget\",\"settings\":{\"text\":\"Read More\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3},\"button_text_color\":\"#ffffff\",\"background_color\":\"rgba(0,0,0,0)\",\"hover_color\":\"#00ce1b\",\"button_hover_border_color\":\"#00ce1b\",\"hover_animation\":\"grow\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"123f6d1\",\"elType\":\"section\",\"settings\":{\"_title\":\"blank at bottom\"},\"elements\":[{\"id\":\"25fcf2e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"64f593f\",\"elType\":\"section\",\"settings\":{\"_title\":\"blank at bottom\"},\"elements\":[{\"id\":\"596f429\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(3068,473,'_elementor_edit_mode','builder'),(3069,473,'_elementor_elements_usage','a:9:{s:7:\"heading\";i:12;s:6:\"column\";i:21;s:7:\"section\";i:17;s:7:\"divider\";i:6;s:11:\"text-editor\";i:5;s:5:\"image\";i:9;s:5:\"video\";i:2;s:6:\"spacer\";i:2;s:6:\"button\";i:1;}'),(3070,473,'_elementor_css','a:5:{s:4:\"time\";i:1569109029;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:1:{i:0;s:0:\"\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(3152,483,'_elementor_template_type','post'),(3071,474,'_elementor_template_type','post'),(3072,474,'_elementor_version','2.6.8'),(3073,474,'_elementor_pro_version','2.6.5'),(3074,474,'_wp_page_template','default'),(3075,474,'_elementor_data','[{\"id\":\"55396f27\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":50,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Theatrical_Display_V003C.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"motion_fx_range\":\"viewport\",\"layout\":\"full_width\",\"column_position\":\"top\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"_title\":\"Section - INSIDIOUS HERO\",\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":1.9,\"sizes\":[]}},\"elements\":[{\"id\":\"905a97c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ad7f3f6\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"162\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2489c07\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"c0bbe21\",\"elType\":\"widget\",\"settings\":{\"title\":\"#WHAT\'S COOL\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"dc881ae\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"18630a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"870a9ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"INNOVATIONS FROM ONDISPLAY CREATIVE\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7df48509\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"_title\":\"Section - LIVING STANDEES\"},\"elements\":[{\"id\":\"1147078d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"23bbc68\",\"elType\":\"widget\",\"settings\":{\"title\":\"LIVING STANDEES HAUNTING THEATERS\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b40d155\",\"elType\":\"widget\",\"settings\":{\"title\":\"ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"700\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86cff8b\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"225341d\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS \\u2013 THE LAST KEY\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a680ae8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"be59fa3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e36fe5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"d4d2039\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2.jpg\",\"id\":88},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3c9b758\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"79e122a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2-1.jpg\",\"id\":87},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3dc9df5\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"start\":0},\"elements\":[],\"widgetType\":\"video\"},{\"id\":\"b61a90b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"8f63560\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"08c588a\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS CHAPTER 3\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0e612c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>OnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7e77f5a\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"gap\":\"wide\"},\"elements\":[{\"id\":\"7eb5a21\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.332},\"elements\":[{\"id\":\"ae25867\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/image-asset.jpeg\",\"id\":196},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"24c773b\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":58},\"elements\":[{\"id\":\"93ad602\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/130807026\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"cb5dad6\",\"elType\":\"section\",\"settings\":{\"_title\":\"Inner Sedtion\"},\"elements\":[{\"id\":\"25cd114\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_title\":\"virtual reality experience\"},\"elements\":[{\"id\":\"15643ab\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"8ec2d0f\",\"elType\":\"widget\",\"settings\":{\"title\":\"VIRTUAL REALITY EXPERIENCE\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4e004ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"SPIDER-MAN HOMECOMING DISPLAY\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"73a2406\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Submerse yourself in the world of your friendly neighborhood Spider-Man in this fun and thrilling VR Theatrical Display.\\u00a0\\u00a0Based on the all-new 2017 film, the Spider-Man Homecoming VR Experience is a first-person look through the eyes of Spidey himself.<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"04b03b4\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7f4ffcc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"7f85dc5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":76,\"_title\":\"spiderman homecoming\"},\"elements\":[{\"id\":\"9a5a392\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Spidey_Home_V4_002.jpg\",\"id\":230},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"css_filters_css_filter\":\"custom\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"c16541a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":24,\"_title\":\"spiderman 2 vertical pics\"},\"elements\":[{\"id\":\"95b0eed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/IMG_3834.jpg\",\"id\":231},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8ea51a8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/IMG_3788.jpg\",\"id\":233}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"12d34c8\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"00\",\"bottom\":\"00\",\"left\":\"00\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"95003e6\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":435,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/TheStrangers_V01.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":4.9,\"sizes\":[]},\"layout\":\"full_width\",\"column_position\":\"top\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":68}},\"_title\":\"Section - STRANGERS HERO\",\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":3.6,\"sizes\":[]},\"motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_range\":\"viewport\"},\"elements\":[{\"id\":\"b6deb1a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_title\":\"strangers prey at night\"},\"elements\":[{\"id\":\"7a350ee\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"70\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"ecd0cbe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"d684039\",\"elType\":\"widget\",\"settings\":{\"title\":\"THE STRANGERS PREY AT NIGHT\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"003eb99\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5fd9452\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"93ad64e\",\"elType\":\"widget\",\"settings\":{\"title\":\"GRAND FORMAT PHOTO-OP STANDEE\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"247aafb\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"_title\":\"Section - MARKETING AT ITS FINEST\"},\"elements\":[{\"id\":\"f002e93\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"d1321ed\",\"elType\":\"widget\",\"settings\":{\"title\":\"MARKETING AT ITS FINEST, TAILORED FOR SOCIAL MEDIA\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a16ef4e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>This theatrical display allows fans to take photos with Dollface, Pin-up Girl, the Man in the Mask and share their photos on social media.<\\/p>\",\"align\":\"center\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b58ab88\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"00ca412\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58},\"elements\":[{\"id\":\"032d3df\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/003.jpg\",\"id\":446},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"672c1f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42},\"elements\":[{\"id\":\"623f6d1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/26222472_170774200201231_6120473304701599744_n.jpg\",\"id\":447},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a641f07\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/VIDEO_COMING_SOON_01.jpg\",\"id\":449}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cf9e008\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"677b52c\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b747fda\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":700},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":900},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"_title\":\"our company bitches\"},\"elements\":[{\"id\":\"7eab781\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"43661634\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our company is a collective of amazing people striving to build delightful products.\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.4},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70cc6d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.<\\/p>\",\"align\":\"center\",\"text_color\":\"#686868\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"615dfb3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1000},\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"6414755f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3bb26eed\",\"elType\":\"widget\",\"settings\":{\"text\":\"Read More\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3},\"button_text_color\":\"#ffffff\",\"background_color\":\"rgba(0,0,0,0)\",\"hover_color\":\"#00ce1b\",\"button_hover_border_color\":\"#00ce1b\",\"hover_animation\":\"grow\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"123f6d1\",\"elType\":\"section\",\"settings\":{\"_title\":\"blank at bottom\"},\"elements\":[{\"id\":\"25fcf2e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"64f593f\",\"elType\":\"section\",\"settings\":{\"_title\":\"blank at bottom\"},\"elements\":[{\"id\":\"596f429\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(3076,474,'_elementor_edit_mode','builder'),(3077,474,'_elementor_elements_usage','a:9:{s:7:\"heading\";i:12;s:6:\"column\";i:21;s:7:\"section\";i:17;s:7:\"divider\";i:6;s:11:\"text-editor\";i:5;s:5:\"image\";i:9;s:5:\"video\";i:2;s:6:\"spacer\";i:2;s:6:\"button\";i:1;}'),(3078,474,'_elementor_css','a:5:{s:4:\"time\";i:1569109029;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:1:{i:0;s:0:\"\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(3080,475,'_elementor_template_type','post'),(3081,475,'_elementor_version','2.6.8'),(3082,475,'_elementor_pro_version','2.6.5'),(3083,475,'_wp_page_template','default'),(3084,475,'_elementor_data','[{\"id\":\"55396f27\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":50,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Theatrical_Display_V003C.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"motion_fx_range\":\"viewport\",\"layout\":\"full_width\",\"column_position\":\"top\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"_title\":\"Section - INSIDIOUS HERO\",\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":1.9,\"sizes\":[]}},\"elements\":[{\"id\":\"905a97c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ad7f3f6\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"162\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2489c07\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"c0bbe21\",\"elType\":\"widget\",\"settings\":{\"title\":\"#WHAT\'S COOL\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"dc881ae\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"18630a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"870a9ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"INNOVATIONS FROM ONDISPLAY CREATIVE\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7df48509\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"_title\":\"Section - LIVING STANDEES\"},\"elements\":[{\"id\":\"1147078d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"23bbc68\",\"elType\":\"widget\",\"settings\":{\"title\":\"LIVING STANDEES HAUNTING THEATERS\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b40d155\",\"elType\":\"widget\",\"settings\":{\"title\":\"ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"700\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86cff8b\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"225341d\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS \\u2013 THE LAST KEY\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a680ae8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"be59fa3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e36fe5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"d4d2039\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2.jpg\",\"id\":88},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3c9b758\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"79e122a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2-1.jpg\",\"id\":87},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3dc9df5\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"start\":0},\"elements\":[],\"widgetType\":\"video\"},{\"id\":\"b61a90b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"8f63560\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"08c588a\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS CHAPTER 3\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0e612c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>OnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7e77f5a\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"gap\":\"wide\"},\"elements\":[{\"id\":\"7eb5a21\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.332},\"elements\":[{\"id\":\"ae25867\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/image-asset.jpeg\",\"id\":196},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"24c773b\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":58},\"elements\":[{\"id\":\"93ad602\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/130807026\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"cb5dad6\",\"elType\":\"section\",\"settings\":{\"_title\":\"Inner Sedtion\"},\"elements\":[{\"id\":\"25cd114\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_title\":\"virtual reality experience\"},\"elements\":[{\"id\":\"15643ab\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"8ec2d0f\",\"elType\":\"widget\",\"settings\":{\"title\":\"VIRTUAL REALITY EXPERIENCE\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4e004ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"SPIDER-MAN HOMECOMING DISPLAY\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"73a2406\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Submerse yourself in the world of your friendly neighborhood Spider-Man in this fun and thrilling VR Theatrical Display.\\u00a0\\u00a0Based on the all-new 2017 film, the Spider-Man Homecoming VR Experience is a first-person look through the eyes of Spidey himself.<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"04b03b4\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7f4ffcc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"7f85dc5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":76,\"_title\":\"spiderman homecoming\"},\"elements\":[{\"id\":\"9a5a392\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Spidey_Home_V4_002.jpg\",\"id\":230},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"css_filters_css_filter\":\"custom\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"c16541a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":24,\"_title\":\"spiderman 2 vertical pics\"},\"elements\":[{\"id\":\"95b0eed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/IMG_3834.jpg\",\"id\":231},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8ea51a8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/IMG_3788.jpg\",\"id\":233}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"12d34c8\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"00\",\"bottom\":\"00\",\"left\":\"00\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"95003e6\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":435,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/TheStrangers_V01.jpg\"},\"background_position\":\"center center\",\"background_size\":\"contain\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":4.9,\"sizes\":[]},\"layout\":\"full_width\",\"column_position\":\"top\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":68}},\"_title\":\"Section - STRANGERS HERO\",\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":3.6,\"sizes\":[]},\"motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_range\":\"viewport\"},\"elements\":[{\"id\":\"b6deb1a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_title\":\"strangers prey at night\"},\"elements\":[{\"id\":\"7a350ee\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"70\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"ecd0cbe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"d684039\",\"elType\":\"widget\",\"settings\":{\"title\":\"THE STRANGERS PREY AT NIGHT\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"003eb99\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5fd9452\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"93ad64e\",\"elType\":\"widget\",\"settings\":{\"title\":\"GRAND FORMAT PHOTO-OP STANDEE\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"247aafb\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"_title\":\"Section - MARKETING AT ITS FINEST\"},\"elements\":[{\"id\":\"f002e93\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"d1321ed\",\"elType\":\"widget\",\"settings\":{\"title\":\"MARKETING AT ITS FINEST, TAILORED FOR SOCIAL MEDIA\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a16ef4e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>This theatrical display allows fans to take photos with Dollface, Pin-up Girl, the Man in the Mask and share their photos on social media.<\\/p>\",\"align\":\"center\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b58ab88\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"00ca412\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58},\"elements\":[{\"id\":\"032d3df\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/003.jpg\",\"id\":446},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"672c1f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42},\"elements\":[{\"id\":\"623f6d1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/26222472_170774200201231_6120473304701599744_n.jpg\",\"id\":447},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a641f07\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/VIDEO_COMING_SOON_01.jpg\",\"id\":449}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cf9e008\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"677b52c\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b747fda\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":700},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":900},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"_title\":\"our company bitches\"},\"elements\":[{\"id\":\"7eab781\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"43661634\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our company is a collective of amazing people striving to build delightful products.\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.4},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70cc6d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.<\\/p>\",\"align\":\"center\",\"text_color\":\"#686868\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"615dfb3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1000},\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"6414755f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3bb26eed\",\"elType\":\"widget\",\"settings\":{\"text\":\"Read More\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3},\"button_text_color\":\"#ffffff\",\"background_color\":\"rgba(0,0,0,0)\",\"hover_color\":\"#00ce1b\",\"button_hover_border_color\":\"#00ce1b\",\"hover_animation\":\"grow\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"123f6d1\",\"elType\":\"section\",\"settings\":{\"_title\":\"blank at bottom\"},\"elements\":[{\"id\":\"25fcf2e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"64f593f\",\"elType\":\"section\",\"settings\":{\"_title\":\"blank at bottom\"},\"elements\":[{\"id\":\"596f429\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(3085,475,'_elementor_edit_mode','builder'),(3086,475,'_elementor_elements_usage','a:9:{s:7:\"heading\";i:12;s:6:\"column\";i:21;s:7:\"section\";i:17;s:7:\"divider\";i:6;s:11:\"text-editor\";i:5;s:5:\"image\";i:9;s:5:\"video\";i:2;s:6:\"spacer\";i:2;s:6:\"button\";i:1;}'),(3087,475,'_elementor_css','a:5:{s:4:\"time\";i:1569109669;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:1:{i:0;s:0:\"\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(3089,476,'_elementor_template_type','post'),(3090,476,'_elementor_version','2.6.8'),(3091,476,'_elementor_pro_version','2.6.5'),(3092,476,'_wp_page_template','default'),(3093,476,'_elementor_data','[{\"id\":\"55396f27\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":50,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Theatrical_Display_V003C.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"motion_fx_range\":\"viewport\",\"layout\":\"full_width\",\"column_position\":\"top\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"_title\":\"Section - INSIDIOUS HERO\",\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":1.9,\"sizes\":[]}},\"elements\":[{\"id\":\"905a97c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ad7f3f6\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"162\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2489c07\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"c0bbe21\",\"elType\":\"widget\",\"settings\":{\"title\":\"#WHAT\'S COOL\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"dc881ae\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"18630a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"870a9ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"INNOVATIONS FROM ONDISPLAY CREATIVE\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7df48509\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"_title\":\"Section - LIVING STANDEES\"},\"elements\":[{\"id\":\"1147078d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"23bbc68\",\"elType\":\"widget\",\"settings\":{\"title\":\"LIVING STANDEES HAUNTING THEATERS\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b40d155\",\"elType\":\"widget\",\"settings\":{\"title\":\"ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"700\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86cff8b\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"225341d\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS \\u2013 THE LAST KEY\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a680ae8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"be59fa3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e36fe5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"d4d2039\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2.jpg\",\"id\":88},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3c9b758\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"79e122a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2-1.jpg\",\"id\":87},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3dc9df5\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"start\":0},\"elements\":[],\"widgetType\":\"video\"},{\"id\":\"b61a90b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"8f63560\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"08c588a\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS CHAPTER 3\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0e612c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>OnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7e77f5a\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"gap\":\"wide\"},\"elements\":[{\"id\":\"7eb5a21\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.332},\"elements\":[{\"id\":\"ae25867\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/image-asset.jpeg\",\"id\":196},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"24c773b\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":58},\"elements\":[{\"id\":\"93ad602\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/130807026\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"cb5dad6\",\"elType\":\"section\",\"settings\":{\"_title\":\"Inner Sedtion\"},\"elements\":[{\"id\":\"25cd114\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_title\":\"virtual reality experience\"},\"elements\":[{\"id\":\"15643ab\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"8ec2d0f\",\"elType\":\"widget\",\"settings\":{\"title\":\"VIRTUAL REALITY EXPERIENCE\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4e004ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"SPIDER-MAN HOMECOMING DISPLAY\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"73a2406\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Submerse yourself in the world of your friendly neighborhood Spider-Man in this fun and thrilling VR Theatrical Display.\\u00a0\\u00a0Based on the all-new 2017 film, the Spider-Man Homecoming VR Experience is a first-person look through the eyes of Spidey himself.<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"04b03b4\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7f4ffcc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"7f85dc5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":76,\"_title\":\"spiderman homecoming\"},\"elements\":[{\"id\":\"9a5a392\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Spidey_Home_V4_002.jpg\",\"id\":230},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"css_filters_css_filter\":\"custom\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"c16541a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":24,\"_title\":\"spiderman 2 vertical pics\"},\"elements\":[{\"id\":\"95b0eed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/IMG_3834.jpg\",\"id\":231},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8ea51a8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/IMG_3788.jpg\",\"id\":233}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"12d34c8\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"00\",\"bottom\":\"00\",\"left\":\"00\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"95003e6\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":435,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/TheStrangers_V01.jpg\"},\"background_position\":\"center center\",\"background_size\":\"auto\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":4.9,\"sizes\":[]},\"layout\":\"full_width\",\"column_position\":\"top\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":68}},\"_title\":\"Section - STRANGERS HERO\",\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":3.6,\"sizes\":[]},\"motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_range\":\"viewport\"},\"elements\":[{\"id\":\"b6deb1a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_title\":\"strangers prey at night\"},\"elements\":[{\"id\":\"7a350ee\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"70\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"ecd0cbe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"d684039\",\"elType\":\"widget\",\"settings\":{\"title\":\"THE STRANGERS PREY AT NIGHT\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"003eb99\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5fd9452\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"93ad64e\",\"elType\":\"widget\",\"settings\":{\"title\":\"GRAND FORMAT PHOTO-OP STANDEE\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"247aafb\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"_title\":\"Section - MARKETING AT ITS FINEST\"},\"elements\":[{\"id\":\"f002e93\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"d1321ed\",\"elType\":\"widget\",\"settings\":{\"title\":\"MARKETING AT ITS FINEST, TAILORED FOR SOCIAL MEDIA\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a16ef4e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>This theatrical display allows fans to take photos with Dollface, Pin-up Girl, the Man in the Mask and share their photos on social media.<\\/p>\",\"align\":\"center\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b58ab88\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"00ca412\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58},\"elements\":[{\"id\":\"032d3df\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/003.jpg\",\"id\":446},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"672c1f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42},\"elements\":[{\"id\":\"623f6d1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/26222472_170774200201231_6120473304701599744_n.jpg\",\"id\":447},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a641f07\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/VIDEO_COMING_SOON_01.jpg\",\"id\":449}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cf9e008\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"677b52c\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b747fda\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":700},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":900},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"_title\":\"our company bitches\"},\"elements\":[{\"id\":\"7eab781\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"43661634\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our company is a collective of amazing people striving to build delightful products.\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.4},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70cc6d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.<\\/p>\",\"align\":\"center\",\"text_color\":\"#686868\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"615dfb3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1000},\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"6414755f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3bb26eed\",\"elType\":\"widget\",\"settings\":{\"text\":\"Read More\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3},\"button_text_color\":\"#ffffff\",\"background_color\":\"rgba(0,0,0,0)\",\"hover_color\":\"#00ce1b\",\"button_hover_border_color\":\"#00ce1b\",\"hover_animation\":\"grow\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"123f6d1\",\"elType\":\"section\",\"settings\":{\"_title\":\"blank at bottom\"},\"elements\":[{\"id\":\"25fcf2e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"64f593f\",\"elType\":\"section\",\"settings\":{\"_title\":\"blank at bottom\"},\"elements\":[{\"id\":\"596f429\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(3094,476,'_elementor_edit_mode','builder'),(3095,476,'_elementor_elements_usage','a:9:{s:7:\"heading\";i:12;s:6:\"column\";i:21;s:7:\"section\";i:17;s:7:\"divider\";i:6;s:11:\"text-editor\";i:5;s:5:\"image\";i:9;s:5:\"video\";i:2;s:6:\"spacer\";i:2;s:6:\"button\";i:1;}'),(3096,476,'_elementor_css','a:5:{s:4:\"time\";i:1569109715;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:1:{i:0;s:0:\"\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(3098,477,'_elementor_template_type','post'),(3099,477,'_elementor_version','2.6.8'),(3100,477,'_elementor_pro_version','2.6.5'),(3101,477,'_wp_page_template','default'),(3102,477,'_elementor_data','[{\"id\":\"55396f27\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":50,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Theatrical_Display_V003C.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"motion_fx_range\":\"viewport\",\"layout\":\"full_width\",\"column_position\":\"top\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"_title\":\"Section - INSIDIOUS HERO\",\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":1.9,\"sizes\":[]}},\"elements\":[{\"id\":\"905a97c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ad7f3f6\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"162\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2489c07\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"c0bbe21\",\"elType\":\"widget\",\"settings\":{\"title\":\"#WHAT\'S COOL\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"dc881ae\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"18630a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"870a9ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"INNOVATIONS FROM ONDISPLAY CREATIVE\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7df48509\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"_title\":\"Section - LIVING STANDEES\"},\"elements\":[{\"id\":\"1147078d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"23bbc68\",\"elType\":\"widget\",\"settings\":{\"title\":\"LIVING STANDEES HAUNTING THEATERS\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b40d155\",\"elType\":\"widget\",\"settings\":{\"title\":\"ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"700\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86cff8b\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"225341d\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS \\u2013 THE LAST KEY\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a680ae8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"be59fa3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e36fe5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"d4d2039\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2.jpg\",\"id\":88},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3c9b758\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"79e122a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2-1.jpg\",\"id\":87},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3dc9df5\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"start\":0},\"elements\":[],\"widgetType\":\"video\"},{\"id\":\"b61a90b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"8f63560\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"08c588a\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS CHAPTER 3\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0e612c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>OnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7e77f5a\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"gap\":\"wide\"},\"elements\":[{\"id\":\"7eb5a21\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.332},\"elements\":[{\"id\":\"ae25867\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/image-asset.jpeg\",\"id\":196},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"24c773b\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":58},\"elements\":[{\"id\":\"93ad602\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/130807026\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"cb5dad6\",\"elType\":\"section\",\"settings\":{\"_title\":\"Inner Sedtion\"},\"elements\":[{\"id\":\"25cd114\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_title\":\"virtual reality experience\"},\"elements\":[{\"id\":\"15643ab\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"8ec2d0f\",\"elType\":\"widget\",\"settings\":{\"title\":\"VIRTUAL REALITY EXPERIENCE\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4e004ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"SPIDER-MAN HOMECOMING DISPLAY\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"73a2406\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Submerse yourself in the world of your friendly neighborhood Spider-Man in this fun and thrilling VR Theatrical Display.\\u00a0\\u00a0Based on the all-new 2017 film, the Spider-Man Homecoming VR Experience is a first-person look through the eyes of Spidey himself.<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"04b03b4\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7f4ffcc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"7f85dc5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":76,\"_title\":\"spiderman homecoming\"},\"elements\":[{\"id\":\"9a5a392\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Spidey_Home_V4_002.jpg\",\"id\":230},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"css_filters_css_filter\":\"custom\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"c16541a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":24,\"_title\":\"spiderman 2 vertical pics\"},\"elements\":[{\"id\":\"95b0eed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/IMG_3834.jpg\",\"id\":231},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8ea51a8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/IMG_3788.jpg\",\"id\":233}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"12d34c8\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"00\",\"bottom\":\"00\",\"left\":\"00\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"95003e6\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":435,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/TheStrangers_V01.jpg\"},\"background_position\":\"center center\",\"background_size\":\"auto\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":4.9,\"sizes\":[]},\"layout\":\"full_width\",\"column_position\":\"top\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":68}},\"_title\":\"Section - STRANGERS HERO\",\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":3.6,\"sizes\":[]},\"motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_translateY_direction\":\"negative\"},\"elements\":[{\"id\":\"b6deb1a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_title\":\"strangers prey at night\"},\"elements\":[{\"id\":\"7a350ee\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"70\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"ecd0cbe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"d684039\",\"elType\":\"widget\",\"settings\":{\"title\":\"THE STRANGERS PREY AT NIGHT\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"003eb99\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5fd9452\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"93ad64e\",\"elType\":\"widget\",\"settings\":{\"title\":\"GRAND FORMAT PHOTO-OP STANDEE\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"247aafb\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"_title\":\"Section - MARKETING AT ITS FINEST\"},\"elements\":[{\"id\":\"f002e93\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"d1321ed\",\"elType\":\"widget\",\"settings\":{\"title\":\"MARKETING AT ITS FINEST, TAILORED FOR SOCIAL MEDIA\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a16ef4e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>This theatrical display allows fans to take photos with Dollface, Pin-up Girl, the Man in the Mask and share their photos on social media.<\\/p>\",\"align\":\"center\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b58ab88\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"00ca412\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58},\"elements\":[{\"id\":\"032d3df\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/003.jpg\",\"id\":446},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"672c1f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42},\"elements\":[{\"id\":\"623f6d1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/26222472_170774200201231_6120473304701599744_n.jpg\",\"id\":447},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a641f07\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/VIDEO_COMING_SOON_01.jpg\",\"id\":449}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cf9e008\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"677b52c\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b747fda\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":700},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":900},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"_title\":\"our company bitches\"},\"elements\":[{\"id\":\"7eab781\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"43661634\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our company is a collective of amazing people striving to build delightful products.\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.4},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70cc6d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.<\\/p>\",\"align\":\"center\",\"text_color\":\"#686868\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"615dfb3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1000},\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"6414755f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3bb26eed\",\"elType\":\"widget\",\"settings\":{\"text\":\"Read More\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3},\"button_text_color\":\"#ffffff\",\"background_color\":\"rgba(0,0,0,0)\",\"hover_color\":\"#00ce1b\",\"button_hover_border_color\":\"#00ce1b\",\"hover_animation\":\"grow\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"123f6d1\",\"elType\":\"section\",\"settings\":{\"_title\":\"blank at bottom\"},\"elements\":[{\"id\":\"25fcf2e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"64f593f\",\"elType\":\"section\",\"settings\":{\"_title\":\"blank at bottom\"},\"elements\":[{\"id\":\"596f429\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(3103,477,'_elementor_edit_mode','builder'),(3104,477,'_elementor_elements_usage','a:9:{s:7:\"heading\";i:12;s:6:\"column\";i:21;s:7:\"section\";i:17;s:7:\"divider\";i:6;s:11:\"text-editor\";i:5;s:5:\"image\";i:9;s:5:\"video\";i:2;s:6:\"spacer\";i:2;s:6:\"button\";i:1;}'),(3105,477,'_elementor_css','a:5:{s:4:\"time\";i:1569109738;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:1:{i:0;s:0:\"\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(3107,478,'_elementor_template_type','post'),(3108,478,'_elementor_version','2.6.8'),(3109,478,'_elementor_pro_version','2.6.5'),(3110,478,'_wp_page_template','default'),(3111,478,'_elementor_data','[{\"id\":\"55396f27\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":50,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Theatrical_Display_V003C.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"motion_fx_range\":\"viewport\",\"layout\":\"full_width\",\"column_position\":\"top\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"_title\":\"Section - INSIDIOUS HERO\",\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":1.9,\"sizes\":[]}},\"elements\":[{\"id\":\"905a97c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ad7f3f6\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"162\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2489c07\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"c0bbe21\",\"elType\":\"widget\",\"settings\":{\"title\":\"#WHAT\'S COOL\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"dc881ae\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"18630a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"870a9ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"INNOVATIONS FROM ONDISPLAY CREATIVE\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7df48509\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"_title\":\"Section - LIVING STANDEES\"},\"elements\":[{\"id\":\"1147078d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"23bbc68\",\"elType\":\"widget\",\"settings\":{\"title\":\"LIVING STANDEES HAUNTING THEATERS\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b40d155\",\"elType\":\"widget\",\"settings\":{\"title\":\"ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"700\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86cff8b\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"225341d\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS \\u2013 THE LAST KEY\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a680ae8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"be59fa3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e36fe5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"d4d2039\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2.jpg\",\"id\":88},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3c9b758\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"79e122a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2-1.jpg\",\"id\":87},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3dc9df5\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"start\":0},\"elements\":[],\"widgetType\":\"video\"},{\"id\":\"b61a90b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"8f63560\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"08c588a\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS CHAPTER 3\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0e612c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>OnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7e77f5a\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"gap\":\"wide\"},\"elements\":[{\"id\":\"7eb5a21\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.332},\"elements\":[{\"id\":\"ae25867\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/image-asset.jpeg\",\"id\":196},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"24c773b\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":58},\"elements\":[{\"id\":\"93ad602\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/130807026\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"cb5dad6\",\"elType\":\"section\",\"settings\":{\"_title\":\"Inner Sedtion\"},\"elements\":[{\"id\":\"25cd114\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_title\":\"virtual reality experience\"},\"elements\":[{\"id\":\"15643ab\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"8ec2d0f\",\"elType\":\"widget\",\"settings\":{\"title\":\"VIRTUAL REALITY EXPERIENCE\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4e004ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"SPIDER-MAN HOMECOMING DISPLAY\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"73a2406\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Submerse yourself in the world of your friendly neighborhood Spider-Man in this fun and thrilling VR Theatrical Display.\\u00a0\\u00a0Based on the all-new 2017 film, the Spider-Man Homecoming VR Experience is a first-person look through the eyes of Spidey himself.<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"04b03b4\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7f4ffcc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"7f85dc5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":76,\"_title\":\"spiderman homecoming\"},\"elements\":[{\"id\":\"9a5a392\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Spidey_Home_V4_002.jpg\",\"id\":230},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"css_filters_css_filter\":\"custom\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"c16541a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":24,\"_title\":\"spiderman 2 vertical pics\"},\"elements\":[{\"id\":\"95b0eed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/IMG_3834.jpg\",\"id\":231},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8ea51a8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/IMG_3788.jpg\",\"id\":233}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"12d34c8\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"00\",\"bottom\":\"00\",\"left\":\"00\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"95003e6\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":435,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/TheStrangers_V01.jpg\"},\"background_position\":\"center center\",\"background_size\":\"auto\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":4.9,\"sizes\":[]},\"layout\":\"full_width\",\"column_position\":\"top\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":68}},\"_title\":\"Section - STRANGERS HERO\",\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":3.6,\"sizes\":[]},\"motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_range\":\"page\"},\"elements\":[{\"id\":\"b6deb1a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_title\":\"strangers prey at night\"},\"elements\":[{\"id\":\"7a350ee\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"70\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"ecd0cbe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"d684039\",\"elType\":\"widget\",\"settings\":{\"title\":\"THE STRANGERS PREY AT NIGHT\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"003eb99\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5fd9452\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"93ad64e\",\"elType\":\"widget\",\"settings\":{\"title\":\"GRAND FORMAT PHOTO-OP STANDEE\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"247aafb\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"_title\":\"Section - MARKETING AT ITS FINEST\"},\"elements\":[{\"id\":\"f002e93\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"d1321ed\",\"elType\":\"widget\",\"settings\":{\"title\":\"MARKETING AT ITS FINEST, TAILORED FOR SOCIAL MEDIA\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a16ef4e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>This theatrical display allows fans to take photos with Dollface, Pin-up Girl, the Man in the Mask and share their photos on social media.<\\/p>\",\"align\":\"center\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b58ab88\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"00ca412\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58},\"elements\":[{\"id\":\"032d3df\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/003.jpg\",\"id\":446},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"672c1f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42},\"elements\":[{\"id\":\"623f6d1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/26222472_170774200201231_6120473304701599744_n.jpg\",\"id\":447},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a641f07\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/VIDEO_COMING_SOON_01.jpg\",\"id\":449}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cf9e008\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"677b52c\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b747fda\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":700},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":900},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"_title\":\"our company bitches\"},\"elements\":[{\"id\":\"7eab781\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"43661634\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our company is a collective of amazing people striving to build delightful products.\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.4},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70cc6d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.<\\/p>\",\"align\":\"center\",\"text_color\":\"#686868\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"615dfb3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1000},\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"6414755f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3bb26eed\",\"elType\":\"widget\",\"settings\":{\"text\":\"Read More\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3},\"button_text_color\":\"#ffffff\",\"background_color\":\"rgba(0,0,0,0)\",\"hover_color\":\"#00ce1b\",\"button_hover_border_color\":\"#00ce1b\",\"hover_animation\":\"grow\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"123f6d1\",\"elType\":\"section\",\"settings\":{\"_title\":\"blank at bottom\"},\"elements\":[{\"id\":\"25fcf2e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"64f593f\",\"elType\":\"section\",\"settings\":{\"_title\":\"blank at bottom\"},\"elements\":[{\"id\":\"596f429\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(3112,478,'_elementor_edit_mode','builder'),(3113,478,'_elementor_elements_usage','a:9:{s:7:\"heading\";i:12;s:6:\"column\";i:21;s:7:\"section\";i:17;s:7:\"divider\";i:6;s:11:\"text-editor\";i:5;s:5:\"image\";i:9;s:5:\"video\";i:2;s:6:\"spacer\";i:2;s:6:\"button\";i:1;}'),(3114,478,'_elementor_css','a:5:{s:4:\"time\";i:1569109775;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:1:{i:0;s:0:\"\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(3116,479,'_elementor_template_type','post'),(3117,479,'_elementor_version','2.6.8'),(3118,479,'_elementor_pro_version','2.6.5'),(3119,479,'_wp_page_template','default'),(3120,479,'_elementor_data','[{\"id\":\"55396f27\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":50,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Theatrical_Display_V003C.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"motion_fx_range\":\"viewport\",\"layout\":\"full_width\",\"column_position\":\"top\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"_title\":\"Section - INSIDIOUS HERO\",\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":1.9,\"sizes\":[]}},\"elements\":[{\"id\":\"905a97c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ad7f3f6\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"162\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2489c07\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"c0bbe21\",\"elType\":\"widget\",\"settings\":{\"title\":\"#WHAT\'S COOL\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"dc881ae\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"18630a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"870a9ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"INNOVATIONS FROM ONDISPLAY CREATIVE\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7df48509\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"_title\":\"Section - LIVING STANDEES\"},\"elements\":[{\"id\":\"1147078d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"23bbc68\",\"elType\":\"widget\",\"settings\":{\"title\":\"LIVING STANDEES HAUNTING THEATERS\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b40d155\",\"elType\":\"widget\",\"settings\":{\"title\":\"ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"700\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86cff8b\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"225341d\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS \\u2013 THE LAST KEY\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a680ae8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"be59fa3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e36fe5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"d4d2039\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2.jpg\",\"id\":88},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3c9b758\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"79e122a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2-1.jpg\",\"id\":87},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3dc9df5\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"start\":0},\"elements\":[],\"widgetType\":\"video\"},{\"id\":\"b61a90b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"8f63560\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"08c588a\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS CHAPTER 3\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0e612c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>OnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7e77f5a\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"gap\":\"wide\"},\"elements\":[{\"id\":\"7eb5a21\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.332},\"elements\":[{\"id\":\"ae25867\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/image-asset.jpeg\",\"id\":196},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"24c773b\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":58},\"elements\":[{\"id\":\"93ad602\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/130807026\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"cb5dad6\",\"elType\":\"section\",\"settings\":{\"_title\":\"Inner Sedtion\"},\"elements\":[{\"id\":\"25cd114\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_title\":\"virtual reality experience\"},\"elements\":[{\"id\":\"15643ab\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"8ec2d0f\",\"elType\":\"widget\",\"settings\":{\"title\":\"VIRTUAL REALITY EXPERIENCE\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4e004ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"SPIDER-MAN HOMECOMING DISPLAY\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"73a2406\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Submerse yourself in the world of your friendly neighborhood Spider-Man in this fun and thrilling VR Theatrical Display.\\u00a0\\u00a0Based on the all-new 2017 film, the Spider-Man Homecoming VR Experience is a first-person look through the eyes of Spidey himself.<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"04b03b4\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7f4ffcc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"7f85dc5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":76,\"_title\":\"spiderman homecoming\"},\"elements\":[{\"id\":\"9a5a392\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Spidey_Home_V4_002.jpg\",\"id\":230},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"css_filters_css_filter\":\"custom\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"c16541a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":24,\"_title\":\"spiderman 2 vertical pics\"},\"elements\":[{\"id\":\"95b0eed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/IMG_3834.jpg\",\"id\":231},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8ea51a8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/IMG_3788.jpg\",\"id\":233}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"12d34c8\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"00\",\"bottom\":\"00\",\"left\":\"00\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"95003e6\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":435,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/TheStrangers_V01.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":4.9,\"sizes\":[]},\"layout\":\"full_width\",\"column_position\":\"top\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":68}},\"_title\":\"Section - STRANGERS HERO\",\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":3.6,\"sizes\":[]},\"motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_range\":\"page\"},\"elements\":[{\"id\":\"b6deb1a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_title\":\"strangers prey at night\"},\"elements\":[{\"id\":\"7a350ee\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"70\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"ecd0cbe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"d684039\",\"elType\":\"widget\",\"settings\":{\"title\":\"THE STRANGERS PREY AT NIGHT\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"003eb99\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5fd9452\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"93ad64e\",\"elType\":\"widget\",\"settings\":{\"title\":\"GRAND FORMAT PHOTO-OP STANDEE\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"247aafb\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"_title\":\"Section - MARKETING AT ITS FINEST\"},\"elements\":[{\"id\":\"f002e93\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"d1321ed\",\"elType\":\"widget\",\"settings\":{\"title\":\"MARKETING AT ITS FINEST, TAILORED FOR SOCIAL MEDIA\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a16ef4e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>This theatrical display allows fans to take photos with Dollface, Pin-up Girl, the Man in the Mask and share their photos on social media.<\\/p>\",\"align\":\"center\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b58ab88\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"00ca412\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58},\"elements\":[{\"id\":\"032d3df\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/003.jpg\",\"id\":446},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"672c1f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42},\"elements\":[{\"id\":\"623f6d1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/26222472_170774200201231_6120473304701599744_n.jpg\",\"id\":447},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a641f07\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/VIDEO_COMING_SOON_01.jpg\",\"id\":449}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cf9e008\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"677b52c\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b747fda\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":700},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":900},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"_title\":\"our company bitches\"},\"elements\":[{\"id\":\"7eab781\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"43661634\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our company is a collective of amazing people striving to build delightful products.\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.4},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70cc6d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.<\\/p>\",\"align\":\"center\",\"text_color\":\"#686868\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"615dfb3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1000},\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"6414755f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3bb26eed\",\"elType\":\"widget\",\"settings\":{\"text\":\"Read More\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3},\"button_text_color\":\"#ffffff\",\"background_color\":\"rgba(0,0,0,0)\",\"hover_color\":\"#00ce1b\",\"button_hover_border_color\":\"#00ce1b\",\"hover_animation\":\"grow\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"123f6d1\",\"elType\":\"section\",\"settings\":{\"_title\":\"blank at bottom\"},\"elements\":[{\"id\":\"25fcf2e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"64f593f\",\"elType\":\"section\",\"settings\":{\"_title\":\"blank at bottom\"},\"elements\":[{\"id\":\"596f429\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(3121,479,'_elementor_edit_mode','builder'),(3122,479,'_elementor_elements_usage','a:9:{s:7:\"heading\";i:12;s:6:\"column\";i:21;s:7:\"section\";i:17;s:7:\"divider\";i:6;s:11:\"text-editor\";i:5;s:5:\"image\";i:9;s:5:\"video\";i:2;s:6:\"spacer\";i:2;s:6:\"button\";i:1;}'),(3123,479,'_elementor_css','a:5:{s:4:\"time\";i:1569109791;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:1:{i:0;s:0:\"\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(3125,480,'_elementor_template_type','post'),(3126,480,'_elementor_version','2.6.8'),(3127,480,'_elementor_pro_version','2.6.5'),(3128,480,'_wp_page_template','default'),(3129,480,'_elementor_data','[{\"id\":\"55396f27\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":50,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Theatrical_Display_V003C.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"motion_fx_range\":\"viewport\",\"layout\":\"full_width\",\"column_position\":\"top\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"_title\":\"Section - INSIDIOUS HERO\",\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":1.9,\"sizes\":[]}},\"elements\":[{\"id\":\"905a97c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ad7f3f6\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"162\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2489c07\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"c0bbe21\",\"elType\":\"widget\",\"settings\":{\"title\":\"#WHAT\'S COOL\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"dc881ae\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"18630a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"870a9ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"INNOVATIONS FROM ONDISPLAY CREATIVE\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7df48509\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"_title\":\"Section - LIVING STANDEES\"},\"elements\":[{\"id\":\"1147078d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"23bbc68\",\"elType\":\"widget\",\"settings\":{\"title\":\"LIVING STANDEES HAUNTING THEATERS\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b40d155\",\"elType\":\"widget\",\"settings\":{\"title\":\"ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"700\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86cff8b\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"225341d\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS \\u2013 THE LAST KEY\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a680ae8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"be59fa3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e36fe5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"d4d2039\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2.jpg\",\"id\":88},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3c9b758\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"79e122a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2-1.jpg\",\"id\":87},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3dc9df5\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"start\":0},\"elements\":[],\"widgetType\":\"video\"},{\"id\":\"b61a90b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"8f63560\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"08c588a\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS CHAPTER 3\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0e612c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>OnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7e77f5a\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"gap\":\"wide\"},\"elements\":[{\"id\":\"7eb5a21\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.332},\"elements\":[{\"id\":\"ae25867\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/image-asset.jpeg\",\"id\":196},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"24c773b\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":58},\"elements\":[{\"id\":\"93ad602\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/130807026\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"cb5dad6\",\"elType\":\"section\",\"settings\":{\"_title\":\"Inner Sedtion\"},\"elements\":[{\"id\":\"25cd114\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_title\":\"virtual reality experience\"},\"elements\":[{\"id\":\"15643ab\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"8ec2d0f\",\"elType\":\"widget\",\"settings\":{\"title\":\"VIRTUAL REALITY EXPERIENCE\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4e004ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"SPIDER-MAN HOMECOMING DISPLAY\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"73a2406\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Submerse yourself in the world of your friendly neighborhood Spider-Man in this fun and thrilling VR Theatrical Display.\\u00a0\\u00a0Based on the all-new 2017 film, the Spider-Man Homecoming VR Experience is a first-person look through the eyes of Spidey himself.<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"04b03b4\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7f4ffcc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"7f85dc5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":76,\"_title\":\"spiderman homecoming\"},\"elements\":[{\"id\":\"9a5a392\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Spidey_Home_V4_002.jpg\",\"id\":230},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"css_filters_css_filter\":\"custom\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"c16541a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":24,\"_title\":\"spiderman 2 vertical pics\"},\"elements\":[{\"id\":\"95b0eed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/IMG_3834.jpg\",\"id\":231},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8ea51a8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/IMG_3788.jpg\",\"id\":233}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"12d34c8\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"00\",\"bottom\":\"00\",\"left\":\"00\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"95003e6\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":435,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/TheStrangers_V01.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":4.9,\"sizes\":[]},\"layout\":\"full_width\",\"column_position\":\"top\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":68}},\"_title\":\"Section - STRANGERS HERO\",\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":3.6,\"sizes\":[]},\"motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_range\":\"page\"},\"elements\":[{\"id\":\"b6deb1a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_title\":\"strangers prey at night\"},\"elements\":[{\"id\":\"7a350ee\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"70\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"ecd0cbe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"d684039\",\"elType\":\"widget\",\"settings\":{\"title\":\"THE STRANGERS PREY AT NIGHT\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"003eb99\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5fd9452\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"93ad64e\",\"elType\":\"widget\",\"settings\":{\"title\":\"GRAND FORMAT PHOTO-OP STANDEE\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"247aafb\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"_title\":\"Section - MARKETING AT ITS FINEST\"},\"elements\":[{\"id\":\"f002e93\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"d1321ed\",\"elType\":\"widget\",\"settings\":{\"title\":\"MARKETING AT ITS FINEST, TAILORED FOR SOCIAL MEDIA\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a16ef4e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>This theatrical display allows fans to take photos with Dollface, Pin-up Girl, the Man in the Mask and share their photos on social media.<\\/p>\",\"align\":\"center\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b58ab88\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"00ca412\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58},\"elements\":[{\"id\":\"032d3df\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/003.jpg\",\"id\":446},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"672c1f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42},\"elements\":[{\"id\":\"623f6d1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/26222472_170774200201231_6120473304701599744_n.jpg\",\"id\":447},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a641f07\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/VIDEO_COMING_SOON_01.jpg\",\"id\":449}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cf9e008\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"677b52c\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b747fda\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":700},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":900},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"_title\":\"our company bitches\"},\"elements\":[{\"id\":\"7eab781\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"43661634\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our company is a collective of amazing people striving to build delightful products.\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.4},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70cc6d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.<\\/p>\",\"align\":\"center\",\"text_color\":\"#686868\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"615dfb3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1000},\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"6414755f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3bb26eed\",\"elType\":\"widget\",\"settings\":{\"text\":\"Read More\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3},\"button_text_color\":\"#ffffff\",\"background_color\":\"rgba(0,0,0,0)\",\"hover_color\":\"#00ce1b\",\"button_hover_border_color\":\"#00ce1b\",\"hover_animation\":\"grow\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"123f6d1\",\"elType\":\"section\",\"settings\":{\"_title\":\"blank at bottom\"},\"elements\":[{\"id\":\"25fcf2e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"64f593f\",\"elType\":\"section\",\"settings\":{\"_title\":\"blank at bottom\"},\"elements\":[{\"id\":\"596f429\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(3130,480,'_elementor_edit_mode','builder'),(3131,480,'_elementor_elements_usage','a:9:{s:7:\"heading\";i:12;s:6:\"column\";i:21;s:7:\"section\";i:17;s:7:\"divider\";i:6;s:11:\"text-editor\";i:5;s:5:\"image\";i:9;s:5:\"video\";i:2;s:6:\"spacer\";i:2;s:6:\"button\";i:1;}'),(3132,480,'_elementor_css','a:5:{s:4:\"time\";i:1569109814;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:1:{i:0;s:0:\"\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(3134,481,'_elementor_template_type','post'),(3135,481,'_elementor_version','2.6.8'),(3136,481,'_elementor_pro_version','2.6.5'),(3137,481,'_wp_page_template','default'),(3138,481,'_elementor_data','[{\"id\":\"55396f27\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":50,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Theatrical_Display_V003C.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"motion_fx_range\":\"viewport\",\"layout\":\"full_width\",\"column_position\":\"top\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"_title\":\"Section - INSIDIOUS HERO\",\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":1.9,\"sizes\":[]}},\"elements\":[{\"id\":\"905a97c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ad7f3f6\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"162\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2489c07\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"c0bbe21\",\"elType\":\"widget\",\"settings\":{\"title\":\"#WHAT\'S COOL\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"dc881ae\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"18630a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"870a9ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"INNOVATIONS FROM ONDISPLAY CREATIVE\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7df48509\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"_title\":\"Section - LIVING STANDEES\"},\"elements\":[{\"id\":\"1147078d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"23bbc68\",\"elType\":\"widget\",\"settings\":{\"title\":\"LIVING STANDEES HAUNTING THEATERS\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b40d155\",\"elType\":\"widget\",\"settings\":{\"title\":\"ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"700\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86cff8b\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"225341d\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS \\u2013 THE LAST KEY\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a680ae8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"be59fa3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e36fe5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"d4d2039\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2.jpg\",\"id\":88},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3c9b758\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"79e122a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2-1.jpg\",\"id\":87},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3dc9df5\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"start\":0},\"elements\":[],\"widgetType\":\"video\"},{\"id\":\"b61a90b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"8f63560\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"08c588a\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS CHAPTER 3\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0e612c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>OnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7e77f5a\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"gap\":\"wide\"},\"elements\":[{\"id\":\"7eb5a21\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.332},\"elements\":[{\"id\":\"ae25867\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/image-asset.jpeg\",\"id\":196},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"24c773b\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":58},\"elements\":[{\"id\":\"93ad602\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/130807026\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"cb5dad6\",\"elType\":\"section\",\"settings\":{\"_title\":\"Inner Sedtion\"},\"elements\":[{\"id\":\"25cd114\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_title\":\"virtual reality experience\"},\"elements\":[{\"id\":\"15643ab\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"8ec2d0f\",\"elType\":\"widget\",\"settings\":{\"title\":\"VIRTUAL REALITY EXPERIENCE\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4e004ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"SPIDER-MAN HOMECOMING DISPLAY\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"73a2406\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Submerse yourself in the world of your friendly neighborhood Spider-Man in this fun and thrilling VR Theatrical Display.\\u00a0\\u00a0Based on the all-new 2017 film, the Spider-Man Homecoming VR Experience is a first-person look through the eyes of Spidey himself.<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"04b03b4\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7f4ffcc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"7f85dc5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":76,\"_title\":\"spiderman homecoming\"},\"elements\":[{\"id\":\"9a5a392\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Spidey_Home_V4_002.jpg\",\"id\":230},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"css_filters_css_filter\":\"custom\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"c16541a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":24,\"_title\":\"spiderman 2 vertical pics\"},\"elements\":[{\"id\":\"95b0eed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/IMG_3834.jpg\",\"id\":231},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8ea51a8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/IMG_3788.jpg\",\"id\":233}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"12d34c8\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"00\",\"bottom\":\"00\",\"left\":\"00\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"95003e6\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":435,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/TheStrangers_V01.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":4.9,\"sizes\":[]},\"layout\":\"full_width\",\"column_position\":\"top\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":68}},\"_title\":\"Section - STRANGERS HERO\",\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":3.6,\"sizes\":[]},\"motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_range\":\"viewport\"},\"elements\":[{\"id\":\"b6deb1a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_title\":\"strangers prey at night\"},\"elements\":[{\"id\":\"7a350ee\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"70\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"ecd0cbe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"d684039\",\"elType\":\"widget\",\"settings\":{\"title\":\"THE STRANGERS PREY AT NIGHT\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"003eb99\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5fd9452\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"93ad64e\",\"elType\":\"widget\",\"settings\":{\"title\":\"GRAND FORMAT PHOTO-OP STANDEE\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"247aafb\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"_title\":\"Section - MARKETING AT ITS FINEST\"},\"elements\":[{\"id\":\"f002e93\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"d1321ed\",\"elType\":\"widget\",\"settings\":{\"title\":\"MARKETING AT ITS FINEST, TAILORED FOR SOCIAL MEDIA\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a16ef4e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>This theatrical display allows fans to take photos with Dollface, Pin-up Girl, the Man in the Mask and share their photos on social media.<\\/p>\",\"align\":\"center\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b58ab88\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"00ca412\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58},\"elements\":[{\"id\":\"032d3df\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/003.jpg\",\"id\":446},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"672c1f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42},\"elements\":[{\"id\":\"623f6d1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/26222472_170774200201231_6120473304701599744_n.jpg\",\"id\":447},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a641f07\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/VIDEO_COMING_SOON_01.jpg\",\"id\":449}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cf9e008\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"677b52c\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b747fda\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":700},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":900},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"_title\":\"our company bitches\"},\"elements\":[{\"id\":\"7eab781\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"43661634\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our company is a collective of amazing people striving to build delightful products.\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.4},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70cc6d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.<\\/p>\",\"align\":\"center\",\"text_color\":\"#686868\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"615dfb3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1000},\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"6414755f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3bb26eed\",\"elType\":\"widget\",\"settings\":{\"text\":\"Read More\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3},\"button_text_color\":\"#ffffff\",\"background_color\":\"rgba(0,0,0,0)\",\"hover_color\":\"#00ce1b\",\"button_hover_border_color\":\"#00ce1b\",\"hover_animation\":\"grow\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"123f6d1\",\"elType\":\"section\",\"settings\":{\"_title\":\"blank at bottom\"},\"elements\":[{\"id\":\"25fcf2e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"64f593f\",\"elType\":\"section\",\"settings\":{\"_title\":\"blank at bottom\"},\"elements\":[{\"id\":\"596f429\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(3139,481,'_elementor_edit_mode','builder'),(3140,481,'_elementor_elements_usage','a:9:{s:7:\"heading\";i:12;s:6:\"column\";i:21;s:7:\"section\";i:17;s:7:\"divider\";i:6;s:11:\"text-editor\";i:5;s:5:\"image\";i:9;s:5:\"video\";i:2;s:6:\"spacer\";i:2;s:6:\"button\";i:1;}'),(3141,481,'_elementor_css','a:5:{s:4:\"time\";i:1569109824;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:1:{i:0;s:0:\"\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(3143,482,'_elementor_template_type','post'),(3144,482,'_elementor_version','2.6.8'),(3145,482,'_elementor_pro_version','2.6.5'),(3146,482,'_wp_page_template','default'),(3147,482,'_elementor_data','[{\"id\":\"55396f27\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":50,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Theatrical_Display_V003C.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"motion_fx_range\":\"viewport\",\"layout\":\"full_width\",\"column_position\":\"top\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"_title\":\"Section - INSIDIOUS HERO\",\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":1.9,\"sizes\":[]}},\"elements\":[{\"id\":\"905a97c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ad7f3f6\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"162\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2489c07\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"c0bbe21\",\"elType\":\"widget\",\"settings\":{\"title\":\"#WHAT\'S COOL\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"dc881ae\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"18630a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"870a9ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"INNOVATIONS FROM ONDISPLAY CREATIVE\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7df48509\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"_title\":\"Section - LIVING STANDEES\"},\"elements\":[{\"id\":\"1147078d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"23bbc68\",\"elType\":\"widget\",\"settings\":{\"title\":\"LIVING STANDEES HAUNTING THEATERS\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b40d155\",\"elType\":\"widget\",\"settings\":{\"title\":\"ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"700\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86cff8b\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"225341d\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS \\u2013 THE LAST KEY\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a680ae8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"be59fa3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e36fe5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"d4d2039\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2.jpg\",\"id\":88},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3c9b758\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"79e122a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2-1.jpg\",\"id\":87},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3dc9df5\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"start\":0},\"elements\":[],\"widgetType\":\"video\"},{\"id\":\"b61a90b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"8f63560\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"08c588a\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS CHAPTER 3\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0e612c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>OnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7e77f5a\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"gap\":\"wide\"},\"elements\":[{\"id\":\"7eb5a21\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.332},\"elements\":[{\"id\":\"ae25867\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/image-asset.jpeg\",\"id\":196},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"24c773b\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":58},\"elements\":[{\"id\":\"93ad602\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/130807026\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"cb5dad6\",\"elType\":\"section\",\"settings\":{\"_title\":\"Inner Sedtion\"},\"elements\":[{\"id\":\"25cd114\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_title\":\"virtual reality experience\"},\"elements\":[{\"id\":\"15643ab\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"8ec2d0f\",\"elType\":\"widget\",\"settings\":{\"title\":\"VIRTUAL REALITY EXPERIENCE\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4e004ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"SPIDER-MAN HOMECOMING DISPLAY\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"73a2406\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Submerse yourself in the world of your friendly neighborhood Spider-Man in this fun and thrilling VR Theatrical Display.\\u00a0\\u00a0Based on the all-new 2017 film, the Spider-Man Homecoming VR Experience is a first-person look through the eyes of Spidey himself.<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"04b03b4\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7f4ffcc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"7f85dc5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":76,\"_title\":\"spiderman homecoming\"},\"elements\":[{\"id\":\"9a5a392\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Spidey_Home_V4_002.jpg\",\"id\":230},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"css_filters_css_filter\":\"custom\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"c16541a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":24,\"_title\":\"spiderman 2 vertical pics\"},\"elements\":[{\"id\":\"95b0eed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/IMG_3834.jpg\",\"id\":231},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8ea51a8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/IMG_3788.jpg\",\"id\":233}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"12d34c8\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"00\",\"bottom\":\"00\",\"left\":\"00\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"95003e6\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":435,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/TheStrangers_V01.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":4.9,\"sizes\":[]},\"layout\":\"full_width\",\"column_position\":\"top\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":68}},\"_title\":\"Section - STRANGERS HERO\",\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_range\":\"viewport\"},\"elements\":[{\"id\":\"b6deb1a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_title\":\"strangers prey at night\"},\"elements\":[{\"id\":\"7a350ee\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"70\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"ecd0cbe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"d684039\",\"elType\":\"widget\",\"settings\":{\"title\":\"THE STRANGERS PREY AT NIGHT\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"003eb99\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5fd9452\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"93ad64e\",\"elType\":\"widget\",\"settings\":{\"title\":\"GRAND FORMAT PHOTO-OP STANDEE\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"247aafb\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"_title\":\"Section - MARKETING AT ITS FINEST\"},\"elements\":[{\"id\":\"f002e93\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"d1321ed\",\"elType\":\"widget\",\"settings\":{\"title\":\"MARKETING AT ITS FINEST, TAILORED FOR SOCIAL MEDIA\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a16ef4e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>This theatrical display allows fans to take photos with Dollface, Pin-up Girl, the Man in the Mask and share their photos on social media.<\\/p>\",\"align\":\"center\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b58ab88\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"00ca412\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58},\"elements\":[{\"id\":\"032d3df\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/003.jpg\",\"id\":446},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"672c1f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42},\"elements\":[{\"id\":\"623f6d1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/26222472_170774200201231_6120473304701599744_n.jpg\",\"id\":447},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a641f07\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/VIDEO_COMING_SOON_01.jpg\",\"id\":449}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cf9e008\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"677b52c\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b747fda\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":700},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":900},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"_title\":\"our company bitches\"},\"elements\":[{\"id\":\"7eab781\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"43661634\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our company is a collective of amazing people striving to build delightful products.\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.4},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70cc6d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.<\\/p>\",\"align\":\"center\",\"text_color\":\"#686868\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"615dfb3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1000},\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"6414755f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3bb26eed\",\"elType\":\"widget\",\"settings\":{\"text\":\"Read More\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3},\"button_text_color\":\"#ffffff\",\"background_color\":\"rgba(0,0,0,0)\",\"hover_color\":\"#00ce1b\",\"button_hover_border_color\":\"#00ce1b\",\"hover_animation\":\"grow\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"123f6d1\",\"elType\":\"section\",\"settings\":{\"_title\":\"blank at bottom\"},\"elements\":[{\"id\":\"25fcf2e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"64f593f\",\"elType\":\"section\",\"settings\":{\"_title\":\"blank at bottom\"},\"elements\":[{\"id\":\"596f429\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(3148,482,'_elementor_edit_mode','builder'),(3149,482,'_elementor_elements_usage','a:9:{s:7:\"heading\";i:12;s:6:\"column\";i:21;s:7:\"section\";i:17;s:7:\"divider\";i:6;s:11:\"text-editor\";i:5;s:5:\"image\";i:9;s:5:\"video\";i:2;s:6:\"spacer\";i:2;s:6:\"button\";i:1;}'),(3150,482,'_elementor_css','a:5:{s:4:\"time\";i:1569109862;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:1:{i:0;s:0:\"\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(3153,483,'_elementor_version','2.6.8'),(3154,483,'_elementor_pro_version','2.6.5'),(3155,483,'_wp_page_template','default'),(3156,483,'_elementor_data','[{\"id\":\"55396f27\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":50,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Theatrical_Display_V003C.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"motion_fx_range\":\"viewport\",\"layout\":\"full_width\",\"column_position\":\"top\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"_title\":\"Section - INSIDIOUS HERO\",\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":1.9,\"sizes\":[]}},\"elements\":[{\"id\":\"905a97c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ad7f3f6\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"162\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2489c07\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"c0bbe21\",\"elType\":\"widget\",\"settings\":{\"title\":\"#WHAT\'S COOL\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"dc881ae\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"18630a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"870a9ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"INNOVATIONS FROM ONDISPLAY CREATIVE\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7df48509\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"_title\":\"Section - LIVING STANDEES\"},\"elements\":[{\"id\":\"1147078d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"23bbc68\",\"elType\":\"widget\",\"settings\":{\"title\":\"LIVING STANDEES HAUNTING THEATERS\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b40d155\",\"elType\":\"widget\",\"settings\":{\"title\":\"ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"700\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86cff8b\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"225341d\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS \\u2013 THE LAST KEY\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a680ae8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"be59fa3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e36fe5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"d4d2039\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2.jpg\",\"id\":88},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3c9b758\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"79e122a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2-1.jpg\",\"id\":87},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3dc9df5\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"start\":0},\"elements\":[],\"widgetType\":\"video\"},{\"id\":\"b61a90b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"8f63560\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"08c588a\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS CHAPTER 3\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0e612c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>OnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7e77f5a\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"gap\":\"wide\"},\"elements\":[{\"id\":\"7eb5a21\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.332},\"elements\":[{\"id\":\"ae25867\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/image-asset.jpeg\",\"id\":196},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"24c773b\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":58},\"elements\":[{\"id\":\"93ad602\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/130807026\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"cb5dad6\",\"elType\":\"section\",\"settings\":{\"_title\":\"Inner Sedtion\"},\"elements\":[{\"id\":\"25cd114\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_title\":\"virtual reality experience\"},\"elements\":[{\"id\":\"15643ab\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"8ec2d0f\",\"elType\":\"widget\",\"settings\":{\"title\":\"VIRTUAL REALITY EXPERIENCE\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4e004ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"SPIDER-MAN HOMECOMING DISPLAY\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"73a2406\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Submerse yourself in the world of your friendly neighborhood Spider-Man in this fun and thrilling VR Theatrical Display.\\u00a0\\u00a0Based on the all-new 2017 film, the Spider-Man Homecoming VR Experience is a first-person look through the eyes of Spidey himself.<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"04b03b4\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7f4ffcc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"7f85dc5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":76,\"_title\":\"spiderman homecoming\"},\"elements\":[{\"id\":\"9a5a392\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Spidey_Home_V4_002.jpg\",\"id\":230},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"css_filters_css_filter\":\"custom\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"c16541a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":24,\"_title\":\"spiderman 2 vertical pics\"},\"elements\":[{\"id\":\"95b0eed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/IMG_3834.jpg\",\"id\":231},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8ea51a8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/IMG_3788.jpg\",\"id\":233}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"12d34c8\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"00\",\"bottom\":\"00\",\"left\":\"00\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"95003e6\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":435,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/TheStrangers_V01.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":4.9,\"sizes\":[]},\"layout\":\"full_width\",\"column_position\":\"top\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":68}},\"_title\":\"Section - STRANGERS HERO\",\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_range\":\"viewport\"},\"elements\":[{\"id\":\"b6deb1a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_title\":\"strangers prey at night\"},\"elements\":[{\"id\":\"7a350ee\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"70\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"ecd0cbe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"d684039\",\"elType\":\"widget\",\"settings\":{\"title\":\"THE STRANGERS PREY AT NIGHT\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"003eb99\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5fd9452\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"93ad64e\",\"elType\":\"widget\",\"settings\":{\"title\":\"GRAND FORMAT PHOTO-OP STANDEE\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"247aafb\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"_title\":\"Section - MARKETING AT ITS FINEST\"},\"elements\":[{\"id\":\"f002e93\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"d1321ed\",\"elType\":\"widget\",\"settings\":{\"title\":\"MARKETING AT ITS FINEST, TAILORED FOR SOCIAL MEDIA\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a16ef4e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>This theatrical display allows fans to take photos with Dollface, Pin-up Girl, the Man in the Mask and share their photos on social media.<\\/p>\",\"align\":\"center\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b58ab88\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"00ca412\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58},\"elements\":[{\"id\":\"032d3df\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/003.jpg\",\"id\":446},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"672c1f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42},\"elements\":[{\"id\":\"623f6d1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/26222472_170774200201231_6120473304701599744_n.jpg\",\"id\":447},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a641f07\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/VIDEO_COMING_SOON_01.jpg\",\"id\":449}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cf9e008\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"677b52c\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b747fda\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":700},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":900},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"_title\":\"our company bitches\"},\"elements\":[{\"id\":\"7eab781\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"43661634\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our company is a collective of amazing people striving to build delightful products.\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.4},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70cc6d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.<\\/p>\",\"align\":\"center\",\"text_color\":\"#686868\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"615dfb3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1000},\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"6414755f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3bb26eed\",\"elType\":\"widget\",\"settings\":{\"text\":\"Read More\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3},\"button_text_color\":\"#ffffff\",\"background_color\":\"rgba(0,0,0,0)\",\"hover_color\":\"#00ce1b\",\"button_hover_border_color\":\"#00ce1b\",\"hover_animation\":\"grow\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"123f6d1\",\"elType\":\"section\",\"settings\":{\"_title\":\"blank at bottom\"},\"elements\":[{\"id\":\"25fcf2e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"64f593f\",\"elType\":\"section\",\"settings\":{\"_title\":\"blank at bottom\"},\"elements\":[{\"id\":\"596f429\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(3157,483,'_elementor_edit_mode','builder'),(3158,483,'_elementor_elements_usage','a:9:{s:7:\"heading\";i:12;s:6:\"column\";i:21;s:7:\"section\";i:17;s:7:\"divider\";i:6;s:11:\"text-editor\";i:5;s:5:\"image\";i:9;s:5:\"video\";i:2;s:6:\"spacer\";i:2;s:6:\"button\";i:1;}'),(3159,483,'_elementor_css','a:5:{s:4:\"time\";i:1569109925;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:1:{i:0;s:0:\"\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(3215,490,'_elementor_template_type','post'),(3170,485,'_elementor_template_type','post'),(3161,484,'_elementor_template_type','post'),(3162,484,'_elementor_version','2.6.8'),(3163,484,'_elementor_pro_version','2.6.5'),(3164,484,'_wp_page_template','default'),(3165,484,'_elementor_data','[{\"id\":\"55396f27\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":50,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Theatrical_Display_V003C.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"motion_fx_range\":\"viewport\",\"layout\":\"full_width\",\"column_position\":\"top\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"_title\":\"Section - INSIDIOUS HERO\",\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":1.9,\"sizes\":[]}},\"elements\":[{\"id\":\"905a97c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ad7f3f6\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"162\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2489c07\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"c0bbe21\",\"elType\":\"widget\",\"settings\":{\"title\":\"#WHAT\'S COOL\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"dc881ae\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"18630a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"870a9ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"INNOVATIONS FROM ONDISPLAY CREATIVE\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7df48509\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"_title\":\"Section - LIVING STANDEES\"},\"elements\":[{\"id\":\"1147078d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"23bbc68\",\"elType\":\"widget\",\"settings\":{\"title\":\"LIVING STANDEES HAUNTING THEATERS\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b40d155\",\"elType\":\"widget\",\"settings\":{\"title\":\"ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"700\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86cff8b\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"225341d\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS \\u2013 THE LAST KEY\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a680ae8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"be59fa3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e36fe5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"d4d2039\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2.jpg\",\"id\":88},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3c9b758\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"79e122a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2-1.jpg\",\"id\":87},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3dc9df5\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"start\":0},\"elements\":[],\"widgetType\":\"video\"},{\"id\":\"b61a90b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"8f63560\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"08c588a\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS CHAPTER 3\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0e612c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>OnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7e77f5a\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"gap\":\"wide\"},\"elements\":[{\"id\":\"7eb5a21\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.332},\"elements\":[{\"id\":\"ae25867\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/image-asset.jpeg\",\"id\":196},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"24c773b\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":58},\"elements\":[{\"id\":\"93ad602\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/130807026\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"cb5dad6\",\"elType\":\"section\",\"settings\":{\"_title\":\"Inner Sedtion\"},\"elements\":[{\"id\":\"25cd114\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_title\":\"virtual reality experience\"},\"elements\":[{\"id\":\"15643ab\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"8ec2d0f\",\"elType\":\"widget\",\"settings\":{\"title\":\"VIRTUAL REALITY EXPERIENCE\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4e004ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"SPIDER-MAN HOMECOMING DISPLAY\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"73a2406\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Submerse yourself in the world of your friendly neighborhood Spider-Man in this fun and thrilling VR Theatrical Display.\\u00a0\\u00a0Based on the all-new 2017 film, the Spider-Man Homecoming VR Experience is a first-person look through the eyes of Spidey himself.<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"04b03b4\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7f4ffcc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"7f85dc5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":76,\"_title\":\"spiderman homecoming\"},\"elements\":[{\"id\":\"9a5a392\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Spidey_Home_V4_002.jpg\",\"id\":230},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"css_filters_css_filter\":\"custom\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"c16541a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":24,\"_title\":\"spiderman 2 vertical pics\"},\"elements\":[{\"id\":\"95b0eed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/IMG_3834.jpg\",\"id\":231},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8ea51a8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/IMG_3788.jpg\",\"id\":233}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"12d34c8\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"00\",\"bottom\":\"00\",\"left\":\"00\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"95003e6\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":435,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/TheStrangers_V01.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":4.9,\"sizes\":[]},\"layout\":\"full_width\",\"column_position\":\"top\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":68}},\"_title\":\"Section - STRANGERS HERO\",\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":38,\"end\":64}},\"background_motion_fx_range\":\"viewport\"},\"elements\":[{\"id\":\"b6deb1a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_title\":\"strangers prey at night\"},\"elements\":[{\"id\":\"7a350ee\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"70\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"ecd0cbe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"d684039\",\"elType\":\"widget\",\"settings\":{\"title\":\"THE STRANGERS PREY AT NIGHT\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"003eb99\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5fd9452\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"93ad64e\",\"elType\":\"widget\",\"settings\":{\"title\":\"GRAND FORMAT PHOTO-OP STANDEE\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"247aafb\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"_title\":\"Section - MARKETING AT ITS FINEST\"},\"elements\":[{\"id\":\"f002e93\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"d1321ed\",\"elType\":\"widget\",\"settings\":{\"title\":\"MARKETING AT ITS FINEST, TAILORED FOR SOCIAL MEDIA\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a16ef4e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>This theatrical display allows fans to take photos with Dollface, Pin-up Girl, the Man in the Mask and share their photos on social media.<\\/p>\",\"align\":\"center\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b58ab88\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"00ca412\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58},\"elements\":[{\"id\":\"032d3df\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/003.jpg\",\"id\":446},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"672c1f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42},\"elements\":[{\"id\":\"623f6d1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/26222472_170774200201231_6120473304701599744_n.jpg\",\"id\":447},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a641f07\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/VIDEO_COMING_SOON_01.jpg\",\"id\":449}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cf9e008\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"677b52c\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b747fda\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":700},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":900},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"_title\":\"our company bitches\"},\"elements\":[{\"id\":\"7eab781\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"43661634\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our company is a collective of amazing people striving to build delightful products.\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.4},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70cc6d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.<\\/p>\",\"align\":\"center\",\"text_color\":\"#686868\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"615dfb3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1000},\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"6414755f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3bb26eed\",\"elType\":\"widget\",\"settings\":{\"text\":\"Read More\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3},\"button_text_color\":\"#ffffff\",\"background_color\":\"rgba(0,0,0,0)\",\"hover_color\":\"#00ce1b\",\"button_hover_border_color\":\"#00ce1b\",\"hover_animation\":\"grow\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"123f6d1\",\"elType\":\"section\",\"settings\":{\"_title\":\"blank at bottom\"},\"elements\":[{\"id\":\"25fcf2e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"64f593f\",\"elType\":\"section\",\"settings\":{\"_title\":\"blank at bottom\"},\"elements\":[{\"id\":\"596f429\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(3166,484,'_elementor_edit_mode','builder'),(3167,484,'_elementor_elements_usage','a:9:{s:7:\"heading\";i:12;s:6:\"column\";i:21;s:7:\"section\";i:17;s:7:\"divider\";i:6;s:11:\"text-editor\";i:5;s:5:\"image\";i:9;s:5:\"video\";i:2;s:6:\"spacer\";i:2;s:6:\"button\";i:1;}'),(3168,484,'_elementor_css','a:5:{s:4:\"time\";i:1569109965;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:1:{i:0;s:0:\"\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(3171,485,'_elementor_version','2.6.8'),(3172,485,'_elementor_pro_version','2.6.5'),(3173,485,'_wp_page_template','default'),(3174,485,'_elementor_data','[{\"id\":\"55396f27\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":50,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Theatrical_Display_V003C.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"motion_fx_range\":\"viewport\",\"layout\":\"full_width\",\"column_position\":\"top\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"_title\":\"Section - INSIDIOUS HERO\",\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":1.9,\"sizes\":[]}},\"elements\":[{\"id\":\"905a97c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ad7f3f6\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"162\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2489c07\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"c0bbe21\",\"elType\":\"widget\",\"settings\":{\"title\":\"#WHAT\'S COOL\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"dc881ae\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"18630a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"870a9ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"INNOVATIONS FROM ONDISPLAY CREATIVE\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7df48509\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"_title\":\"Section - LIVING STANDEES\"},\"elements\":[{\"id\":\"1147078d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"23bbc68\",\"elType\":\"widget\",\"settings\":{\"title\":\"LIVING STANDEES HAUNTING THEATERS\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b40d155\",\"elType\":\"widget\",\"settings\":{\"title\":\"ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"700\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86cff8b\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"225341d\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS \\u2013 THE LAST KEY\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a680ae8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"be59fa3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e36fe5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"d4d2039\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2.jpg\",\"id\":88},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3c9b758\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"79e122a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2-1.jpg\",\"id\":87},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3dc9df5\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"start\":0},\"elements\":[],\"widgetType\":\"video\"},{\"id\":\"b61a90b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"8f63560\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"08c588a\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS CHAPTER 3\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0e612c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>OnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7e77f5a\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"gap\":\"wide\"},\"elements\":[{\"id\":\"7eb5a21\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.332},\"elements\":[{\"id\":\"ae25867\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/image-asset.jpeg\",\"id\":196},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"24c773b\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":58},\"elements\":[{\"id\":\"93ad602\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/130807026\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"cb5dad6\",\"elType\":\"section\",\"settings\":{\"_title\":\"Inner Sedtion\"},\"elements\":[{\"id\":\"25cd114\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_title\":\"virtual reality experience\"},\"elements\":[{\"id\":\"15643ab\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"8ec2d0f\",\"elType\":\"widget\",\"settings\":{\"title\":\"VIRTUAL REALITY EXPERIENCE\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4e004ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"SPIDER-MAN HOMECOMING DISPLAY\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"73a2406\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Submerse yourself in the world of your friendly neighborhood Spider-Man in this fun and thrilling VR Theatrical Display.\\u00a0\\u00a0Based on the all-new 2017 film, the Spider-Man Homecoming VR Experience is a first-person look through the eyes of Spidey himself.<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"04b03b4\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7f4ffcc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"7f85dc5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":76,\"_title\":\"spiderman homecoming\"},\"elements\":[{\"id\":\"9a5a392\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Spidey_Home_V4_002.jpg\",\"id\":230},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"css_filters_css_filter\":\"custom\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"c16541a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":24,\"_title\":\"spiderman 2 vertical pics\"},\"elements\":[{\"id\":\"95b0eed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/IMG_3834.jpg\",\"id\":231},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8ea51a8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/IMG_3788.jpg\",\"id\":233}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"12d34c8\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"00\",\"bottom\":\"00\",\"left\":\"00\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"95003e6\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":435,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/TheStrangers_V01.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":4.9,\"sizes\":[]},\"layout\":\"full_width\",\"column_position\":\"top\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":68}},\"_title\":\"Section - STRANGERS HERO\",\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_range\":\"viewport\"},\"elements\":[{\"id\":\"b6deb1a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_title\":\"strangers prey at night\"},\"elements\":[{\"id\":\"7a350ee\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"70\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"ecd0cbe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"d684039\",\"elType\":\"widget\",\"settings\":{\"title\":\"THE STRANGERS PREY AT NIGHT\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"003eb99\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5fd9452\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"93ad64e\",\"elType\":\"widget\",\"settings\":{\"title\":\"GRAND FORMAT PHOTO-OP STANDEE\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"247aafb\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"_title\":\"Section - MARKETING AT ITS FINEST\"},\"elements\":[{\"id\":\"f002e93\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"d1321ed\",\"elType\":\"widget\",\"settings\":{\"title\":\"MARKETING AT ITS FINEST, TAILORED FOR SOCIAL MEDIA\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a16ef4e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>This theatrical display allows fans to take photos with Dollface, Pin-up Girl, the Man in the Mask and share their photos on social media.<\\/p>\",\"align\":\"center\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b58ab88\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"00ca412\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58},\"elements\":[{\"id\":\"032d3df\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/003.jpg\",\"id\":446},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"672c1f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42},\"elements\":[{\"id\":\"623f6d1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/26222472_170774200201231_6120473304701599744_n.jpg\",\"id\":447},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a641f07\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/VIDEO_COMING_SOON_01.jpg\",\"id\":449}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cf9e008\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"677b52c\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b747fda\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":700},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":900},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"_title\":\"our company bitches\"},\"elements\":[{\"id\":\"7eab781\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"43661634\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our company is a collective of amazing people striving to build delightful products.\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.4},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70cc6d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.<\\/p>\",\"align\":\"center\",\"text_color\":\"#686868\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"615dfb3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1000},\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"6414755f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3bb26eed\",\"elType\":\"widget\",\"settings\":{\"text\":\"Read More\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3},\"button_text_color\":\"#ffffff\",\"background_color\":\"rgba(0,0,0,0)\",\"hover_color\":\"#00ce1b\",\"button_hover_border_color\":\"#00ce1b\",\"hover_animation\":\"grow\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"123f6d1\",\"elType\":\"section\",\"settings\":{\"_title\":\"blank at bottom\"},\"elements\":[{\"id\":\"25fcf2e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"64f593f\",\"elType\":\"section\",\"settings\":{\"_title\":\"blank at bottom\"},\"elements\":[{\"id\":\"596f429\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(3175,485,'_elementor_edit_mode','builder'),(3176,485,'_elementor_elements_usage','a:9:{s:7:\"heading\";i:12;s:6:\"column\";i:21;s:7:\"section\";i:17;s:7:\"divider\";i:6;s:11:\"text-editor\";i:5;s:5:\"image\";i:9;s:5:\"video\";i:2;s:6:\"spacer\";i:2;s:6:\"button\";i:1;}'),(3177,485,'_elementor_css','a:5:{s:4:\"time\";i:1569110009;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:1:{i:0;s:0:\"\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(3197,488,'_elementor_template_type','post'),(3198,488,'_elementor_version','2.6.8'),(3179,486,'_elementor_template_type','post'),(3180,486,'_elementor_version','2.6.8'),(3181,486,'_elementor_pro_version','2.6.5'),(3182,486,'_wp_page_template','default'),(3183,486,'_elementor_data','[{\"id\":\"55396f27\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":50,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Theatrical_Display_V003C.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"motion_fx_range\":\"viewport\",\"layout\":\"full_width\",\"column_position\":\"top\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"_title\":\"Section - INSIDIOUS HERO\",\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":1.9,\"sizes\":[]}},\"elements\":[{\"id\":\"905a97c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ad7f3f6\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"162\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2489c07\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"c0bbe21\",\"elType\":\"widget\",\"settings\":{\"title\":\"#WHAT\'S COOL\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"dc881ae\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"18630a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"870a9ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"INNOVATIONS FROM ONDISPLAY CREATIVE\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7df48509\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"_title\":\"Section - LIVING STANDEES\"},\"elements\":[{\"id\":\"1147078d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"23bbc68\",\"elType\":\"widget\",\"settings\":{\"title\":\"LIVING STANDEES HAUNTING THEATERS\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b40d155\",\"elType\":\"widget\",\"settings\":{\"title\":\"ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"700\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86cff8b\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"225341d\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS \\u2013 THE LAST KEY\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a680ae8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"be59fa3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e36fe5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"d4d2039\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2.jpg\",\"id\":88},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3c9b758\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"79e122a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2-1.jpg\",\"id\":87},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3dc9df5\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"start\":0},\"elements\":[],\"widgetType\":\"video\"},{\"id\":\"b61a90b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"8f63560\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"08c588a\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS CHAPTER 3\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0e612c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>OnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7e77f5a\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"gap\":\"wide\"},\"elements\":[{\"id\":\"7eb5a21\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.332},\"elements\":[{\"id\":\"ae25867\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/image-asset.jpeg\",\"id\":196},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"24c773b\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":58},\"elements\":[{\"id\":\"93ad602\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/130807026\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"cb5dad6\",\"elType\":\"section\",\"settings\":{\"_title\":\"Inner Sedtion\"},\"elements\":[{\"id\":\"25cd114\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_title\":\"virtual reality experience\"},\"elements\":[{\"id\":\"15643ab\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"8ec2d0f\",\"elType\":\"widget\",\"settings\":{\"title\":\"VIRTUAL REALITY EXPERIENCE\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4e004ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"SPIDER-MAN HOMECOMING DISPLAY\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"73a2406\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Submerse yourself in the world of your friendly neighborhood Spider-Man in this fun and thrilling VR Theatrical Display.\\u00a0\\u00a0Based on the all-new 2017 film, the Spider-Man Homecoming VR Experience is a first-person look through the eyes of Spidey himself.<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"04b03b4\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7f4ffcc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"7f85dc5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":76,\"_title\":\"spiderman homecoming\"},\"elements\":[{\"id\":\"9a5a392\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Spidey_Home_V4_002.jpg\",\"id\":230},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"css_filters_css_filter\":\"custom\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"c16541a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":24,\"_title\":\"spiderman 2 vertical pics\"},\"elements\":[{\"id\":\"95b0eed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/IMG_3834.jpg\",\"id\":231},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8ea51a8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/IMG_3788.jpg\",\"id\":233}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"12d34c8\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"00\",\"bottom\":\"00\",\"left\":\"00\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"95003e6\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":435,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/TheStrangers_V01.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":4.9,\"sizes\":[]},\"layout\":\"full_width\",\"column_position\":\"top\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":68}},\"_title\":\"Section - STRANGERS HERO\",\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":7.2,\"sizes\":[]},\"motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":51,\"end\":100}},\"background_motion_fx_range\":\"viewport\"},\"elements\":[{\"id\":\"b6deb1a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_title\":\"strangers prey at night\"},\"elements\":[{\"id\":\"7a350ee\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"70\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"ecd0cbe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"d684039\",\"elType\":\"widget\",\"settings\":{\"title\":\"THE STRANGERS PREY AT NIGHT\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"003eb99\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5fd9452\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"93ad64e\",\"elType\":\"widget\",\"settings\":{\"title\":\"GRAND FORMAT PHOTO-OP STANDEE\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"247aafb\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"_title\":\"Section - MARKETING AT ITS FINEST\"},\"elements\":[{\"id\":\"f002e93\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"d1321ed\",\"elType\":\"widget\",\"settings\":{\"title\":\"MARKETING AT ITS FINEST, TAILORED FOR SOCIAL MEDIA\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a16ef4e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>This theatrical display allows fans to take photos with Dollface, Pin-up Girl, the Man in the Mask and share their photos on social media.<\\/p>\",\"align\":\"center\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b58ab88\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"00ca412\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58},\"elements\":[{\"id\":\"032d3df\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/003.jpg\",\"id\":446},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"672c1f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42},\"elements\":[{\"id\":\"623f6d1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/26222472_170774200201231_6120473304701599744_n.jpg\",\"id\":447},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a641f07\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/VIDEO_COMING_SOON_01.jpg\",\"id\":449}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cf9e008\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"677b52c\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b747fda\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":700},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":900},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"_title\":\"our company bitches\"},\"elements\":[{\"id\":\"7eab781\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"43661634\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our company is a collective of amazing people striving to build delightful products.\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.4},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70cc6d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.<\\/p>\",\"align\":\"center\",\"text_color\":\"#686868\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"615dfb3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1000},\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"6414755f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3bb26eed\",\"elType\":\"widget\",\"settings\":{\"text\":\"Read More\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3},\"button_text_color\":\"#ffffff\",\"background_color\":\"rgba(0,0,0,0)\",\"hover_color\":\"#00ce1b\",\"button_hover_border_color\":\"#00ce1b\",\"hover_animation\":\"grow\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"123f6d1\",\"elType\":\"section\",\"settings\":{\"_title\":\"blank at bottom\"},\"elements\":[{\"id\":\"25fcf2e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"64f593f\",\"elType\":\"section\",\"settings\":{\"_title\":\"blank at bottom\"},\"elements\":[{\"id\":\"596f429\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(3184,486,'_elementor_edit_mode','builder'),(3185,486,'_elementor_elements_usage','a:9:{s:7:\"heading\";i:12;s:6:\"column\";i:21;s:7:\"section\";i:17;s:7:\"divider\";i:6;s:11:\"text-editor\";i:5;s:5:\"image\";i:9;s:5:\"video\";i:2;s:6:\"spacer\";i:2;s:6:\"button\";i:1;}'),(3186,486,'_elementor_css','a:5:{s:4:\"time\";i:1569110030;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:1:{i:0;s:0:\"\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(3188,487,'_elementor_template_type','post'),(3189,487,'_elementor_version','2.6.8'),(3190,487,'_elementor_pro_version','2.6.5'),(3191,487,'_wp_page_template','default'),(3192,487,'_elementor_data','[{\"id\":\"55396f27\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":50,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Theatrical_Display_V003C.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"motion_fx_range\":\"viewport\",\"layout\":\"full_width\",\"column_position\":\"top\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"_title\":\"Section - INSIDIOUS HERO\",\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":1.9,\"sizes\":[]}},\"elements\":[{\"id\":\"905a97c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ad7f3f6\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"162\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2489c07\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"c0bbe21\",\"elType\":\"widget\",\"settings\":{\"title\":\"#WHAT\'S COOL\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"dc881ae\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"18630a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"870a9ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"INNOVATIONS FROM ONDISPLAY CREATIVE\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7df48509\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"_title\":\"Section - LIVING STANDEES\"},\"elements\":[{\"id\":\"1147078d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"23bbc68\",\"elType\":\"widget\",\"settings\":{\"title\":\"LIVING STANDEES HAUNTING THEATERS\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b40d155\",\"elType\":\"widget\",\"settings\":{\"title\":\"ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"700\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86cff8b\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"225341d\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS \\u2013 THE LAST KEY\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a680ae8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"be59fa3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e36fe5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"d4d2039\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2.jpg\",\"id\":88},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3c9b758\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"79e122a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2-1.jpg\",\"id\":87},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3dc9df5\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"start\":0},\"elements\":[],\"widgetType\":\"video\"},{\"id\":\"b61a90b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"8f63560\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"08c588a\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS CHAPTER 3\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0e612c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>OnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7e77f5a\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"gap\":\"wide\"},\"elements\":[{\"id\":\"7eb5a21\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.332},\"elements\":[{\"id\":\"ae25867\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/image-asset.jpeg\",\"id\":196},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"24c773b\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":58},\"elements\":[{\"id\":\"93ad602\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/130807026\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"cb5dad6\",\"elType\":\"section\",\"settings\":{\"_title\":\"Inner Sedtion\"},\"elements\":[{\"id\":\"25cd114\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_title\":\"virtual reality experience\"},\"elements\":[{\"id\":\"15643ab\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"8ec2d0f\",\"elType\":\"widget\",\"settings\":{\"title\":\"VIRTUAL REALITY EXPERIENCE\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4e004ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"SPIDER-MAN HOMECOMING DISPLAY\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"73a2406\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Submerse yourself in the world of your friendly neighborhood Spider-Man in this fun and thrilling VR Theatrical Display.\\u00a0\\u00a0Based on the all-new 2017 film, the Spider-Man Homecoming VR Experience is a first-person look through the eyes of Spidey himself.<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"04b03b4\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7f4ffcc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"7f85dc5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":76,\"_title\":\"spiderman homecoming\"},\"elements\":[{\"id\":\"9a5a392\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Spidey_Home_V4_002.jpg\",\"id\":230},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"css_filters_css_filter\":\"custom\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"c16541a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":24,\"_title\":\"spiderman 2 vertical pics\"},\"elements\":[{\"id\":\"95b0eed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/IMG_3834.jpg\",\"id\":231},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8ea51a8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/IMG_3788.jpg\",\"id\":233}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"12d34c8\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"00\",\"bottom\":\"00\",\"left\":\"00\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"95003e6\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":435,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/TheStrangers_V01.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":4.9,\"sizes\":[]},\"layout\":\"full_width\",\"column_position\":\"top\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":68}},\"_title\":\"Section - STRANGERS HERO\",\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":7.2,\"sizes\":[]},\"motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":21,\"end\":53}},\"background_motion_fx_range\":\"viewport\"},\"elements\":[{\"id\":\"b6deb1a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_title\":\"strangers prey at night\"},\"elements\":[{\"id\":\"7a350ee\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"70\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"ecd0cbe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"d684039\",\"elType\":\"widget\",\"settings\":{\"title\":\"THE STRANGERS PREY AT NIGHT\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"003eb99\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5fd9452\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"93ad64e\",\"elType\":\"widget\",\"settings\":{\"title\":\"GRAND FORMAT PHOTO-OP STANDEE\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"247aafb\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"_title\":\"Section - MARKETING AT ITS FINEST\"},\"elements\":[{\"id\":\"f002e93\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"d1321ed\",\"elType\":\"widget\",\"settings\":{\"title\":\"MARKETING AT ITS FINEST, TAILORED FOR SOCIAL MEDIA\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a16ef4e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>This theatrical display allows fans to take photos with Dollface, Pin-up Girl, the Man in the Mask and share their photos on social media.<\\/p>\",\"align\":\"center\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b58ab88\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"00ca412\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58},\"elements\":[{\"id\":\"032d3df\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/003.jpg\",\"id\":446},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"672c1f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42},\"elements\":[{\"id\":\"623f6d1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/26222472_170774200201231_6120473304701599744_n.jpg\",\"id\":447},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a641f07\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/VIDEO_COMING_SOON_01.jpg\",\"id\":449}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cf9e008\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"677b52c\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b747fda\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":700},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":900},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"_title\":\"our company bitches\"},\"elements\":[{\"id\":\"7eab781\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"43661634\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our company is a collective of amazing people striving to build delightful products.\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.4},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70cc6d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.<\\/p>\",\"align\":\"center\",\"text_color\":\"#686868\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"615dfb3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1000},\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"6414755f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3bb26eed\",\"elType\":\"widget\",\"settings\":{\"text\":\"Read More\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3},\"button_text_color\":\"#ffffff\",\"background_color\":\"rgba(0,0,0,0)\",\"hover_color\":\"#00ce1b\",\"button_hover_border_color\":\"#00ce1b\",\"hover_animation\":\"grow\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"123f6d1\",\"elType\":\"section\",\"settings\":{\"_title\":\"blank at bottom\"},\"elements\":[{\"id\":\"25fcf2e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"64f593f\",\"elType\":\"section\",\"settings\":{\"_title\":\"blank at bottom\"},\"elements\":[{\"id\":\"596f429\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(3193,487,'_elementor_edit_mode','builder'),(3194,487,'_elementor_elements_usage','a:9:{s:7:\"heading\";i:12;s:6:\"column\";i:21;s:7:\"section\";i:17;s:7:\"divider\";i:6;s:11:\"text-editor\";i:5;s:5:\"image\";i:9;s:5:\"video\";i:2;s:6:\"spacer\";i:2;s:6:\"button\";i:1;}'),(3195,487,'_elementor_css','a:5:{s:4:\"time\";i:1569110068;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:1:{i:0;s:0:\"\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(3199,488,'_elementor_pro_version','2.6.5'),(3200,488,'_wp_page_template','default'),(3201,488,'_elementor_data','[{\"id\":\"55396f27\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":50,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Theatrical_Display_V003C.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"motion_fx_range\":\"viewport\",\"layout\":\"full_width\",\"column_position\":\"top\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"_title\":\"Section - INSIDIOUS HERO\",\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":1.9,\"sizes\":[]}},\"elements\":[{\"id\":\"905a97c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ad7f3f6\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"162\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2489c07\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"c0bbe21\",\"elType\":\"widget\",\"settings\":{\"title\":\"#WHAT\'S COOL\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"dc881ae\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"18630a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"870a9ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"INNOVATIONS FROM ONDISPLAY CREATIVE\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7df48509\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"_title\":\"Section - LIVING STANDEES\"},\"elements\":[{\"id\":\"1147078d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"23bbc68\",\"elType\":\"widget\",\"settings\":{\"title\":\"LIVING STANDEES HAUNTING THEATERS\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b40d155\",\"elType\":\"widget\",\"settings\":{\"title\":\"ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"700\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86cff8b\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"225341d\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS \\u2013 THE LAST KEY\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a680ae8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"be59fa3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e36fe5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"d4d2039\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2.jpg\",\"id\":88},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3c9b758\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"79e122a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2-1.jpg\",\"id\":87},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3dc9df5\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"start\":0},\"elements\":[],\"widgetType\":\"video\"},{\"id\":\"b61a90b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"8f63560\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"08c588a\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS CHAPTER 3\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0e612c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>OnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7e77f5a\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"gap\":\"wide\"},\"elements\":[{\"id\":\"7eb5a21\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.332},\"elements\":[{\"id\":\"ae25867\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/image-asset.jpeg\",\"id\":196},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"24c773b\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":58},\"elements\":[{\"id\":\"93ad602\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/130807026\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"cb5dad6\",\"elType\":\"section\",\"settings\":{\"_title\":\"Inner Sedtion\"},\"elements\":[{\"id\":\"25cd114\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_title\":\"virtual reality experience\"},\"elements\":[{\"id\":\"15643ab\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"8ec2d0f\",\"elType\":\"widget\",\"settings\":{\"title\":\"VIRTUAL REALITY EXPERIENCE\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4e004ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"SPIDER-MAN HOMECOMING DISPLAY\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"73a2406\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Submerse yourself in the world of your friendly neighborhood Spider-Man in this fun and thrilling VR Theatrical Display.\\u00a0\\u00a0Based on the all-new 2017 film, the Spider-Man Homecoming VR Experience is a first-person look through the eyes of Spidey himself.<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"04b03b4\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7f4ffcc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"7f85dc5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":76,\"_title\":\"spiderman homecoming\"},\"elements\":[{\"id\":\"9a5a392\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Spidey_Home_V4_002.jpg\",\"id\":230},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"css_filters_css_filter\":\"custom\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"c16541a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":24,\"_title\":\"spiderman 2 vertical pics\"},\"elements\":[{\"id\":\"95b0eed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/IMG_3834.jpg\",\"id\":231},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8ea51a8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/IMG_3788.jpg\",\"id\":233}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"12d34c8\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"00\",\"bottom\":\"00\",\"left\":\"00\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"95003e6\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":435,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/TheStrangers_V01.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":4.9,\"sizes\":[]},\"layout\":\"full_width\",\"column_position\":\"top\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":68}},\"_title\":\"Section - STRANGERS HERO\",\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":0.7,\"sizes\":[]},\"motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_range\":\"viewport\"},\"elements\":[{\"id\":\"b6deb1a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_title\":\"strangers prey at night\"},\"elements\":[{\"id\":\"7a350ee\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"70\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"ecd0cbe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"d684039\",\"elType\":\"widget\",\"settings\":{\"title\":\"THE STRANGERS PREY AT NIGHT\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"003eb99\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5fd9452\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"93ad64e\",\"elType\":\"widget\",\"settings\":{\"title\":\"GRAND FORMAT PHOTO-OP STANDEE\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"247aafb\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"_title\":\"Section - MARKETING AT ITS FINEST\"},\"elements\":[{\"id\":\"f002e93\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"d1321ed\",\"elType\":\"widget\",\"settings\":{\"title\":\"MARKETING AT ITS FINEST, TAILORED FOR SOCIAL MEDIA\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a16ef4e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>This theatrical display allows fans to take photos with Dollface, Pin-up Girl, the Man in the Mask and share their photos on social media.<\\/p>\",\"align\":\"center\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b58ab88\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"00ca412\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58},\"elements\":[{\"id\":\"032d3df\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/003.jpg\",\"id\":446},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"672c1f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42},\"elements\":[{\"id\":\"623f6d1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/26222472_170774200201231_6120473304701599744_n.jpg\",\"id\":447},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a641f07\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/VIDEO_COMING_SOON_01.jpg\",\"id\":449}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cf9e008\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"677b52c\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b747fda\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":700},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":900},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"_title\":\"our company bitches\"},\"elements\":[{\"id\":\"7eab781\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"43661634\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our company is a collective of amazing people striving to build delightful products.\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.4},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70cc6d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.<\\/p>\",\"align\":\"center\",\"text_color\":\"#686868\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"615dfb3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1000},\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"6414755f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3bb26eed\",\"elType\":\"widget\",\"settings\":{\"text\":\"Read More\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3},\"button_text_color\":\"#ffffff\",\"background_color\":\"rgba(0,0,0,0)\",\"hover_color\":\"#00ce1b\",\"button_hover_border_color\":\"#00ce1b\",\"hover_animation\":\"grow\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"123f6d1\",\"elType\":\"section\",\"settings\":{\"_title\":\"blank at bottom\"},\"elements\":[{\"id\":\"25fcf2e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"64f593f\",\"elType\":\"section\",\"settings\":{\"_title\":\"blank at bottom\"},\"elements\":[{\"id\":\"596f429\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false}]');
INSERT INTO `wp_postmeta` VALUES (3202,488,'_elementor_edit_mode','builder'),(3203,488,'_elementor_elements_usage','a:9:{s:7:\"heading\";i:12;s:6:\"column\";i:21;s:7:\"section\";i:17;s:7:\"divider\";i:6;s:11:\"text-editor\";i:5;s:5:\"image\";i:9;s:5:\"video\";i:2;s:6:\"spacer\";i:2;s:6:\"button\";i:1;}'),(3204,488,'_elementor_css','a:5:{s:4:\"time\";i:1569110101;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:1:{i:0;s:0:\"\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(3206,489,'_elementor_template_type','post'),(3207,489,'_elementor_version','2.6.8'),(3208,489,'_elementor_pro_version','2.6.5'),(3209,489,'_wp_page_template','default'),(3210,489,'_elementor_data','[{\"id\":\"55396f27\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":50,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Theatrical_Display_V003C.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"motion_fx_range\":\"viewport\",\"layout\":\"full_width\",\"column_position\":\"top\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"_title\":\"Section - INSIDIOUS HERO\",\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":1.9,\"sizes\":[]}},\"elements\":[{\"id\":\"905a97c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ad7f3f6\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"162\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2489c07\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"c0bbe21\",\"elType\":\"widget\",\"settings\":{\"title\":\"#WHAT\'S COOL\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"dc881ae\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"18630a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"870a9ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"INNOVATIONS FROM ONDISPLAY CREATIVE\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7df48509\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"_title\":\"Section - LIVING STANDEES\"},\"elements\":[{\"id\":\"1147078d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"23bbc68\",\"elType\":\"widget\",\"settings\":{\"title\":\"LIVING STANDEES HAUNTING THEATERS\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b40d155\",\"elType\":\"widget\",\"settings\":{\"title\":\"ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"700\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86cff8b\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"225341d\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS \\u2013 THE LAST KEY\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a680ae8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"be59fa3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e36fe5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"d4d2039\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2.jpg\",\"id\":88},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3c9b758\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"79e122a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2-1.jpg\",\"id\":87},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3dc9df5\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"start\":0},\"elements\":[],\"widgetType\":\"video\"},{\"id\":\"b61a90b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"8f63560\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"08c588a\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS CHAPTER 3\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0e612c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>OnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7e77f5a\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"gap\":\"wide\"},\"elements\":[{\"id\":\"7eb5a21\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.332},\"elements\":[{\"id\":\"ae25867\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/image-asset.jpeg\",\"id\":196},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"24c773b\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":58},\"elements\":[{\"id\":\"93ad602\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/130807026\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"cb5dad6\",\"elType\":\"section\",\"settings\":{\"_title\":\"Inner Sedtion\"},\"elements\":[{\"id\":\"25cd114\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_title\":\"virtual reality experience\"},\"elements\":[{\"id\":\"15643ab\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"8ec2d0f\",\"elType\":\"widget\",\"settings\":{\"title\":\"VIRTUAL REALITY EXPERIENCE\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4e004ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"SPIDER-MAN HOMECOMING DISPLAY\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"73a2406\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Submerse yourself in the world of your friendly neighborhood Spider-Man in this fun and thrilling VR Theatrical Display.\\u00a0\\u00a0Based on the all-new 2017 film, the Spider-Man Homecoming VR Experience is a first-person look through the eyes of Spidey himself.<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"04b03b4\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7f4ffcc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"7f85dc5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":76,\"_title\":\"spiderman homecoming\"},\"elements\":[{\"id\":\"9a5a392\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Spidey_Home_V4_002.jpg\",\"id\":230},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"css_filters_css_filter\":\"custom\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"c16541a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":24,\"_title\":\"spiderman 2 vertical pics\"},\"elements\":[{\"id\":\"95b0eed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/IMG_3834.jpg\",\"id\":231},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8ea51a8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/IMG_3788.jpg\",\"id\":233}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"12d34c8\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"00\",\"bottom\":\"00\",\"left\":\"00\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"95003e6\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":435,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/TheStrangers_V01.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":4.9,\"sizes\":[]},\"layout\":\"full_width\",\"column_position\":\"top\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":68}},\"_title\":\"Section - STRANGERS HERO\",\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":1.4,\"sizes\":[]},\"motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_range\":\"viewport\"},\"elements\":[{\"id\":\"b6deb1a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_title\":\"strangers prey at night\"},\"elements\":[{\"id\":\"7a350ee\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"70\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"ecd0cbe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"d684039\",\"elType\":\"widget\",\"settings\":{\"title\":\"THE STRANGERS PREY AT NIGHT\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"003eb99\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5fd9452\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"93ad64e\",\"elType\":\"widget\",\"settings\":{\"title\":\"GRAND FORMAT PHOTO-OP STANDEE\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"247aafb\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"_title\":\"Section - MARKETING AT ITS FINEST\"},\"elements\":[{\"id\":\"f002e93\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"d1321ed\",\"elType\":\"widget\",\"settings\":{\"title\":\"MARKETING AT ITS FINEST, TAILORED FOR SOCIAL MEDIA\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a16ef4e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>This theatrical display allows fans to take photos with Dollface, Pin-up Girl, the Man in the Mask and share their photos on social media.<\\/p>\",\"align\":\"center\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b58ab88\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"00ca412\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58},\"elements\":[{\"id\":\"032d3df\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/003.jpg\",\"id\":446},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"672c1f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42},\"elements\":[{\"id\":\"623f6d1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/26222472_170774200201231_6120473304701599744_n.jpg\",\"id\":447},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a641f07\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/VIDEO_COMING_SOON_01.jpg\",\"id\":449}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cf9e008\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"677b52c\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b747fda\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":700},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":900},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"_title\":\"our company bitches\"},\"elements\":[{\"id\":\"7eab781\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"43661634\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our company is a collective of amazing people striving to build delightful products.\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.4},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70cc6d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.<\\/p>\",\"align\":\"center\",\"text_color\":\"#686868\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"615dfb3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1000},\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"6414755f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3bb26eed\",\"elType\":\"widget\",\"settings\":{\"text\":\"Read More\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3},\"button_text_color\":\"#ffffff\",\"background_color\":\"rgba(0,0,0,0)\",\"hover_color\":\"#00ce1b\",\"button_hover_border_color\":\"#00ce1b\",\"hover_animation\":\"grow\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"123f6d1\",\"elType\":\"section\",\"settings\":{\"_title\":\"blank at bottom\"},\"elements\":[{\"id\":\"25fcf2e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"64f593f\",\"elType\":\"section\",\"settings\":{\"_title\":\"blank at bottom\"},\"elements\":[{\"id\":\"596f429\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(3211,489,'_elementor_edit_mode','builder'),(3212,489,'_elementor_elements_usage','a:9:{s:7:\"heading\";i:12;s:6:\"column\";i:21;s:7:\"section\";i:17;s:7:\"divider\";i:6;s:11:\"text-editor\";i:5;s:5:\"image\";i:9;s:5:\"video\";i:2;s:6:\"spacer\";i:2;s:6:\"button\";i:1;}'),(3213,489,'_elementor_css','a:5:{s:4:\"time\";i:1569110134;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:1:{i:0;s:0:\"\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(3216,490,'_elementor_version','2.6.8'),(3217,490,'_elementor_pro_version','2.6.5'),(3218,490,'_wp_page_template','default'),(3219,490,'_elementor_data','[{\"id\":\"55396f27\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":50,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Theatrical_Display_V003C.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"motion_fx_range\":\"viewport\",\"layout\":\"full_width\",\"column_position\":\"top\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"_title\":\"Section - INSIDIOUS HERO\",\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":1.9,\"sizes\":[]}},\"elements\":[{\"id\":\"905a97c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ad7f3f6\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"162\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2489c07\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"c0bbe21\",\"elType\":\"widget\",\"settings\":{\"title\":\"#WHAT\'S COOL\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"dc881ae\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"18630a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"870a9ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"INNOVATIONS FROM ONDISPLAY CREATIVE\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7df48509\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"_title\":\"Section - LIVING STANDEES\"},\"elements\":[{\"id\":\"1147078d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"23bbc68\",\"elType\":\"widget\",\"settings\":{\"title\":\"LIVING STANDEES HAUNTING THEATERS\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b40d155\",\"elType\":\"widget\",\"settings\":{\"title\":\"ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"700\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86cff8b\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"225341d\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS \\u2013 THE LAST KEY\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a680ae8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"be59fa3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e36fe5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"d4d2039\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2.jpg\",\"id\":88},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3c9b758\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"79e122a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2-1.jpg\",\"id\":87},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3dc9df5\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"start\":0},\"elements\":[],\"widgetType\":\"video\"},{\"id\":\"b61a90b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"8f63560\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"08c588a\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS CHAPTER 3\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0e612c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>OnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7e77f5a\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"gap\":\"wide\"},\"elements\":[{\"id\":\"7eb5a21\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.332},\"elements\":[{\"id\":\"ae25867\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/image-asset.jpeg\",\"id\":196},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"24c773b\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":58},\"elements\":[{\"id\":\"93ad602\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/130807026\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"cb5dad6\",\"elType\":\"section\",\"settings\":{\"_title\":\"Inner Sedtion\"},\"elements\":[{\"id\":\"25cd114\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_title\":\"virtual reality experience\"},\"elements\":[{\"id\":\"15643ab\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"8ec2d0f\",\"elType\":\"widget\",\"settings\":{\"title\":\"VIRTUAL REALITY EXPERIENCE\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4e004ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"SPIDER-MAN HOMECOMING DISPLAY\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"73a2406\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Submerse yourself in the world of your friendly neighborhood Spider-Man in this fun and thrilling VR Theatrical Display.\\u00a0\\u00a0Based on the all-new 2017 film, the Spider-Man Homecoming VR Experience is a first-person look through the eyes of Spidey himself.<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"04b03b4\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7f4ffcc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"7f85dc5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":76,\"_title\":\"spiderman homecoming\"},\"elements\":[{\"id\":\"9a5a392\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Spidey_Home_V4_002.jpg\",\"id\":230},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"css_filters_css_filter\":\"custom\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"c16541a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":24,\"_title\":\"spiderman 2 vertical pics\"},\"elements\":[{\"id\":\"95b0eed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/IMG_3834.jpg\",\"id\":231},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8ea51a8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/IMG_3788.jpg\",\"id\":233}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"12d34c8\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"00\",\"bottom\":\"00\",\"left\":\"00\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"95003e6\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":435,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/TheStrangers_V01.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":4.9,\"sizes\":[]},\"layout\":\"full_width\",\"column_position\":\"top\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":68}},\"_title\":\"Section - STRANGERS HERO\",\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":1.4,\"sizes\":[]},\"motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_translateY_direction\":\"negative\"},\"elements\":[{\"id\":\"b6deb1a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_title\":\"strangers prey at night\"},\"elements\":[{\"id\":\"7a350ee\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"70\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"ecd0cbe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"d684039\",\"elType\":\"widget\",\"settings\":{\"title\":\"THE STRANGERS PREY AT NIGHT\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"003eb99\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5fd9452\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"93ad64e\",\"elType\":\"widget\",\"settings\":{\"title\":\"GRAND FORMAT PHOTO-OP STANDEE\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"247aafb\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"_title\":\"Section - MARKETING AT ITS FINEST\"},\"elements\":[{\"id\":\"f002e93\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"d1321ed\",\"elType\":\"widget\",\"settings\":{\"title\":\"MARKETING AT ITS FINEST, TAILORED FOR SOCIAL MEDIA\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a16ef4e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>This theatrical display allows fans to take photos with Dollface, Pin-up Girl, the Man in the Mask and share their photos on social media.<\\/p>\",\"align\":\"center\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b58ab88\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"00ca412\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58},\"elements\":[{\"id\":\"032d3df\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/003.jpg\",\"id\":446},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"672c1f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42},\"elements\":[{\"id\":\"623f6d1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/26222472_170774200201231_6120473304701599744_n.jpg\",\"id\":447},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a641f07\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/VIDEO_COMING_SOON_01.jpg\",\"id\":449}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cf9e008\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"677b52c\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b747fda\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":700},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":900},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"_title\":\"our company bitches\"},\"elements\":[{\"id\":\"7eab781\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"43661634\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our company is a collective of amazing people striving to build delightful products.\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.4},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70cc6d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.<\\/p>\",\"align\":\"center\",\"text_color\":\"#686868\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"615dfb3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1000},\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"6414755f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3bb26eed\",\"elType\":\"widget\",\"settings\":{\"text\":\"Read More\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3},\"button_text_color\":\"#ffffff\",\"background_color\":\"rgba(0,0,0,0)\",\"hover_color\":\"#00ce1b\",\"button_hover_border_color\":\"#00ce1b\",\"hover_animation\":\"grow\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"123f6d1\",\"elType\":\"section\",\"settings\":{\"_title\":\"blank at bottom\"},\"elements\":[{\"id\":\"25fcf2e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"64f593f\",\"elType\":\"section\",\"settings\":{\"_title\":\"blank at bottom\"},\"elements\":[{\"id\":\"596f429\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(3220,490,'_elementor_edit_mode','builder'),(3221,490,'_elementor_elements_usage','a:9:{s:7:\"heading\";i:12;s:6:\"column\";i:21;s:7:\"section\";i:17;s:7:\"divider\";i:6;s:11:\"text-editor\";i:5;s:5:\"image\";i:9;s:5:\"video\";i:2;s:6:\"spacer\";i:2;s:6:\"button\";i:1;}'),(3222,490,'_elementor_css','a:5:{s:4:\"time\";i:1569110160;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:1:{i:0;s:0:\"\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(3251,494,'_elementor_template_type','post'),(3224,491,'_elementor_template_type','post'),(3225,491,'_elementor_version','2.6.8'),(3226,491,'_elementor_pro_version','2.6.5'),(3227,491,'_wp_page_template','default'),(3228,491,'_elementor_data','[{\"id\":\"55396f27\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":50,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Theatrical_Display_V003C.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"motion_fx_range\":\"viewport\",\"layout\":\"full_width\",\"column_position\":\"top\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"_title\":\"Section - INSIDIOUS HERO\",\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":1.9,\"sizes\":[]}},\"elements\":[{\"id\":\"905a97c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ad7f3f6\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"162\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2489c07\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"c0bbe21\",\"elType\":\"widget\",\"settings\":{\"title\":\"#WHAT\'S COOL\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"dc881ae\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"18630a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"870a9ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"INNOVATIONS FROM ONDISPLAY CREATIVE\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7df48509\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"_title\":\"Section - LIVING STANDEES\"},\"elements\":[{\"id\":\"1147078d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"23bbc68\",\"elType\":\"widget\",\"settings\":{\"title\":\"LIVING STANDEES HAUNTING THEATERS\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b40d155\",\"elType\":\"widget\",\"settings\":{\"title\":\"ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"700\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86cff8b\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"225341d\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS \\u2013 THE LAST KEY\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a680ae8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"be59fa3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e36fe5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"d4d2039\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2.jpg\",\"id\":88},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3c9b758\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"79e122a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2-1.jpg\",\"id\":87},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3dc9df5\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"start\":0},\"elements\":[],\"widgetType\":\"video\"},{\"id\":\"b61a90b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"8f63560\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"08c588a\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS CHAPTER 3\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0e612c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>OnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7e77f5a\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"gap\":\"wide\"},\"elements\":[{\"id\":\"7eb5a21\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.332},\"elements\":[{\"id\":\"ae25867\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/image-asset.jpeg\",\"id\":196},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"24c773b\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":58},\"elements\":[{\"id\":\"93ad602\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/130807026\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"cb5dad6\",\"elType\":\"section\",\"settings\":{\"_title\":\"Inner Sedtion\"},\"elements\":[{\"id\":\"25cd114\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_title\":\"virtual reality experience\"},\"elements\":[{\"id\":\"15643ab\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"8ec2d0f\",\"elType\":\"widget\",\"settings\":{\"title\":\"VIRTUAL REALITY EXPERIENCE\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4e004ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"SPIDER-MAN HOMECOMING DISPLAY\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"73a2406\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Submerse yourself in the world of your friendly neighborhood Spider-Man in this fun and thrilling VR Theatrical Display.\\u00a0\\u00a0Based on the all-new 2017 film, the Spider-Man Homecoming VR Experience is a first-person look through the eyes of Spidey himself.<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"04b03b4\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7f4ffcc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"7f85dc5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":76,\"_title\":\"spiderman homecoming\"},\"elements\":[{\"id\":\"9a5a392\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Spidey_Home_V4_002.jpg\",\"id\":230},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"css_filters_css_filter\":\"custom\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"c16541a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":24,\"_title\":\"spiderman 2 vertical pics\"},\"elements\":[{\"id\":\"95b0eed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/IMG_3834.jpg\",\"id\":231},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8ea51a8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/IMG_3788.jpg\",\"id\":233}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"12d34c8\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"00\",\"bottom\":\"00\",\"left\":\"00\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"95003e6\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":435,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/TheStrangers_V01.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":4.9,\"sizes\":[]},\"layout\":\"full_width\",\"column_position\":\"top\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":68}},\"_title\":\"Section - STRANGERS HERO\",\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":2.9,\"sizes\":[]},\"motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_translateY_direction\":\"negative\"},\"elements\":[{\"id\":\"b6deb1a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_title\":\"strangers prey at night\"},\"elements\":[{\"id\":\"7a350ee\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"70\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"ecd0cbe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"d684039\",\"elType\":\"widget\",\"settings\":{\"title\":\"THE STRANGERS PREY AT NIGHT\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"003eb99\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5fd9452\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"93ad64e\",\"elType\":\"widget\",\"settings\":{\"title\":\"GRAND FORMAT PHOTO-OP STANDEE\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"247aafb\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"_title\":\"Section - MARKETING AT ITS FINEST\"},\"elements\":[{\"id\":\"f002e93\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"d1321ed\",\"elType\":\"widget\",\"settings\":{\"title\":\"MARKETING AT ITS FINEST, TAILORED FOR SOCIAL MEDIA\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a16ef4e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>This theatrical display allows fans to take photos with Dollface, Pin-up Girl, the Man in the Mask and share their photos on social media.<\\/p>\",\"align\":\"center\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b58ab88\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"00ca412\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58},\"elements\":[{\"id\":\"032d3df\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/003.jpg\",\"id\":446},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"672c1f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42},\"elements\":[{\"id\":\"623f6d1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/26222472_170774200201231_6120473304701599744_n.jpg\",\"id\":447},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a641f07\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/VIDEO_COMING_SOON_01.jpg\",\"id\":449}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cf9e008\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"677b52c\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b747fda\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":700},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":900},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"_title\":\"our company bitches\"},\"elements\":[{\"id\":\"7eab781\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"43661634\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our company is a collective of amazing people striving to build delightful products.\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.4},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70cc6d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.<\\/p>\",\"align\":\"center\",\"text_color\":\"#686868\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"615dfb3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1000},\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"6414755f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3bb26eed\",\"elType\":\"widget\",\"settings\":{\"text\":\"Read More\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3},\"button_text_color\":\"#ffffff\",\"background_color\":\"rgba(0,0,0,0)\",\"hover_color\":\"#00ce1b\",\"button_hover_border_color\":\"#00ce1b\",\"hover_animation\":\"grow\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"123f6d1\",\"elType\":\"section\",\"settings\":{\"_title\":\"blank at bottom\"},\"elements\":[{\"id\":\"25fcf2e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"64f593f\",\"elType\":\"section\",\"settings\":{\"_title\":\"blank at bottom\"},\"elements\":[{\"id\":\"596f429\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(3229,491,'_elementor_edit_mode','builder'),(3230,491,'_elementor_elements_usage','a:9:{s:7:\"heading\";i:12;s:6:\"column\";i:21;s:7:\"section\";i:17;s:7:\"divider\";i:6;s:11:\"text-editor\";i:5;s:5:\"image\";i:9;s:5:\"video\";i:2;s:6:\"spacer\";i:2;s:6:\"button\";i:1;}'),(3231,491,'_elementor_css','a:5:{s:4:\"time\";i:1569110186;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:1:{i:0;s:0:\"\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(3233,492,'_elementor_template_type','post'),(3234,492,'_elementor_version','2.6.8'),(3235,492,'_elementor_pro_version','2.6.5'),(3236,492,'_wp_page_template','default'),(3237,492,'_elementor_data','[{\"id\":\"55396f27\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":50,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Theatrical_Display_V003C.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"motion_fx_range\":\"viewport\",\"layout\":\"full_width\",\"column_position\":\"top\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"_title\":\"Section - INSIDIOUS HERO\",\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":1.9,\"sizes\":[]}},\"elements\":[{\"id\":\"905a97c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ad7f3f6\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"162\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2489c07\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"c0bbe21\",\"elType\":\"widget\",\"settings\":{\"title\":\"#WHAT\'S COOL\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"dc881ae\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"18630a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"870a9ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"INNOVATIONS FROM ONDISPLAY CREATIVE\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7df48509\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"_title\":\"Section - LIVING STANDEES\"},\"elements\":[{\"id\":\"1147078d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"23bbc68\",\"elType\":\"widget\",\"settings\":{\"title\":\"LIVING STANDEES HAUNTING THEATERS\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b40d155\",\"elType\":\"widget\",\"settings\":{\"title\":\"ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"700\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86cff8b\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"225341d\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS \\u2013 THE LAST KEY\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a680ae8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"be59fa3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e36fe5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"d4d2039\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2.jpg\",\"id\":88},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3c9b758\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"79e122a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2-1.jpg\",\"id\":87},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3dc9df5\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"start\":0},\"elements\":[],\"widgetType\":\"video\"},{\"id\":\"b61a90b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"8f63560\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"08c588a\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS CHAPTER 3\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0e612c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>OnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7e77f5a\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"gap\":\"wide\"},\"elements\":[{\"id\":\"7eb5a21\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.332},\"elements\":[{\"id\":\"ae25867\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/image-asset.jpeg\",\"id\":196},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"24c773b\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":58},\"elements\":[{\"id\":\"93ad602\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/130807026\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"cb5dad6\",\"elType\":\"section\",\"settings\":{\"_title\":\"Inner Sedtion\"},\"elements\":[{\"id\":\"25cd114\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_title\":\"virtual reality experience\"},\"elements\":[{\"id\":\"15643ab\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"8ec2d0f\",\"elType\":\"widget\",\"settings\":{\"title\":\"VIRTUAL REALITY EXPERIENCE\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4e004ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"SPIDER-MAN HOMECOMING DISPLAY\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"73a2406\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Submerse yourself in the world of your friendly neighborhood Spider-Man in this fun and thrilling VR Theatrical Display.\\u00a0\\u00a0Based on the all-new 2017 film, the Spider-Man Homecoming VR Experience is a first-person look through the eyes of Spidey himself.<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"04b03b4\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7f4ffcc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"7f85dc5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":76,\"_title\":\"spiderman homecoming\"},\"elements\":[{\"id\":\"9a5a392\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Spidey_Home_V4_002.jpg\",\"id\":230},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"css_filters_css_filter\":\"custom\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"c16541a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":24,\"_title\":\"spiderman 2 vertical pics\"},\"elements\":[{\"id\":\"95b0eed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/IMG_3834.jpg\",\"id\":231},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8ea51a8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/IMG_3788.jpg\",\"id\":233}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"12d34c8\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"00\",\"bottom\":\"00\",\"left\":\"00\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"95003e6\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":435,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/TheStrangers_V01.jpg\"},\"background_position\":\"top center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":4.9,\"sizes\":[]},\"layout\":\"full_width\",\"column_position\":\"top\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":68}},\"_title\":\"Section - STRANGERS HERO\",\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":2.9,\"sizes\":[]},\"motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_translateY_direction\":\"negative\"},\"elements\":[{\"id\":\"b6deb1a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_title\":\"strangers prey at night\"},\"elements\":[{\"id\":\"7a350ee\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"70\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"ecd0cbe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"d684039\",\"elType\":\"widget\",\"settings\":{\"title\":\"THE STRANGERS PREY AT NIGHT\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"003eb99\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5fd9452\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"93ad64e\",\"elType\":\"widget\",\"settings\":{\"title\":\"GRAND FORMAT PHOTO-OP STANDEE\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"247aafb\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"_title\":\"Section - MARKETING AT ITS FINEST\"},\"elements\":[{\"id\":\"f002e93\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"d1321ed\",\"elType\":\"widget\",\"settings\":{\"title\":\"MARKETING AT ITS FINEST, TAILORED FOR SOCIAL MEDIA\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a16ef4e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>This theatrical display allows fans to take photos with Dollface, Pin-up Girl, the Man in the Mask and share their photos on social media.<\\/p>\",\"align\":\"center\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b58ab88\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"00ca412\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58},\"elements\":[{\"id\":\"032d3df\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/003.jpg\",\"id\":446},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"672c1f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42},\"elements\":[{\"id\":\"623f6d1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/26222472_170774200201231_6120473304701599744_n.jpg\",\"id\":447},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a641f07\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/VIDEO_COMING_SOON_01.jpg\",\"id\":449}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cf9e008\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"677b52c\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b747fda\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":700},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":900},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"_title\":\"our company bitches\"},\"elements\":[{\"id\":\"7eab781\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"43661634\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our company is a collective of amazing people striving to build delightful products.\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.4},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70cc6d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.<\\/p>\",\"align\":\"center\",\"text_color\":\"#686868\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"615dfb3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1000},\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"6414755f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3bb26eed\",\"elType\":\"widget\",\"settings\":{\"text\":\"Read More\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3},\"button_text_color\":\"#ffffff\",\"background_color\":\"rgba(0,0,0,0)\",\"hover_color\":\"#00ce1b\",\"button_hover_border_color\":\"#00ce1b\",\"hover_animation\":\"grow\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"123f6d1\",\"elType\":\"section\",\"settings\":{\"_title\":\"blank at bottom\"},\"elements\":[{\"id\":\"25fcf2e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"64f593f\",\"elType\":\"section\",\"settings\":{\"_title\":\"blank at bottom\"},\"elements\":[{\"id\":\"596f429\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(3238,492,'_elementor_edit_mode','builder'),(3239,492,'_elementor_elements_usage','a:9:{s:7:\"heading\";i:12;s:6:\"column\";i:21;s:7:\"section\";i:17;s:7:\"divider\";i:6;s:11:\"text-editor\";i:5;s:5:\"image\";i:9;s:5:\"video\";i:2;s:6:\"spacer\";i:2;s:6:\"button\";i:1;}'),(3240,492,'_elementor_css','a:5:{s:4:\"time\";i:1569110250;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:1:{i:0;s:0:\"\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(3242,493,'_elementor_template_type','post'),(3243,493,'_elementor_version','2.6.8'),(3244,493,'_elementor_pro_version','2.6.5'),(3245,493,'_wp_page_template','default'),(3246,493,'_elementor_data','[{\"id\":\"55396f27\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":50,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Theatrical_Display_V003C.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"motion_fx_range\":\"viewport\",\"layout\":\"full_width\",\"column_position\":\"top\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"_title\":\"Section - INSIDIOUS HERO\",\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":1.9,\"sizes\":[]}},\"elements\":[{\"id\":\"905a97c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ad7f3f6\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"162\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2489c07\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"c0bbe21\",\"elType\":\"widget\",\"settings\":{\"title\":\"#WHAT\'S COOL\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"dc881ae\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"18630a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"870a9ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"INNOVATIONS FROM ONDISPLAY CREATIVE\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7df48509\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"_title\":\"Section - LIVING STANDEES\"},\"elements\":[{\"id\":\"1147078d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"23bbc68\",\"elType\":\"widget\",\"settings\":{\"title\":\"LIVING STANDEES HAUNTING THEATERS\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b40d155\",\"elType\":\"widget\",\"settings\":{\"title\":\"ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"700\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86cff8b\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"225341d\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS \\u2013 THE LAST KEY\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a680ae8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"be59fa3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e36fe5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"d4d2039\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2.jpg\",\"id\":88},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3c9b758\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"79e122a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2-1.jpg\",\"id\":87},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3dc9df5\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"start\":0},\"elements\":[],\"widgetType\":\"video\"},{\"id\":\"b61a90b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"8f63560\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"08c588a\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS CHAPTER 3\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0e612c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>OnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7e77f5a\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"gap\":\"wide\"},\"elements\":[{\"id\":\"7eb5a21\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.332},\"elements\":[{\"id\":\"ae25867\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/image-asset.jpeg\",\"id\":196},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"24c773b\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":58},\"elements\":[{\"id\":\"93ad602\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/130807026\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"cb5dad6\",\"elType\":\"section\",\"settings\":{\"_title\":\"Inner Sedtion\"},\"elements\":[{\"id\":\"25cd114\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_title\":\"virtual reality experience\"},\"elements\":[{\"id\":\"15643ab\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"8ec2d0f\",\"elType\":\"widget\",\"settings\":{\"title\":\"VIRTUAL REALITY EXPERIENCE\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4e004ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"SPIDER-MAN HOMECOMING DISPLAY\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"73a2406\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Submerse yourself in the world of your friendly neighborhood Spider-Man in this fun and thrilling VR Theatrical Display.\\u00a0\\u00a0Based on the all-new 2017 film, the Spider-Man Homecoming VR Experience is a first-person look through the eyes of Spidey himself.<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"04b03b4\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7f4ffcc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"7f85dc5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":76,\"_title\":\"spiderman homecoming\"},\"elements\":[{\"id\":\"9a5a392\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Spidey_Home_V4_002.jpg\",\"id\":230},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"css_filters_css_filter\":\"custom\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"c16541a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":24,\"_title\":\"spiderman 2 vertical pics\"},\"elements\":[{\"id\":\"95b0eed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/IMG_3834.jpg\",\"id\":231},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8ea51a8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/IMG_3788.jpg\",\"id\":233}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"12d34c8\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"00\",\"bottom\":\"00\",\"left\":\"00\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"95003e6\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":435,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/TheStrangers_V01.jpg\"},\"background_position\":\"bottom center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":4.9,\"sizes\":[]},\"layout\":\"full_width\",\"column_position\":\"top\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":68}},\"_title\":\"Section - STRANGERS HERO\",\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":2.9,\"sizes\":[]},\"motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_translateY_direction\":\"negative\"},\"elements\":[{\"id\":\"b6deb1a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_title\":\"strangers prey at night\"},\"elements\":[{\"id\":\"7a350ee\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"70\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"ecd0cbe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"d684039\",\"elType\":\"widget\",\"settings\":{\"title\":\"THE STRANGERS PREY AT NIGHT\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"003eb99\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5fd9452\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"93ad64e\",\"elType\":\"widget\",\"settings\":{\"title\":\"GRAND FORMAT PHOTO-OP STANDEE\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"247aafb\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"_title\":\"Section - MARKETING AT ITS FINEST\"},\"elements\":[{\"id\":\"f002e93\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"d1321ed\",\"elType\":\"widget\",\"settings\":{\"title\":\"MARKETING AT ITS FINEST, TAILORED FOR SOCIAL MEDIA\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a16ef4e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>This theatrical display allows fans to take photos with Dollface, Pin-up Girl, the Man in the Mask and share their photos on social media.<\\/p>\",\"align\":\"center\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b58ab88\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"00ca412\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58},\"elements\":[{\"id\":\"032d3df\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/003.jpg\",\"id\":446},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"672c1f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42},\"elements\":[{\"id\":\"623f6d1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/26222472_170774200201231_6120473304701599744_n.jpg\",\"id\":447},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a641f07\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/VIDEO_COMING_SOON_01.jpg\",\"id\":449}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cf9e008\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"677b52c\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b747fda\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":700},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":900},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"_title\":\"our company bitches\"},\"elements\":[{\"id\":\"7eab781\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"43661634\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our company is a collective of amazing people striving to build delightful products.\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.4},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70cc6d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.<\\/p>\",\"align\":\"center\",\"text_color\":\"#686868\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"615dfb3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1000},\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"6414755f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3bb26eed\",\"elType\":\"widget\",\"settings\":{\"text\":\"Read More\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3},\"button_text_color\":\"#ffffff\",\"background_color\":\"rgba(0,0,0,0)\",\"hover_color\":\"#00ce1b\",\"button_hover_border_color\":\"#00ce1b\",\"hover_animation\":\"grow\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"123f6d1\",\"elType\":\"section\",\"settings\":{\"_title\":\"blank at bottom\"},\"elements\":[{\"id\":\"25fcf2e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"64f593f\",\"elType\":\"section\",\"settings\":{\"_title\":\"blank at bottom\"},\"elements\":[{\"id\":\"596f429\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(3247,493,'_elementor_edit_mode','builder'),(3248,493,'_elementor_elements_usage','a:9:{s:7:\"heading\";i:12;s:6:\"column\";i:21;s:7:\"section\";i:17;s:7:\"divider\";i:6;s:11:\"text-editor\";i:5;s:5:\"image\";i:9;s:5:\"video\";i:2;s:6:\"spacer\";i:2;s:6:\"button\";i:1;}'),(3249,493,'_elementor_css','a:5:{s:4:\"time\";i:1569110323;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:1:{i:0;s:0:\"\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(3252,494,'_elementor_version','2.6.8'),(3253,494,'_elementor_pro_version','2.6.5'),(3254,494,'_wp_page_template','default'),(3255,494,'_elementor_data','[{\"id\":\"55396f27\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":50,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Theatrical_Display_V003C.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"motion_fx_range\":\"viewport\",\"layout\":\"full_width\",\"column_position\":\"top\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"_title\":\"Section - INSIDIOUS HERO\",\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":1.9,\"sizes\":[]}},\"elements\":[{\"id\":\"905a97c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ad7f3f6\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"162\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2489c07\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"c0bbe21\",\"elType\":\"widget\",\"settings\":{\"title\":\"#WHAT\'S COOL\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"dc881ae\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"18630a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"870a9ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"INNOVATIONS FROM ONDISPLAY CREATIVE\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7df48509\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"_title\":\"Section - LIVING STANDEES\"},\"elements\":[{\"id\":\"1147078d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"23bbc68\",\"elType\":\"widget\",\"settings\":{\"title\":\"LIVING STANDEES HAUNTING THEATERS\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b40d155\",\"elType\":\"widget\",\"settings\":{\"title\":\"ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"700\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86cff8b\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"225341d\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS \\u2013 THE LAST KEY\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a680ae8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"be59fa3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e36fe5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"d4d2039\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2.jpg\",\"id\":88},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3c9b758\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"79e122a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2-1.jpg\",\"id\":87},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3dc9df5\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"start\":0},\"elements\":[],\"widgetType\":\"video\"},{\"id\":\"b61a90b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"8f63560\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"08c588a\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS CHAPTER 3\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0e612c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>OnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7e77f5a\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"gap\":\"wide\"},\"elements\":[{\"id\":\"7eb5a21\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.332},\"elements\":[{\"id\":\"ae25867\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/image-asset.jpeg\",\"id\":196},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"24c773b\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":58},\"elements\":[{\"id\":\"93ad602\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/130807026\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"cb5dad6\",\"elType\":\"section\",\"settings\":{\"_title\":\"Inner Sedtion\"},\"elements\":[{\"id\":\"25cd114\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_title\":\"virtual reality experience\"},\"elements\":[{\"id\":\"15643ab\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"8ec2d0f\",\"elType\":\"widget\",\"settings\":{\"title\":\"VIRTUAL REALITY EXPERIENCE\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4e004ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"SPIDER-MAN HOMECOMING DISPLAY\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"73a2406\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Submerse yourself in the world of your friendly neighborhood Spider-Man in this fun and thrilling VR Theatrical Display.\\u00a0\\u00a0Based on the all-new 2017 film, the Spider-Man Homecoming VR Experience is a first-person look through the eyes of Spidey himself.<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"04b03b4\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7f4ffcc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"7f85dc5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":76,\"_title\":\"spiderman homecoming\"},\"elements\":[{\"id\":\"9a5a392\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Spidey_Home_V4_002.jpg\",\"id\":230},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"css_filters_css_filter\":\"custom\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"c16541a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":24,\"_title\":\"spiderman 2 vertical pics\"},\"elements\":[{\"id\":\"95b0eed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/IMG_3834.jpg\",\"id\":231},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8ea51a8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/IMG_3788.jpg\",\"id\":233}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"12d34c8\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"00\",\"bottom\":\"00\",\"left\":\"00\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"95003e6\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":435,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/TheStrangers_V01.jpg\"},\"background_position\":\"bottom center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":4.9,\"sizes\":[]},\"layout\":\"full_width\",\"column_position\":\"top\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":68}},\"_title\":\"Section - STRANGERS HERO\",\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":2.9,\"sizes\":[]},\"motion_fx_translateY_direction\":\"negative\"},\"elements\":[{\"id\":\"b6deb1a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_title\":\"strangers prey at night\"},\"elements\":[{\"id\":\"7a350ee\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"70\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"ecd0cbe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"d684039\",\"elType\":\"widget\",\"settings\":{\"title\":\"THE STRANGERS PREY AT NIGHT\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"003eb99\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5fd9452\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"93ad64e\",\"elType\":\"widget\",\"settings\":{\"title\":\"GRAND FORMAT PHOTO-OP STANDEE\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"247aafb\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"_title\":\"Section - MARKETING AT ITS FINEST\"},\"elements\":[{\"id\":\"f002e93\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"d1321ed\",\"elType\":\"widget\",\"settings\":{\"title\":\"MARKETING AT ITS FINEST, TAILORED FOR SOCIAL MEDIA\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a16ef4e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>This theatrical display allows fans to take photos with Dollface, Pin-up Girl, the Man in the Mask and share their photos on social media.<\\/p>\",\"align\":\"center\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b58ab88\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"00ca412\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58},\"elements\":[{\"id\":\"032d3df\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/003.jpg\",\"id\":446},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"672c1f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42},\"elements\":[{\"id\":\"623f6d1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/26222472_170774200201231_6120473304701599744_n.jpg\",\"id\":447},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a641f07\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/VIDEO_COMING_SOON_01.jpg\",\"id\":449}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cf9e008\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"677b52c\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b747fda\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":700},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":900},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"_title\":\"our company bitches\"},\"elements\":[{\"id\":\"7eab781\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"43661634\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our company is a collective of amazing people striving to build delightful products.\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.4},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70cc6d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.<\\/p>\",\"align\":\"center\",\"text_color\":\"#686868\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"615dfb3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1000},\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"6414755f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3bb26eed\",\"elType\":\"widget\",\"settings\":{\"text\":\"Read More\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3},\"button_text_color\":\"#ffffff\",\"background_color\":\"rgba(0,0,0,0)\",\"hover_color\":\"#00ce1b\",\"button_hover_border_color\":\"#00ce1b\",\"hover_animation\":\"grow\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"123f6d1\",\"elType\":\"section\",\"settings\":{\"_title\":\"blank at bottom\"},\"elements\":[{\"id\":\"25fcf2e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"64f593f\",\"elType\":\"section\",\"settings\":{\"_title\":\"blank at bottom\"},\"elements\":[{\"id\":\"596f429\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(3256,494,'_elementor_edit_mode','builder'),(3257,494,'_elementor_elements_usage','a:9:{s:7:\"heading\";i:12;s:6:\"column\";i:21;s:7:\"section\";i:17;s:7:\"divider\";i:6;s:11:\"text-editor\";i:5;s:5:\"image\";i:9;s:5:\"video\";i:2;s:6:\"spacer\";i:2;s:6:\"button\";i:1;}'),(3258,494,'_elementor_css','a:5:{s:4:\"time\";i:1569110375;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:1:{i:0;s:0:\"\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(3260,495,'_elementor_template_type','post'),(3261,495,'_elementor_version','2.6.8'),(3262,495,'_elementor_pro_version','2.6.5'),(3263,495,'_wp_page_template','default'),(3264,495,'_elementor_data','[{\"id\":\"55396f27\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":50,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Theatrical_Display_V003C.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"motion_fx_range\":\"viewport\",\"layout\":\"full_width\",\"column_position\":\"top\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"_title\":\"Section - INSIDIOUS HERO\",\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":1.9,\"sizes\":[]}},\"elements\":[{\"id\":\"905a97c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ad7f3f6\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"162\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2489c07\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"c0bbe21\",\"elType\":\"widget\",\"settings\":{\"title\":\"#WHAT\'S COOL\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"dc881ae\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"18630a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"870a9ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"INNOVATIONS FROM ONDISPLAY CREATIVE\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7df48509\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"_title\":\"Section - LIVING STANDEES\"},\"elements\":[{\"id\":\"1147078d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"23bbc68\",\"elType\":\"widget\",\"settings\":{\"title\":\"LIVING STANDEES HAUNTING THEATERS\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b40d155\",\"elType\":\"widget\",\"settings\":{\"title\":\"ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"700\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86cff8b\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"225341d\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS \\u2013 THE LAST KEY\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a680ae8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"be59fa3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e36fe5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"d4d2039\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2.jpg\",\"id\":88},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3c9b758\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"79e122a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2-1.jpg\",\"id\":87},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3dc9df5\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"start\":0},\"elements\":[],\"widgetType\":\"video\"},{\"id\":\"b61a90b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"8f63560\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"08c588a\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS CHAPTER 3\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0e612c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>OnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7e77f5a\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"gap\":\"wide\"},\"elements\":[{\"id\":\"7eb5a21\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.332},\"elements\":[{\"id\":\"ae25867\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/image-asset.jpeg\",\"id\":196},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"24c773b\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":58},\"elements\":[{\"id\":\"93ad602\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/130807026\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"cb5dad6\",\"elType\":\"section\",\"settings\":{\"_title\":\"Inner Sedtion\"},\"elements\":[{\"id\":\"25cd114\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_title\":\"virtual reality experience\"},\"elements\":[{\"id\":\"15643ab\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"8ec2d0f\",\"elType\":\"widget\",\"settings\":{\"title\":\"VIRTUAL REALITY EXPERIENCE\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4e004ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"SPIDER-MAN HOMECOMING DISPLAY\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"73a2406\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Submerse yourself in the world of your friendly neighborhood Spider-Man in this fun and thrilling VR Theatrical Display.\\u00a0\\u00a0Based on the all-new 2017 film, the Spider-Man Homecoming VR Experience is a first-person look through the eyes of Spidey himself.<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"04b03b4\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7f4ffcc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"7f85dc5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":76,\"_title\":\"spiderman homecoming\"},\"elements\":[{\"id\":\"9a5a392\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Spidey_Home_V4_002.jpg\",\"id\":230},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"css_filters_css_filter\":\"custom\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"c16541a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":24,\"_title\":\"spiderman 2 vertical pics\"},\"elements\":[{\"id\":\"95b0eed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/IMG_3834.jpg\",\"id\":231},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8ea51a8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/IMG_3788.jpg\",\"id\":233}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"12d34c8\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"00\",\"bottom\":\"00\",\"left\":\"00\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"95003e6\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":435,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/TheStrangers_V01.jpg\"},\"background_position\":\"top center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":4.9,\"sizes\":[]},\"layout\":\"full_width\",\"column_position\":\"top\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":68}},\"_title\":\"Section - STRANGERS HERO\",\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":2.9,\"sizes\":[]},\"motion_fx_translateY_direction\":\"negative\"},\"elements\":[{\"id\":\"b6deb1a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_title\":\"strangers prey at night\"},\"elements\":[{\"id\":\"7a350ee\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"70\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"ecd0cbe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"d684039\",\"elType\":\"widget\",\"settings\":{\"title\":\"THE STRANGERS PREY AT NIGHT\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"003eb99\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5fd9452\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"93ad64e\",\"elType\":\"widget\",\"settings\":{\"title\":\"GRAND FORMAT PHOTO-OP STANDEE\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"247aafb\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"_title\":\"Section - MARKETING AT ITS FINEST\"},\"elements\":[{\"id\":\"f002e93\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"d1321ed\",\"elType\":\"widget\",\"settings\":{\"title\":\"MARKETING AT ITS FINEST, TAILORED FOR SOCIAL MEDIA\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a16ef4e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>This theatrical display allows fans to take photos with Dollface, Pin-up Girl, the Man in the Mask and share their photos on social media.<\\/p>\",\"align\":\"center\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b58ab88\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"00ca412\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58},\"elements\":[{\"id\":\"032d3df\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/003.jpg\",\"id\":446},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"672c1f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42},\"elements\":[{\"id\":\"623f6d1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/26222472_170774200201231_6120473304701599744_n.jpg\",\"id\":447},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a641f07\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/VIDEO_COMING_SOON_01.jpg\",\"id\":449}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cf9e008\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"677b52c\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b747fda\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":700},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":900},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"_title\":\"our company bitches\"},\"elements\":[{\"id\":\"7eab781\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"43661634\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our company is a collective of amazing people striving to build delightful products.\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.4},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70cc6d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.<\\/p>\",\"align\":\"center\",\"text_color\":\"#686868\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"615dfb3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1000},\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"6414755f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3bb26eed\",\"elType\":\"widget\",\"settings\":{\"text\":\"Read More\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3},\"button_text_color\":\"#ffffff\",\"background_color\":\"rgba(0,0,0,0)\",\"hover_color\":\"#00ce1b\",\"button_hover_border_color\":\"#00ce1b\",\"hover_animation\":\"grow\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"123f6d1\",\"elType\":\"section\",\"settings\":{\"_title\":\"blank at bottom\"},\"elements\":[{\"id\":\"25fcf2e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"64f593f\",\"elType\":\"section\",\"settings\":{\"_title\":\"blank at bottom\"},\"elements\":[{\"id\":\"596f429\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(3265,495,'_elementor_edit_mode','builder'),(3266,495,'_elementor_elements_usage','a:9:{s:7:\"heading\";i:12;s:6:\"column\";i:21;s:7:\"section\";i:17;s:7:\"divider\";i:6;s:11:\"text-editor\";i:5;s:5:\"image\";i:9;s:5:\"video\";i:2;s:6:\"spacer\";i:2;s:6:\"button\";i:1;}'),(3267,495,'_elementor_css','a:5:{s:4:\"time\";i:1569110422;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:1:{i:0;s:0:\"\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(3287,498,'_elementor_template_type','post'),(3269,496,'_elementor_template_type','post'),(3270,496,'_elementor_version','2.6.8'),(3271,496,'_elementor_pro_version','2.6.5'),(3272,496,'_wp_page_template','default'),(3273,496,'_elementor_data','[{\"id\":\"55396f27\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":50,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Theatrical_Display_V003C.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"motion_fx_range\":\"viewport\",\"layout\":\"full_width\",\"column_position\":\"top\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"_title\":\"Section - INSIDIOUS HERO\",\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":1.9,\"sizes\":[]}},\"elements\":[{\"id\":\"905a97c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ad7f3f6\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"162\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2489c07\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"c0bbe21\",\"elType\":\"widget\",\"settings\":{\"title\":\"#WHAT\'S COOL\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"dc881ae\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"18630a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"870a9ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"INNOVATIONS FROM ONDISPLAY CREATIVE\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7df48509\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"_title\":\"Section - LIVING STANDEES\"},\"elements\":[{\"id\":\"1147078d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"23bbc68\",\"elType\":\"widget\",\"settings\":{\"title\":\"LIVING STANDEES HAUNTING THEATERS\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b40d155\",\"elType\":\"widget\",\"settings\":{\"title\":\"ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"700\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86cff8b\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"225341d\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS \\u2013 THE LAST KEY\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a680ae8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"be59fa3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e36fe5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"d4d2039\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2.jpg\",\"id\":88},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3c9b758\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"79e122a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2-1.jpg\",\"id\":87},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3dc9df5\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"start\":0},\"elements\":[],\"widgetType\":\"video\"},{\"id\":\"b61a90b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"8f63560\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"08c588a\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS CHAPTER 3\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0e612c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>OnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7e77f5a\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"gap\":\"wide\"},\"elements\":[{\"id\":\"7eb5a21\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.332},\"elements\":[{\"id\":\"ae25867\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/image-asset.jpeg\",\"id\":196},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"24c773b\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":58},\"elements\":[{\"id\":\"93ad602\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/130807026\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"cb5dad6\",\"elType\":\"section\",\"settings\":{\"_title\":\"Inner Sedtion\"},\"elements\":[{\"id\":\"25cd114\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_title\":\"virtual reality experience\"},\"elements\":[{\"id\":\"15643ab\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"8ec2d0f\",\"elType\":\"widget\",\"settings\":{\"title\":\"VIRTUAL REALITY EXPERIENCE\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4e004ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"SPIDER-MAN HOMECOMING DISPLAY\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"73a2406\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Submerse yourself in the world of your friendly neighborhood Spider-Man in this fun and thrilling VR Theatrical Display.\\u00a0\\u00a0Based on the all-new 2017 film, the Spider-Man Homecoming VR Experience is a first-person look through the eyes of Spidey himself.<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"04b03b4\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7f4ffcc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"7f85dc5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":76,\"_title\":\"spiderman homecoming\"},\"elements\":[{\"id\":\"9a5a392\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Spidey_Home_V4_002.jpg\",\"id\":230},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"css_filters_css_filter\":\"custom\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"c16541a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":24,\"_title\":\"spiderman 2 vertical pics\"},\"elements\":[{\"id\":\"95b0eed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/IMG_3834.jpg\",\"id\":231},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8ea51a8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/IMG_3788.jpg\",\"id\":233}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"12d34c8\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"00\",\"bottom\":\"00\",\"left\":\"00\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"95003e6\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":435,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/TheStrangers_V01.jpg\"},\"background_position\":\"top center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":4.9,\"sizes\":[]},\"layout\":\"full_width\",\"column_position\":\"top\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":68}},\"_title\":\"Section - STRANGERS HERO\",\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":2.9,\"sizes\":[]},\"motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":13}}},\"elements\":[{\"id\":\"b6deb1a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_title\":\"strangers prey at night\"},\"elements\":[{\"id\":\"7a350ee\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"70\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"ecd0cbe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"d684039\",\"elType\":\"widget\",\"settings\":{\"title\":\"THE STRANGERS PREY AT NIGHT\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"003eb99\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5fd9452\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"93ad64e\",\"elType\":\"widget\",\"settings\":{\"title\":\"GRAND FORMAT PHOTO-OP STANDEE\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"247aafb\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"_title\":\"Section - MARKETING AT ITS FINEST\"},\"elements\":[{\"id\":\"f002e93\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"d1321ed\",\"elType\":\"widget\",\"settings\":{\"title\":\"MARKETING AT ITS FINEST, TAILORED FOR SOCIAL MEDIA\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a16ef4e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>This theatrical display allows fans to take photos with Dollface, Pin-up Girl, the Man in the Mask and share their photos on social media.<\\/p>\",\"align\":\"center\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b58ab88\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"00ca412\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58},\"elements\":[{\"id\":\"032d3df\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/003.jpg\",\"id\":446},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"672c1f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42},\"elements\":[{\"id\":\"623f6d1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/26222472_170774200201231_6120473304701599744_n.jpg\",\"id\":447},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a641f07\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/VIDEO_COMING_SOON_01.jpg\",\"id\":449}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cf9e008\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"677b52c\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b747fda\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":700},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":900},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"_title\":\"our company bitches\"},\"elements\":[{\"id\":\"7eab781\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"43661634\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our company is a collective of amazing people striving to build delightful products.\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.4},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70cc6d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.<\\/p>\",\"align\":\"center\",\"text_color\":\"#686868\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"615dfb3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1000},\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"6414755f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3bb26eed\",\"elType\":\"widget\",\"settings\":{\"text\":\"Read More\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3},\"button_text_color\":\"#ffffff\",\"background_color\":\"rgba(0,0,0,0)\",\"hover_color\":\"#00ce1b\",\"button_hover_border_color\":\"#00ce1b\",\"hover_animation\":\"grow\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"123f6d1\",\"elType\":\"section\",\"settings\":{\"_title\":\"blank at bottom\"},\"elements\":[{\"id\":\"25fcf2e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"64f593f\",\"elType\":\"section\",\"settings\":{\"_title\":\"blank at bottom\"},\"elements\":[{\"id\":\"596f429\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(3274,496,'_elementor_edit_mode','builder'),(3275,496,'_elementor_elements_usage','a:9:{s:7:\"heading\";i:12;s:6:\"column\";i:21;s:7:\"section\";i:17;s:7:\"divider\";i:6;s:11:\"text-editor\";i:5;s:5:\"image\";i:9;s:5:\"video\";i:2;s:6:\"spacer\";i:2;s:6:\"button\";i:1;}'),(3276,496,'_elementor_css','a:5:{s:4:\"time\";i:1569110442;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:1:{i:0;s:0:\"\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(3278,497,'_elementor_template_type','post'),(3279,497,'_elementor_version','2.6.8'),(3280,497,'_elementor_pro_version','2.6.5'),(3281,497,'_wp_page_template','default'),(3282,497,'_elementor_data','[{\"id\":\"55396f27\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":50,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Theatrical_Display_V003C.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"motion_fx_range\":\"viewport\",\"layout\":\"full_width\",\"column_position\":\"top\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"_title\":\"Section - INSIDIOUS HERO\",\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":1.9,\"sizes\":[]}},\"elements\":[{\"id\":\"905a97c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ad7f3f6\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"162\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2489c07\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"c0bbe21\",\"elType\":\"widget\",\"settings\":{\"title\":\"#WHAT\'S COOL\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"dc881ae\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"18630a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"870a9ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"INNOVATIONS FROM ONDISPLAY CREATIVE\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7df48509\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"_title\":\"Section - LIVING STANDEES\"},\"elements\":[{\"id\":\"1147078d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"23bbc68\",\"elType\":\"widget\",\"settings\":{\"title\":\"LIVING STANDEES HAUNTING THEATERS\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b40d155\",\"elType\":\"widget\",\"settings\":{\"title\":\"ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"700\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86cff8b\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"225341d\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS \\u2013 THE LAST KEY\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a680ae8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"be59fa3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e36fe5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"d4d2039\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2.jpg\",\"id\":88},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3c9b758\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"79e122a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2-1.jpg\",\"id\":87},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3dc9df5\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"start\":0},\"elements\":[],\"widgetType\":\"video\"},{\"id\":\"b61a90b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"8f63560\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"08c588a\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS CHAPTER 3\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0e612c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>OnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7e77f5a\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"gap\":\"wide\"},\"elements\":[{\"id\":\"7eb5a21\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.332},\"elements\":[{\"id\":\"ae25867\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/image-asset.jpeg\",\"id\":196},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"24c773b\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":58},\"elements\":[{\"id\":\"93ad602\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/130807026\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"cb5dad6\",\"elType\":\"section\",\"settings\":{\"_title\":\"Inner Sedtion\"},\"elements\":[{\"id\":\"25cd114\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_title\":\"virtual reality experience\"},\"elements\":[{\"id\":\"15643ab\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"8ec2d0f\",\"elType\":\"widget\",\"settings\":{\"title\":\"VIRTUAL REALITY EXPERIENCE\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4e004ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"SPIDER-MAN HOMECOMING DISPLAY\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"73a2406\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Submerse yourself in the world of your friendly neighborhood Spider-Man in this fun and thrilling VR Theatrical Display.\\u00a0\\u00a0Based on the all-new 2017 film, the Spider-Man Homecoming VR Experience is a first-person look through the eyes of Spidey himself.<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"04b03b4\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7f4ffcc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"7f85dc5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":76,\"_title\":\"spiderman homecoming\"},\"elements\":[{\"id\":\"9a5a392\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Spidey_Home_V4_002.jpg\",\"id\":230},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"css_filters_css_filter\":\"custom\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"c16541a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":24,\"_title\":\"spiderman 2 vertical pics\"},\"elements\":[{\"id\":\"95b0eed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/IMG_3834.jpg\",\"id\":231},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8ea51a8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/IMG_3788.jpg\",\"id\":233}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"12d34c8\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"00\",\"bottom\":\"00\",\"left\":\"00\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"95003e6\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":435,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/TheStrangers_V01.jpg\"},\"background_position\":\"top center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":4.9,\"sizes\":[]},\"layout\":\"full_width\",\"column_position\":\"top\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":68}},\"_title\":\"Section - STRANGERS HERO\",\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":51}}},\"elements\":[{\"id\":\"b6deb1a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_title\":\"strangers prey at night\"},\"elements\":[{\"id\":\"7a350ee\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"70\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"ecd0cbe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"d684039\",\"elType\":\"widget\",\"settings\":{\"title\":\"THE STRANGERS PREY AT NIGHT\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"003eb99\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5fd9452\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"93ad64e\",\"elType\":\"widget\",\"settings\":{\"title\":\"GRAND FORMAT PHOTO-OP STANDEE\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"247aafb\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"_title\":\"Section - MARKETING AT ITS FINEST\"},\"elements\":[{\"id\":\"f002e93\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"d1321ed\",\"elType\":\"widget\",\"settings\":{\"title\":\"MARKETING AT ITS FINEST, TAILORED FOR SOCIAL MEDIA\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a16ef4e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>This theatrical display allows fans to take photos with Dollface, Pin-up Girl, the Man in the Mask and share their photos on social media.<\\/p>\",\"align\":\"center\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b58ab88\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"00ca412\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58},\"elements\":[{\"id\":\"032d3df\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/003.jpg\",\"id\":446},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"672c1f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42},\"elements\":[{\"id\":\"623f6d1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/26222472_170774200201231_6120473304701599744_n.jpg\",\"id\":447},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a641f07\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/VIDEO_COMING_SOON_01.jpg\",\"id\":449}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cf9e008\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"677b52c\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b747fda\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":700},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":900},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"_title\":\"our company bitches\"},\"elements\":[{\"id\":\"7eab781\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"43661634\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our company is a collective of amazing people striving to build delightful products.\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.4},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70cc6d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.<\\/p>\",\"align\":\"center\",\"text_color\":\"#686868\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"615dfb3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1000},\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"6414755f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3bb26eed\",\"elType\":\"widget\",\"settings\":{\"text\":\"Read More\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3},\"button_text_color\":\"#ffffff\",\"background_color\":\"rgba(0,0,0,0)\",\"hover_color\":\"#00ce1b\",\"button_hover_border_color\":\"#00ce1b\",\"hover_animation\":\"grow\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"123f6d1\",\"elType\":\"section\",\"settings\":{\"_title\":\"blank at bottom\"},\"elements\":[{\"id\":\"25fcf2e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"64f593f\",\"elType\":\"section\",\"settings\":{\"_title\":\"blank at bottom\"},\"elements\":[{\"id\":\"596f429\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(3283,497,'_elementor_edit_mode','builder'),(3284,497,'_elementor_elements_usage','a:9:{s:7:\"heading\";i:12;s:6:\"column\";i:21;s:7:\"section\";i:17;s:7:\"divider\";i:6;s:11:\"text-editor\";i:5;s:5:\"image\";i:9;s:5:\"video\";i:2;s:6:\"spacer\";i:2;s:6:\"button\";i:1;}'),(3285,497,'_elementor_css','a:5:{s:4:\"time\";i:1569110486;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:1:{i:0;s:0:\"\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(3288,498,'_elementor_version','2.6.8'),(3289,498,'_elementor_pro_version','2.6.5'),(3290,498,'_wp_page_template','default'),(3291,498,'_elementor_data','[{\"id\":\"55396f27\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":50,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Theatrical_Display_V003C.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"motion_fx_range\":\"viewport\",\"layout\":\"full_width\",\"column_position\":\"top\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"_title\":\"Section - INSIDIOUS HERO\",\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":1.9,\"sizes\":[]}},\"elements\":[{\"id\":\"905a97c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ad7f3f6\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"162\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2489c07\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"c0bbe21\",\"elType\":\"widget\",\"settings\":{\"title\":\"#WHAT\'S COOL\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"dc881ae\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"18630a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"870a9ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"INNOVATIONS FROM ONDISPLAY CREATIVE\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7df48509\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"_title\":\"Section - LIVING STANDEES\"},\"elements\":[{\"id\":\"1147078d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"23bbc68\",\"elType\":\"widget\",\"settings\":{\"title\":\"LIVING STANDEES HAUNTING THEATERS\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b40d155\",\"elType\":\"widget\",\"settings\":{\"title\":\"ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"700\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86cff8b\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"225341d\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS \\u2013 THE LAST KEY\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a680ae8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"be59fa3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e36fe5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"d4d2039\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2.jpg\",\"id\":88},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3c9b758\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"79e122a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2-1.jpg\",\"id\":87},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3dc9df5\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"start\":0},\"elements\":[],\"widgetType\":\"video\"},{\"id\":\"b61a90b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"8f63560\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"08c588a\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS CHAPTER 3\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0e612c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>OnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7e77f5a\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"gap\":\"wide\"},\"elements\":[{\"id\":\"7eb5a21\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.332},\"elements\":[{\"id\":\"ae25867\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/image-asset.jpeg\",\"id\":196},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"24c773b\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":58},\"elements\":[{\"id\":\"93ad602\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/130807026\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"cb5dad6\",\"elType\":\"section\",\"settings\":{\"_title\":\"Inner Sedtion\"},\"elements\":[{\"id\":\"25cd114\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_title\":\"virtual reality experience\"},\"elements\":[{\"id\":\"15643ab\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"8ec2d0f\",\"elType\":\"widget\",\"settings\":{\"title\":\"VIRTUAL REALITY EXPERIENCE\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4e004ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"SPIDER-MAN HOMECOMING DISPLAY\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"73a2406\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Submerse yourself in the world of your friendly neighborhood Spider-Man in this fun and thrilling VR Theatrical Display.\\u00a0\\u00a0Based on the all-new 2017 film, the Spider-Man Homecoming VR Experience is a first-person look through the eyes of Spidey himself.<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"04b03b4\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7f4ffcc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"7f85dc5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":76,\"_title\":\"spiderman homecoming\"},\"elements\":[{\"id\":\"9a5a392\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Spidey_Home_V4_002.jpg\",\"id\":230},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"css_filters_css_filter\":\"custom\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"c16541a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":24,\"_title\":\"spiderman 2 vertical pics\"},\"elements\":[{\"id\":\"95b0eed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/IMG_3834.jpg\",\"id\":231},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8ea51a8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/IMG_3788.jpg\",\"id\":233}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"12d34c8\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"00\",\"bottom\":\"00\",\"left\":\"00\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"95003e6\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":435,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/TheStrangers_V01.jpg\"},\"background_position\":\"top center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":4.9,\"sizes\":[]},\"layout\":\"full_width\",\"column_position\":\"top\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":68}},\"_title\":\"Section - STRANGERS HERO\",\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_direction\":\"negative\"},\"elements\":[{\"id\":\"b6deb1a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_title\":\"strangers prey at night\"},\"elements\":[{\"id\":\"7a350ee\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"70\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"ecd0cbe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"d684039\",\"elType\":\"widget\",\"settings\":{\"title\":\"THE STRANGERS PREY AT NIGHT\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"003eb99\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5fd9452\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"93ad64e\",\"elType\":\"widget\",\"settings\":{\"title\":\"GRAND FORMAT PHOTO-OP STANDEE\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"247aafb\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"_title\":\"Section - MARKETING AT ITS FINEST\"},\"elements\":[{\"id\":\"f002e93\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"d1321ed\",\"elType\":\"widget\",\"settings\":{\"title\":\"MARKETING AT ITS FINEST, TAILORED FOR SOCIAL MEDIA\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a16ef4e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>This theatrical display allows fans to take photos with Dollface, Pin-up Girl, the Man in the Mask and share their photos on social media.<\\/p>\",\"align\":\"center\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b58ab88\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"00ca412\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58},\"elements\":[{\"id\":\"032d3df\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/003.jpg\",\"id\":446},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"672c1f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42},\"elements\":[{\"id\":\"623f6d1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/26222472_170774200201231_6120473304701599744_n.jpg\",\"id\":447},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a641f07\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/VIDEO_COMING_SOON_01.jpg\",\"id\":449}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cf9e008\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"677b52c\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b747fda\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":700},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":900},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"_title\":\"our company bitches\"},\"elements\":[{\"id\":\"7eab781\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"43661634\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our company is a collective of amazing people striving to build delightful products.\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.4},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70cc6d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.<\\/p>\",\"align\":\"center\",\"text_color\":\"#686868\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"615dfb3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1000},\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"6414755f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3bb26eed\",\"elType\":\"widget\",\"settings\":{\"text\":\"Read More\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3},\"button_text_color\":\"#ffffff\",\"background_color\":\"rgba(0,0,0,0)\",\"hover_color\":\"#00ce1b\",\"button_hover_border_color\":\"#00ce1b\",\"hover_animation\":\"grow\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"123f6d1\",\"elType\":\"section\",\"settings\":{\"_title\":\"blank at bottom\"},\"elements\":[{\"id\":\"25fcf2e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"64f593f\",\"elType\":\"section\",\"settings\":{\"_title\":\"blank at bottom\"},\"elements\":[{\"id\":\"596f429\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(3292,498,'_elementor_edit_mode','builder'),(3293,498,'_elementor_elements_usage','a:9:{s:7:\"heading\";i:12;s:6:\"column\";i:21;s:7:\"section\";i:17;s:7:\"divider\";i:6;s:11:\"text-editor\";i:5;s:5:\"image\";i:9;s:5:\"video\";i:2;s:6:\"spacer\";i:2;s:6:\"button\";i:1;}'),(3294,498,'_elementor_css','a:5:{s:4:\"time\";i:1569110524;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:1:{i:0;s:0:\"\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(3296,499,'_elementor_template_type','post'),(3297,499,'_elementor_version','2.6.8'),(3298,499,'_elementor_pro_version','2.6.5'),(3299,499,'_wp_page_template','default'),(3300,499,'_elementor_data','[{\"id\":\"55396f27\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":50,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Theatrical_Display_V003C.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"motion_fx_range\":\"viewport\",\"layout\":\"full_width\",\"column_position\":\"top\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"_title\":\"Section - INSIDIOUS HERO\",\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":1.9,\"sizes\":[]}},\"elements\":[{\"id\":\"905a97c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ad7f3f6\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"162\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2489c07\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"c0bbe21\",\"elType\":\"widget\",\"settings\":{\"title\":\"#WHAT\'S COOL\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"dc881ae\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"18630a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"870a9ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"INNOVATIONS FROM ONDISPLAY CREATIVE\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7df48509\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"_title\":\"Section - LIVING STANDEES\"},\"elements\":[{\"id\":\"1147078d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"23bbc68\",\"elType\":\"widget\",\"settings\":{\"title\":\"LIVING STANDEES HAUNTING THEATERS\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b40d155\",\"elType\":\"widget\",\"settings\":{\"title\":\"ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"700\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86cff8b\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"225341d\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS \\u2013 THE LAST KEY\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a680ae8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"be59fa3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e36fe5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"d4d2039\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2.jpg\",\"id\":88},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3c9b758\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"79e122a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2-1.jpg\",\"id\":87},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3dc9df5\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"start\":0},\"elements\":[],\"widgetType\":\"video\"},{\"id\":\"b61a90b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"8f63560\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"08c588a\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS CHAPTER 3\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0e612c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>OnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7e77f5a\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"gap\":\"wide\"},\"elements\":[{\"id\":\"7eb5a21\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.332},\"elements\":[{\"id\":\"ae25867\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/image-asset.jpeg\",\"id\":196},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"24c773b\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":58},\"elements\":[{\"id\":\"93ad602\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/130807026\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"cb5dad6\",\"elType\":\"section\",\"settings\":{\"_title\":\"Inner Sedtion\"},\"elements\":[{\"id\":\"25cd114\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_title\":\"virtual reality experience\"},\"elements\":[{\"id\":\"15643ab\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"8ec2d0f\",\"elType\":\"widget\",\"settings\":{\"title\":\"VIRTUAL REALITY EXPERIENCE\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4e004ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"SPIDER-MAN HOMECOMING DISPLAY\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"73a2406\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Submerse yourself in the world of your friendly neighborhood Spider-Man in this fun and thrilling VR Theatrical Display.\\u00a0\\u00a0Based on the all-new 2017 film, the Spider-Man Homecoming VR Experience is a first-person look through the eyes of Spidey himself.<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"04b03b4\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7f4ffcc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"7f85dc5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":76,\"_title\":\"spiderman homecoming\"},\"elements\":[{\"id\":\"9a5a392\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Spidey_Home_V4_002.jpg\",\"id\":230},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"css_filters_css_filter\":\"custom\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"c16541a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":24,\"_title\":\"spiderman 2 vertical pics\"},\"elements\":[{\"id\":\"95b0eed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/IMG_3834.jpg\",\"id\":231},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8ea51a8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/IMG_3788.jpg\",\"id\":233}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"12d34c8\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"00\",\"bottom\":\"00\",\"left\":\"00\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"95003e6\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":435,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/TheStrangers_V01.jpg\"},\"background_position\":\"top center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":4.9,\"sizes\":[]},\"layout\":\"full_width\",\"column_position\":\"top\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":68}},\"_title\":\"Section - STRANGERS HERO\",\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":0.6,\"sizes\":[]},\"motion_fx_translateY_direction\":\"negative\"},\"elements\":[{\"id\":\"b6deb1a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_title\":\"strangers prey at night\"},\"elements\":[{\"id\":\"7a350ee\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"70\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"ecd0cbe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"d684039\",\"elType\":\"widget\",\"settings\":{\"title\":\"THE STRANGERS PREY AT NIGHT\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"003eb99\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5fd9452\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"93ad64e\",\"elType\":\"widget\",\"settings\":{\"title\":\"GRAND FORMAT PHOTO-OP STANDEE\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"247aafb\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"_title\":\"Section - MARKETING AT ITS FINEST\"},\"elements\":[{\"id\":\"f002e93\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"d1321ed\",\"elType\":\"widget\",\"settings\":{\"title\":\"MARKETING AT ITS FINEST, TAILORED FOR SOCIAL MEDIA\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a16ef4e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>This theatrical display allows fans to take photos with Dollface, Pin-up Girl, the Man in the Mask and share their photos on social media.<\\/p>\",\"align\":\"center\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b58ab88\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"00ca412\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58},\"elements\":[{\"id\":\"032d3df\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/003.jpg\",\"id\":446},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"672c1f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42},\"elements\":[{\"id\":\"623f6d1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/26222472_170774200201231_6120473304701599744_n.jpg\",\"id\":447},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a641f07\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/VIDEO_COMING_SOON_01.jpg\",\"id\":449}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cf9e008\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"677b52c\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b747fda\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":700},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":900},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"_title\":\"our company bitches\"},\"elements\":[{\"id\":\"7eab781\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"43661634\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our company is a collective of amazing people striving to build delightful products.\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.4},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70cc6d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.<\\/p>\",\"align\":\"center\",\"text_color\":\"#686868\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"615dfb3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1000},\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"6414755f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3bb26eed\",\"elType\":\"widget\",\"settings\":{\"text\":\"Read More\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3},\"button_text_color\":\"#ffffff\",\"background_color\":\"rgba(0,0,0,0)\",\"hover_color\":\"#00ce1b\",\"button_hover_border_color\":\"#00ce1b\",\"hover_animation\":\"grow\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"123f6d1\",\"elType\":\"section\",\"settings\":{\"_title\":\"blank at bottom\"},\"elements\":[{\"id\":\"25fcf2e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"64f593f\",\"elType\":\"section\",\"settings\":{\"_title\":\"blank at bottom\"},\"elements\":[{\"id\":\"596f429\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(3301,499,'_elementor_edit_mode','builder'),(3302,499,'_elementor_elements_usage','a:9:{s:7:\"heading\";i:12;s:6:\"column\";i:21;s:7:\"section\";i:17;s:7:\"divider\";i:6;s:11:\"text-editor\";i:5;s:5:\"image\";i:9;s:5:\"video\";i:2;s:6:\"spacer\";i:2;s:6:\"button\";i:1;}'),(3303,499,'_elementor_css','a:5:{s:4:\"time\";i:1569110560;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:1:{i:0;s:0:\"\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(3306,500,'_elementor_version','2.6.8'),(3307,500,'_elementor_pro_version','2.6.5'),(3308,500,'_wp_page_template','default'),(3309,500,'_elementor_data','[{\"id\":\"55396f27\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":50,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Theatrical_Display_V003C.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"motion_fx_range\":\"viewport\",\"layout\":\"full_width\",\"column_position\":\"top\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"_title\":\"Section - INSIDIOUS HERO\",\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":1.9,\"sizes\":[]}},\"elements\":[{\"id\":\"905a97c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ad7f3f6\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"162\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2489c07\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"c0bbe21\",\"elType\":\"widget\",\"settings\":{\"title\":\"#WHAT\'S COOL\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"dc881ae\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"18630a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"870a9ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"INNOVATIONS FROM ONDISPLAY CREATIVE\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7df48509\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"_title\":\"Section - LIVING STANDEES\"},\"elements\":[{\"id\":\"1147078d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"23bbc68\",\"elType\":\"widget\",\"settings\":{\"title\":\"LIVING STANDEES HAUNTING THEATERS\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b40d155\",\"elType\":\"widget\",\"settings\":{\"title\":\"ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"700\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86cff8b\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"225341d\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS \\u2013 THE LAST KEY\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a680ae8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"be59fa3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e36fe5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"d4d2039\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2.jpg\",\"id\":88},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3c9b758\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"79e122a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2-1.jpg\",\"id\":87},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3dc9df5\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"start\":0},\"elements\":[],\"widgetType\":\"video\"},{\"id\":\"b61a90b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"8f63560\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"08c588a\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS CHAPTER 3\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0e612c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>OnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7e77f5a\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"gap\":\"wide\"},\"elements\":[{\"id\":\"7eb5a21\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.332},\"elements\":[{\"id\":\"ae25867\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/image-asset.jpeg\",\"id\":196},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"24c773b\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":58},\"elements\":[{\"id\":\"93ad602\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/130807026\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"cb5dad6\",\"elType\":\"section\",\"settings\":{\"_title\":\"Inner Sedtion\"},\"elements\":[{\"id\":\"25cd114\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_title\":\"virtual reality experience\"},\"elements\":[{\"id\":\"15643ab\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"8ec2d0f\",\"elType\":\"widget\",\"settings\":{\"title\":\"VIRTUAL REALITY EXPERIENCE\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4e004ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"SPIDER-MAN HOMECOMING DISPLAY\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"73a2406\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Submerse yourself in the world of your friendly neighborhood Spider-Man in this fun and thrilling VR Theatrical Display.\\u00a0\\u00a0Based on the all-new 2017 film, the Spider-Man Homecoming VR Experience is a first-person look through the eyes of Spidey himself.<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"04b03b4\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7f4ffcc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"7f85dc5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":76,\"_title\":\"spiderman homecoming\"},\"elements\":[{\"id\":\"9a5a392\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Spidey_Home_V4_002.jpg\",\"id\":230},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"css_filters_css_filter\":\"custom\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"c16541a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":24,\"_title\":\"spiderman 2 vertical pics\"},\"elements\":[{\"id\":\"95b0eed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/IMG_3834.jpg\",\"id\":231},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8ea51a8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/IMG_3788.jpg\",\"id\":233}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"12d34c8\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"00\",\"bottom\":\"00\",\"left\":\"00\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"95003e6\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":435,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/TheStrangers_V01.jpg\"},\"background_position\":\"top center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":4.9,\"sizes\":[]},\"layout\":\"full_width\",\"column_position\":\"top\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":68}},\"_title\":\"Section - STRANGERS HERO\",\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"motion_fx_translateY_direction\":\"negative\"},\"elements\":[{\"id\":\"b6deb1a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_title\":\"strangers prey at night\"},\"elements\":[{\"id\":\"7a350ee\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"70\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"ecd0cbe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"d684039\",\"elType\":\"widget\",\"settings\":{\"title\":\"THE STRANGERS PREY AT NIGHT\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"003eb99\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5fd9452\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"93ad64e\",\"elType\":\"widget\",\"settings\":{\"title\":\"GRAND FORMAT PHOTO-OP STANDEE\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"247aafb\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"_title\":\"Section - MARKETING AT ITS FINEST\"},\"elements\":[{\"id\":\"f002e93\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"d1321ed\",\"elType\":\"widget\",\"settings\":{\"title\":\"MARKETING AT ITS FINEST, TAILORED FOR SOCIAL MEDIA\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a16ef4e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>This theatrical display allows fans to take photos with Dollface, Pin-up Girl, the Man in the Mask and share their photos on social media.<\\/p>\",\"align\":\"center\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b58ab88\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"00ca412\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58},\"elements\":[{\"id\":\"032d3df\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/003.jpg\",\"id\":446},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"672c1f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42},\"elements\":[{\"id\":\"623f6d1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/26222472_170774200201231_6120473304701599744_n.jpg\",\"id\":447},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a641f07\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/VIDEO_COMING_SOON_01.jpg\",\"id\":449}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cf9e008\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"677b52c\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b747fda\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":700},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":900},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"_title\":\"our company bitches\"},\"elements\":[{\"id\":\"7eab781\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"43661634\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our company is a collective of amazing people striving to build delightful products.\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.4},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70cc6d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.<\\/p>\",\"align\":\"center\",\"text_color\":\"#686868\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"615dfb3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1000},\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"6414755f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3bb26eed\",\"elType\":\"widget\",\"settings\":{\"text\":\"Read More\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3},\"button_text_color\":\"#ffffff\",\"background_color\":\"rgba(0,0,0,0)\",\"hover_color\":\"#00ce1b\",\"button_hover_border_color\":\"#00ce1b\",\"hover_animation\":\"grow\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"123f6d1\",\"elType\":\"section\",\"settings\":{\"_title\":\"blank at bottom\"},\"elements\":[{\"id\":\"25fcf2e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"64f593f\",\"elType\":\"section\",\"settings\":{\"_title\":\"blank at bottom\"},\"elements\":[{\"id\":\"596f429\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(3310,500,'_elementor_edit_mode','builder'),(3311,500,'_elementor_elements_usage','a:9:{s:7:\"heading\";i:12;s:6:\"column\";i:21;s:7:\"section\";i:17;s:7:\"divider\";i:6;s:11:\"text-editor\";i:5;s:5:\"image\";i:9;s:5:\"video\";i:2;s:6:\"spacer\";i:2;s:6:\"button\";i:1;}'),(3312,500,'_elementor_css','a:5:{s:4:\"time\";i:1569110602;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:1:{i:0;s:0:\"\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(3314,501,'_elementor_template_type','post'),(3315,501,'_elementor_version','2.6.8'),(3316,501,'_elementor_pro_version','2.6.5'),(3317,501,'_wp_page_template','default'),(3318,501,'_elementor_data','[{\"id\":\"55396f27\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":50,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Theatrical_Display_V003C.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"motion_fx_range\":\"viewport\",\"layout\":\"full_width\",\"column_position\":\"top\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"_title\":\"Section - INSIDIOUS HERO\",\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":1.9,\"sizes\":[]}},\"elements\":[{\"id\":\"905a97c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ad7f3f6\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"162\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2489c07\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"c0bbe21\",\"elType\":\"widget\",\"settings\":{\"title\":\"#WHAT\'S COOL\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"dc881ae\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"18630a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"870a9ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"INNOVATIONS FROM ONDISPLAY CREATIVE\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7df48509\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"_title\":\"Section - LIVING STANDEES\"},\"elements\":[{\"id\":\"1147078d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"23bbc68\",\"elType\":\"widget\",\"settings\":{\"title\":\"LIVING STANDEES HAUNTING THEATERS\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b40d155\",\"elType\":\"widget\",\"settings\":{\"title\":\"ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"700\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86cff8b\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"225341d\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS \\u2013 THE LAST KEY\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a680ae8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"be59fa3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e36fe5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"d4d2039\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2.jpg\",\"id\":88},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3c9b758\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"79e122a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2-1.jpg\",\"id\":87},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3dc9df5\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"start\":0},\"elements\":[],\"widgetType\":\"video\"},{\"id\":\"b61a90b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"8f63560\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"08c588a\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS CHAPTER 3\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0e612c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>OnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7e77f5a\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"gap\":\"wide\"},\"elements\":[{\"id\":\"7eb5a21\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.332},\"elements\":[{\"id\":\"ae25867\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/image-asset.jpeg\",\"id\":196},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"24c773b\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":58},\"elements\":[{\"id\":\"93ad602\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/130807026\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"cb5dad6\",\"elType\":\"section\",\"settings\":{\"_title\":\"Inner Sedtion\"},\"elements\":[{\"id\":\"25cd114\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_title\":\"virtual reality experience\"},\"elements\":[{\"id\":\"15643ab\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"8ec2d0f\",\"elType\":\"widget\",\"settings\":{\"title\":\"VIRTUAL REALITY EXPERIENCE\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4e004ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"SPIDER-MAN HOMECOMING DISPLAY\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"73a2406\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Submerse yourself in the world of your friendly neighborhood Spider-Man in this fun and thrilling VR Theatrical Display.\\u00a0\\u00a0Based on the all-new 2017 film, the Spider-Man Homecoming VR Experience is a first-person look through the eyes of Spidey himself.<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"04b03b4\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7f4ffcc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"7f85dc5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":76,\"_title\":\"spiderman homecoming\"},\"elements\":[{\"id\":\"9a5a392\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Spidey_Home_V4_002.jpg\",\"id\":230},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"css_filters_css_filter\":\"custom\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"c16541a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":24,\"_title\":\"spiderman 2 vertical pics\"},\"elements\":[{\"id\":\"95b0eed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/IMG_3834.jpg\",\"id\":231},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8ea51a8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/IMG_3788.jpg\",\"id\":233}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"12d34c8\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"00\",\"bottom\":\"00\",\"left\":\"00\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"95003e6\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":435,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/TheStrangers_V01.jpg\"},\"background_position\":\"top center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":4.9,\"sizes\":[]},\"layout\":\"full_width\",\"column_position\":\"top\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":68}},\"_title\":\"Section - STRANGERS HERO\",\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_translateY_direction\":\"negative\"},\"elements\":[{\"id\":\"b6deb1a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_title\":\"strangers prey at night\"},\"elements\":[{\"id\":\"7a350ee\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"70\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"ecd0cbe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"d684039\",\"elType\":\"widget\",\"settings\":{\"title\":\"THE STRANGERS PREY AT NIGHT\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"003eb99\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5fd9452\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"93ad64e\",\"elType\":\"widget\",\"settings\":{\"title\":\"GRAND FORMAT PHOTO-OP STANDEE\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"247aafb\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"_title\":\"Section - MARKETING AT ITS FINEST\"},\"elements\":[{\"id\":\"f002e93\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"d1321ed\",\"elType\":\"widget\",\"settings\":{\"title\":\"MARKETING AT ITS FINEST, TAILORED FOR SOCIAL MEDIA\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a16ef4e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>This theatrical display allows fans to take photos with Dollface, Pin-up Girl, the Man in the Mask and share their photos on social media.<\\/p>\",\"align\":\"center\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b58ab88\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"00ca412\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58},\"elements\":[{\"id\":\"032d3df\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/003.jpg\",\"id\":446},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"672c1f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42},\"elements\":[{\"id\":\"623f6d1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/26222472_170774200201231_6120473304701599744_n.jpg\",\"id\":447},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a641f07\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/VIDEO_COMING_SOON_01.jpg\",\"id\":449}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cf9e008\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"677b52c\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b747fda\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":700},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":900},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"_title\":\"our company bitches\"},\"elements\":[{\"id\":\"7eab781\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"43661634\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our company is a collective of amazing people striving to build delightful products.\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.4},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70cc6d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.<\\/p>\",\"align\":\"center\",\"text_color\":\"#686868\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"615dfb3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1000},\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"6414755f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3bb26eed\",\"elType\":\"widget\",\"settings\":{\"text\":\"Read More\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3},\"button_text_color\":\"#ffffff\",\"background_color\":\"rgba(0,0,0,0)\",\"hover_color\":\"#00ce1b\",\"button_hover_border_color\":\"#00ce1b\",\"hover_animation\":\"grow\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"123f6d1\",\"elType\":\"section\",\"settings\":{\"_title\":\"blank at bottom\"},\"elements\":[{\"id\":\"25fcf2e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"64f593f\",\"elType\":\"section\",\"settings\":{\"_title\":\"blank at bottom\"},\"elements\":[{\"id\":\"596f429\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(3319,501,'_elementor_edit_mode','builder'),(3320,501,'_elementor_elements_usage','a:9:{s:7:\"heading\";i:12;s:6:\"column\";i:21;s:7:\"section\";i:17;s:7:\"divider\";i:6;s:11:\"text-editor\";i:5;s:5:\"image\";i:9;s:5:\"video\";i:2;s:6:\"spacer\";i:2;s:6:\"button\";i:1;}'),(3321,501,'_elementor_css','a:5:{s:4:\"time\";i:1569110629;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:1:{i:0;s:0:\"\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(3323,502,'_elementor_template_type','post'),(3324,502,'_elementor_version','2.6.8'),(3325,502,'_elementor_pro_version','2.6.5'),(3326,502,'_wp_page_template','default'),(3327,502,'_elementor_data','[{\"id\":\"55396f27\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":50,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Theatrical_Display_V003C.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"motion_fx_range\":\"viewport\",\"layout\":\"full_width\",\"column_position\":\"top\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"_title\":\"Section - INSIDIOUS HERO\",\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":1.9,\"sizes\":[]}},\"elements\":[{\"id\":\"905a97c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ad7f3f6\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"162\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2489c07\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"c0bbe21\",\"elType\":\"widget\",\"settings\":{\"title\":\"#WHAT\'S COOL\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"dc881ae\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"18630a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"870a9ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"INNOVATIONS FROM ONDISPLAY CREATIVE\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7df48509\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"_title\":\"Section - LIVING STANDEES\"},\"elements\":[{\"id\":\"1147078d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"23bbc68\",\"elType\":\"widget\",\"settings\":{\"title\":\"LIVING STANDEES HAUNTING THEATERS\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b40d155\",\"elType\":\"widget\",\"settings\":{\"title\":\"ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"700\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86cff8b\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"225341d\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS \\u2013 THE LAST KEY\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a680ae8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"be59fa3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e36fe5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"d4d2039\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2.jpg\",\"id\":88},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3c9b758\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"79e122a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2-1.jpg\",\"id\":87},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3dc9df5\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"start\":0},\"elements\":[],\"widgetType\":\"video\"},{\"id\":\"b61a90b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"8f63560\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"08c588a\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS CHAPTER 3\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0e612c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>OnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7e77f5a\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"gap\":\"wide\"},\"elements\":[{\"id\":\"7eb5a21\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.332},\"elements\":[{\"id\":\"ae25867\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/image-asset.jpeg\",\"id\":196},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"24c773b\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":58},\"elements\":[{\"id\":\"93ad602\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/130807026\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"cb5dad6\",\"elType\":\"section\",\"settings\":{\"_title\":\"Inner Sedtion\"},\"elements\":[{\"id\":\"25cd114\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_title\":\"virtual reality experience\"},\"elements\":[{\"id\":\"15643ab\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"8ec2d0f\",\"elType\":\"widget\",\"settings\":{\"title\":\"VIRTUAL REALITY EXPERIENCE\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4e004ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"SPIDER-MAN HOMECOMING DISPLAY\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"73a2406\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Submerse yourself in the world of your friendly neighborhood Spider-Man in this fun and thrilling VR Theatrical Display.\\u00a0\\u00a0Based on the all-new 2017 film, the Spider-Man Homecoming VR Experience is a first-person look through the eyes of Spidey himself.<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"04b03b4\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7f4ffcc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"7f85dc5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":76,\"_title\":\"spiderman homecoming\"},\"elements\":[{\"id\":\"9a5a392\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Spidey_Home_V4_002.jpg\",\"id\":230},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"css_filters_css_filter\":\"custom\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"c16541a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":24,\"_title\":\"spiderman 2 vertical pics\"},\"elements\":[{\"id\":\"95b0eed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/IMG_3834.jpg\",\"id\":231},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8ea51a8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/IMG_3788.jpg\",\"id\":233}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"12d34c8\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"00\",\"bottom\":\"00\",\"left\":\"00\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"95003e6\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":435,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/TheStrangers_V01.jpg\"},\"background_position\":\"bottom center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":4.9,\"sizes\":[]},\"layout\":\"full_width\",\"column_position\":\"top\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":68}},\"_title\":\"Section - STRANGERS HERO\",\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_translateY_direction\":\"negative\"},\"elements\":[{\"id\":\"b6deb1a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_title\":\"strangers prey at night\"},\"elements\":[{\"id\":\"7a350ee\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"70\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"ecd0cbe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"d684039\",\"elType\":\"widget\",\"settings\":{\"title\":\"THE STRANGERS PREY AT NIGHT\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"003eb99\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5fd9452\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"93ad64e\",\"elType\":\"widget\",\"settings\":{\"title\":\"GRAND FORMAT PHOTO-OP STANDEE\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"247aafb\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"_title\":\"Section - MARKETING AT ITS FINEST\"},\"elements\":[{\"id\":\"f002e93\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"d1321ed\",\"elType\":\"widget\",\"settings\":{\"title\":\"MARKETING AT ITS FINEST, TAILORED FOR SOCIAL MEDIA\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a16ef4e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>This theatrical display allows fans to take photos with Dollface, Pin-up Girl, the Man in the Mask and share their photos on social media.<\\/p>\",\"align\":\"center\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b58ab88\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"00ca412\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58},\"elements\":[{\"id\":\"032d3df\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/003.jpg\",\"id\":446},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"672c1f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42},\"elements\":[{\"id\":\"623f6d1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/26222472_170774200201231_6120473304701599744_n.jpg\",\"id\":447},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a641f07\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/VIDEO_COMING_SOON_01.jpg\",\"id\":449}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cf9e008\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"677b52c\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b747fda\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":700},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":900},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"_title\":\"our company bitches\"},\"elements\":[{\"id\":\"7eab781\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"43661634\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our company is a collective of amazing people striving to build delightful products.\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.4},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70cc6d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.<\\/p>\",\"align\":\"center\",\"text_color\":\"#686868\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"615dfb3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1000},\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"6414755f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3bb26eed\",\"elType\":\"widget\",\"settings\":{\"text\":\"Read More\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3},\"button_text_color\":\"#ffffff\",\"background_color\":\"rgba(0,0,0,0)\",\"hover_color\":\"#00ce1b\",\"button_hover_border_color\":\"#00ce1b\",\"hover_animation\":\"grow\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"123f6d1\",\"elType\":\"section\",\"settings\":{\"_title\":\"blank at bottom\"},\"elements\":[{\"id\":\"25fcf2e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"64f593f\",\"elType\":\"section\",\"settings\":{\"_title\":\"blank at bottom\"},\"elements\":[{\"id\":\"596f429\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(3328,502,'_elementor_edit_mode','builder'),(3329,502,'_elementor_elements_usage','a:9:{s:7:\"heading\";i:12;s:6:\"column\";i:21;s:7:\"section\";i:17;s:7:\"divider\";i:6;s:11:\"text-editor\";i:5;s:5:\"image\";i:9;s:5:\"video\";i:2;s:6:\"spacer\";i:2;s:6:\"button\";i:1;}'),(3330,502,'_elementor_css','a:5:{s:4:\"time\";i:1569110664;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:1:{i:0;s:0:\"\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(3332,503,'_elementor_template_type','post'),(3333,503,'_elementor_version','2.6.8'),(3334,503,'_elementor_pro_version','2.6.5'),(3335,503,'_wp_page_template','default'),(3336,503,'_elementor_data','[{\"id\":\"55396f27\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":50,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Theatrical_Display_V003C.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"motion_fx_range\":\"viewport\",\"layout\":\"full_width\",\"column_position\":\"top\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"_title\":\"Section - INSIDIOUS HERO\",\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":1.9,\"sizes\":[]}},\"elements\":[{\"id\":\"905a97c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ad7f3f6\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"162\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2489c07\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"c0bbe21\",\"elType\":\"widget\",\"settings\":{\"title\":\"#WHAT\'S COOL\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"dc881ae\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"18630a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"870a9ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"INNOVATIONS FROM ONDISPLAY CREATIVE\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7df48509\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"_title\":\"Section - LIVING STANDEES\"},\"elements\":[{\"id\":\"1147078d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"23bbc68\",\"elType\":\"widget\",\"settings\":{\"title\":\"LIVING STANDEES HAUNTING THEATERS\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b40d155\",\"elType\":\"widget\",\"settings\":{\"title\":\"ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"700\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86cff8b\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"225341d\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS \\u2013 THE LAST KEY\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a680ae8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"be59fa3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e36fe5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"d4d2039\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2.jpg\",\"id\":88},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3c9b758\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"79e122a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2-1.jpg\",\"id\":87},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3dc9df5\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"start\":0},\"elements\":[],\"widgetType\":\"video\"},{\"id\":\"b61a90b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"8f63560\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"08c588a\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS CHAPTER 3\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0e612c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>OnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7e77f5a\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"gap\":\"wide\"},\"elements\":[{\"id\":\"7eb5a21\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.332},\"elements\":[{\"id\":\"ae25867\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/image-asset.jpeg\",\"id\":196},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"24c773b\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":58},\"elements\":[{\"id\":\"93ad602\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/130807026\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"cb5dad6\",\"elType\":\"section\",\"settings\":{\"_title\":\"Inner Sedtion\"},\"elements\":[{\"id\":\"25cd114\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_title\":\"virtual reality experience\"},\"elements\":[{\"id\":\"15643ab\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"8ec2d0f\",\"elType\":\"widget\",\"settings\":{\"title\":\"VIRTUAL REALITY EXPERIENCE\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4e004ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"SPIDER-MAN HOMECOMING DISPLAY\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"73a2406\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Submerse yourself in the world of your friendly neighborhood Spider-Man in this fun and thrilling VR Theatrical Display.\\u00a0\\u00a0Based on the all-new 2017 film, the Spider-Man Homecoming VR Experience is a first-person look through the eyes of Spidey himself.<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"04b03b4\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7f4ffcc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"7f85dc5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":76,\"_title\":\"spiderman homecoming\"},\"elements\":[{\"id\":\"9a5a392\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Spidey_Home_V4_002.jpg\",\"id\":230},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"css_filters_css_filter\":\"custom\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"c16541a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":24,\"_title\":\"spiderman 2 vertical pics\"},\"elements\":[{\"id\":\"95b0eed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/IMG_3834.jpg\",\"id\":231},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8ea51a8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/IMG_3788.jpg\",\"id\":233}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"12d34c8\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"00\",\"bottom\":\"00\",\"left\":\"00\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"95003e6\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":435,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/TheStrangers_V01.jpg\"},\"background_position\":\"bottom center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":4.9,\"sizes\":[]},\"layout\":\"full_width\",\"column_position\":\"top\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":68}},\"_title\":\"Section - STRANGERS HERO\",\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_translateY_direction\":\"negative\"},\"elements\":[{\"id\":\"b6deb1a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_title\":\"strangers prey at night\"},\"elements\":[{\"id\":\"7a350ee\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"70\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"ecd0cbe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"d684039\",\"elType\":\"widget\",\"settings\":{\"title\":\"THE STRANGERS PREY AT NIGHT\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"003eb99\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5fd9452\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"93ad64e\",\"elType\":\"widget\",\"settings\":{\"title\":\"GRAND FORMAT PHOTO-OP STANDEE\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"247aafb\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"_title\":\"Section - MARKETING AT ITS FINEST\"},\"elements\":[{\"id\":\"f002e93\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"d1321ed\",\"elType\":\"widget\",\"settings\":{\"title\":\"MARKETING AT ITS FINEST, TAILORED FOR SOCIAL MEDIA\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a16ef4e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>This theatrical display allows fans to take photos with Dollface, Pin-up Girl, the Man in the Mask and share their photos on social media.<\\/p>\",\"align\":\"center\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b58ab88\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"00ca412\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58},\"elements\":[{\"id\":\"032d3df\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/003.jpg\",\"id\":446},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"672c1f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42},\"elements\":[{\"id\":\"623f6d1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/26222472_170774200201231_6120473304701599744_n.jpg\",\"id\":447},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a641f07\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/VIDEO_COMING_SOON_01.jpg\",\"id\":449}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cf9e008\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"677b52c\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b747fda\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":700},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":900},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"_title\":\"our company bitches\"},\"elements\":[{\"id\":\"7eab781\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"43661634\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our company is a collective of amazing people striving to build delightful products.\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.4},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70cc6d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.<\\/p>\",\"align\":\"center\",\"text_color\":\"#686868\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"615dfb3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1000},\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"6414755f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3bb26eed\",\"elType\":\"widget\",\"settings\":{\"text\":\"Read More\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3},\"button_text_color\":\"#ffffff\",\"background_color\":\"rgba(0,0,0,0)\",\"hover_color\":\"#00ce1b\",\"button_hover_border_color\":\"#00ce1b\",\"hover_animation\":\"grow\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"123f6d1\",\"elType\":\"section\",\"settings\":{\"_title\":\"blank at bottom\"},\"elements\":[{\"id\":\"25fcf2e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"64f593f\",\"elType\":\"section\",\"settings\":{\"_title\":\"blank at bottom\"},\"elements\":[{\"id\":\"596f429\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(3337,503,'_elementor_edit_mode','builder'),(3338,503,'_elementor_elements_usage','a:9:{s:7:\"heading\";i:12;s:6:\"column\";i:21;s:7:\"section\";i:17;s:7:\"divider\";i:6;s:11:\"text-editor\";i:5;s:5:\"image\";i:9;s:5:\"video\";i:2;s:6:\"spacer\";i:2;s:6:\"button\";i:1;}'),(3339,503,'_elementor_css','a:5:{s:4:\"time\";i:1569110734;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:1:{i:0;s:0:\"\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(3340,504,'_elementor_template_type','post'),(3341,504,'_elementor_version','2.6.8'),(3342,504,'_elementor_pro_version','2.6.5'),(3343,504,'_wp_page_template','default'),(3344,504,'_elementor_data','[{\"id\":\"55396f27\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":50,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Theatrical_Display_V003C.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"motion_fx_range\":\"viewport\",\"layout\":\"full_width\",\"column_position\":\"top\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"_title\":\"Section - INSIDIOUS HERO\",\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":1.9,\"sizes\":[]}},\"elements\":[{\"id\":\"905a97c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ad7f3f6\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"162\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2489c07\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"c0bbe21\",\"elType\":\"widget\",\"settings\":{\"title\":\"#WHAT\'S COOL\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"dc881ae\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"18630a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"870a9ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"INNOVATIONS FROM ONDISPLAY CREATIVE\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7df48509\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"_title\":\"Section - LIVING STANDEES\"},\"elements\":[{\"id\":\"1147078d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"23bbc68\",\"elType\":\"widget\",\"settings\":{\"title\":\"LIVING STANDEES HAUNTING THEATERS\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b40d155\",\"elType\":\"widget\",\"settings\":{\"title\":\"ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"700\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86cff8b\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"225341d\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS \\u2013 THE LAST KEY\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a680ae8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"be59fa3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e36fe5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"d4d2039\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2.jpg\",\"id\":88},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3c9b758\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"79e122a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2-1.jpg\",\"id\":87},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3dc9df5\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"start\":0},\"elements\":[],\"widgetType\":\"video\"},{\"id\":\"b61a90b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"8f63560\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"08c588a\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS CHAPTER 3\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0e612c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>OnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7e77f5a\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"gap\":\"wide\"},\"elements\":[{\"id\":\"7eb5a21\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.332},\"elements\":[{\"id\":\"ae25867\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/image-asset.jpeg\",\"id\":196},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"24c773b\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":58},\"elements\":[{\"id\":\"93ad602\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/130807026\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"cb5dad6\",\"elType\":\"section\",\"settings\":{\"_title\":\"Inner Sedtion\"},\"elements\":[{\"id\":\"25cd114\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_title\":\"virtual reality experience\"},\"elements\":[{\"id\":\"15643ab\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"8ec2d0f\",\"elType\":\"widget\",\"settings\":{\"title\":\"VIRTUAL REALITY EXPERIENCE\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4e004ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"SPIDER-MAN HOMECOMING DISPLAY\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"73a2406\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Submerse yourself in the world of your friendly neighborhood Spider-Man in this fun and thrilling VR Theatrical Display.\\u00a0\\u00a0Based on the all-new 2017 film, the Spider-Man Homecoming VR Experience is a first-person look through the eyes of Spidey himself.<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"04b03b4\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7f4ffcc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"7f85dc5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":76,\"_title\":\"spiderman homecoming\"},\"elements\":[{\"id\":\"9a5a392\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Spidey_Home_V4_002.jpg\",\"id\":230},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"css_filters_css_filter\":\"custom\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"c16541a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":24,\"_title\":\"spiderman 2 vertical pics\"},\"elements\":[{\"id\":\"95b0eed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/IMG_3834.jpg\",\"id\":231},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8ea51a8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/IMG_3788.jpg\",\"id\":233}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"12d34c8\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"00\",\"bottom\":\"00\",\"left\":\"00\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"95003e6\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":435,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/TheStrangers_V01.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":4.9,\"sizes\":[]},\"layout\":\"full_width\",\"column_position\":\"top\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":68}},\"_title\":\"Section - STRANGERS HERO\",\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_translateY_direction\":\"negative\",\"background_xpos\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"background_motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":100,\"end\":100}}},\"elements\":[{\"id\":\"b6deb1a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_title\":\"strangers prey at night\"},\"elements\":[{\"id\":\"7a350ee\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"70\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"ecd0cbe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"d684039\",\"elType\":\"widget\",\"settings\":{\"title\":\"THE STRANGERS PREY AT NIGHT\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"003eb99\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5fd9452\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"93ad64e\",\"elType\":\"widget\",\"settings\":{\"title\":\"GRAND FORMAT PHOTO-OP STANDEE\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"247aafb\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"_title\":\"Section - MARKETING AT ITS FINEST\"},\"elements\":[{\"id\":\"f002e93\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"d1321ed\",\"elType\":\"widget\",\"settings\":{\"title\":\"MARKETING AT ITS FINEST, TAILORED FOR SOCIAL MEDIA\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a16ef4e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>This theatrical display allows fans to take photos with Dollface, Pin-up Girl, the Man in the Mask and share their photos on social media.<\\/p>\",\"align\":\"center\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b58ab88\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"00ca412\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58},\"elements\":[{\"id\":\"032d3df\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/003.jpg\",\"id\":446},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"672c1f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42},\"elements\":[{\"id\":\"623f6d1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/26222472_170774200201231_6120473304701599744_n.jpg\",\"id\":447},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a641f07\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/VIDEO_COMING_SOON_01.jpg\",\"id\":449}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cf9e008\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"677b52c\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b747fda\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":700},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":900},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"_title\":\"our company bitches\"},\"elements\":[{\"id\":\"7eab781\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"43661634\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our company is a collective of amazing people striving to build delightful products.\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.4},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70cc6d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.<\\/p>\",\"align\":\"center\",\"text_color\":\"#686868\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"615dfb3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1000},\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"6414755f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3bb26eed\",\"elType\":\"widget\",\"settings\":{\"text\":\"Read More\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3},\"button_text_color\":\"#ffffff\",\"background_color\":\"rgba(0,0,0,0)\",\"hover_color\":\"#00ce1b\",\"button_hover_border_color\":\"#00ce1b\",\"hover_animation\":\"grow\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"123f6d1\",\"elType\":\"section\",\"settings\":{\"_title\":\"blank at bottom\"},\"elements\":[{\"id\":\"25fcf2e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"64f593f\",\"elType\":\"section\",\"settings\":{\"_title\":\"blank at bottom\"},\"elements\":[{\"id\":\"596f429\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(3345,504,'_elementor_edit_mode','builder'),(3346,504,'_elementor_elements_usage','a:9:{s:7:\"heading\";i:12;s:6:\"column\";i:21;s:7:\"section\";i:17;s:7:\"divider\";i:6;s:11:\"text-editor\";i:5;s:5:\"image\";i:9;s:5:\"video\";i:2;s:6:\"spacer\";i:2;s:6:\"button\";i:1;}'),(3347,504,'_elementor_css','a:5:{s:4:\"time\";i:1569110734;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:1:{i:0;s:0:\"\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(3358,506,'_elementor_template_type','post'),(3349,505,'_elementor_template_type','post'),(3350,505,'_elementor_version','2.6.8'),(3351,505,'_elementor_pro_version','2.6.5'),(3352,505,'_wp_page_template','default'),(3353,505,'_elementor_data','[{\"id\":\"55396f27\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":50,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Theatrical_Display_V003C.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"motion_fx_range\":\"viewport\",\"layout\":\"full_width\",\"column_position\":\"top\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"_title\":\"Section - INSIDIOUS HERO\",\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":1.9,\"sizes\":[]}},\"elements\":[{\"id\":\"905a97c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ad7f3f6\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"162\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2489c07\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"c0bbe21\",\"elType\":\"widget\",\"settings\":{\"title\":\"#WHAT\'S COOL\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"dc881ae\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"18630a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"870a9ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"INNOVATIONS FROM ONDISPLAY CREATIVE\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7df48509\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"_title\":\"Section - LIVING STANDEES\"},\"elements\":[{\"id\":\"1147078d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"23bbc68\",\"elType\":\"widget\",\"settings\":{\"title\":\"LIVING STANDEES HAUNTING THEATERS\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b40d155\",\"elType\":\"widget\",\"settings\":{\"title\":\"ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"700\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86cff8b\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"225341d\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS \\u2013 THE LAST KEY\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a680ae8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"be59fa3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e36fe5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"d4d2039\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2.jpg\",\"id\":88},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3c9b758\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"79e122a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2-1.jpg\",\"id\":87},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3dc9df5\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"start\":0},\"elements\":[],\"widgetType\":\"video\"},{\"id\":\"b61a90b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"8f63560\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"08c588a\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS CHAPTER 3\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0e612c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>OnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7e77f5a\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"gap\":\"wide\"},\"elements\":[{\"id\":\"7eb5a21\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.332},\"elements\":[{\"id\":\"ae25867\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/image-asset.jpeg\",\"id\":196},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"24c773b\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":58},\"elements\":[{\"id\":\"93ad602\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/130807026\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"cb5dad6\",\"elType\":\"section\",\"settings\":{\"_title\":\"Inner Sedtion\"},\"elements\":[{\"id\":\"25cd114\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_title\":\"virtual reality experience\"},\"elements\":[{\"id\":\"15643ab\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"8ec2d0f\",\"elType\":\"widget\",\"settings\":{\"title\":\"VIRTUAL REALITY EXPERIENCE\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4e004ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"SPIDER-MAN HOMECOMING DISPLAY\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"73a2406\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Submerse yourself in the world of your friendly neighborhood Spider-Man in this fun and thrilling VR Theatrical Display.\\u00a0\\u00a0Based on the all-new 2017 film, the Spider-Man Homecoming VR Experience is a first-person look through the eyes of Spidey himself.<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"04b03b4\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7f4ffcc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"7f85dc5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":76,\"_title\":\"spiderman homecoming\"},\"elements\":[{\"id\":\"9a5a392\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Spidey_Home_V4_002.jpg\",\"id\":230},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"css_filters_css_filter\":\"custom\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"c16541a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":24,\"_title\":\"spiderman 2 vertical pics\"},\"elements\":[{\"id\":\"95b0eed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/IMG_3834.jpg\",\"id\":231},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8ea51a8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/IMG_3788.jpg\",\"id\":233}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"12d34c8\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"00\",\"bottom\":\"00\",\"left\":\"00\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"95003e6\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":435,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/TheStrangers_V01.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":4.9,\"sizes\":[]},\"layout\":\"full_width\",\"column_position\":\"top\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":68}},\"_title\":\"Section - STRANGERS HERO\",\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":4.5,\"sizes\":[]},\"motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_translateY_direction\":\"negative\",\"background_xpos\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"background_motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":100,\"end\":100}}},\"elements\":[{\"id\":\"b6deb1a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_title\":\"strangers prey at night\"},\"elements\":[{\"id\":\"7a350ee\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"70\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"ecd0cbe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"d684039\",\"elType\":\"widget\",\"settings\":{\"title\":\"THE STRANGERS PREY AT NIGHT\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"003eb99\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5fd9452\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"93ad64e\",\"elType\":\"widget\",\"settings\":{\"title\":\"GRAND FORMAT PHOTO-OP STANDEE\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"247aafb\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"_title\":\"Section - MARKETING AT ITS FINEST\"},\"elements\":[{\"id\":\"f002e93\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"d1321ed\",\"elType\":\"widget\",\"settings\":{\"title\":\"MARKETING AT ITS FINEST, TAILORED FOR SOCIAL MEDIA\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a16ef4e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>This theatrical display allows fans to take photos with Dollface, Pin-up Girl, the Man in the Mask and share their photos on social media.<\\/p>\",\"align\":\"center\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b58ab88\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"00ca412\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58},\"elements\":[{\"id\":\"032d3df\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/003.jpg\",\"id\":446},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"672c1f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42},\"elements\":[{\"id\":\"623f6d1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/26222472_170774200201231_6120473304701599744_n.jpg\",\"id\":447},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a641f07\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/VIDEO_COMING_SOON_01.jpg\",\"id\":449}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cf9e008\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"677b52c\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b747fda\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":700},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":900},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"_title\":\"our company bitches\"},\"elements\":[{\"id\":\"7eab781\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"43661634\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our company is a collective of amazing people striving to build delightful products.\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.4},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70cc6d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.<\\/p>\",\"align\":\"center\",\"text_color\":\"#686868\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"615dfb3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1000},\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"6414755f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3bb26eed\",\"elType\":\"widget\",\"settings\":{\"text\":\"Read More\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3},\"button_text_color\":\"#ffffff\",\"background_color\":\"rgba(0,0,0,0)\",\"hover_color\":\"#00ce1b\",\"button_hover_border_color\":\"#00ce1b\",\"hover_animation\":\"grow\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"123f6d1\",\"elType\":\"section\",\"settings\":{\"_title\":\"blank at bottom\"},\"elements\":[{\"id\":\"25fcf2e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"64f593f\",\"elType\":\"section\",\"settings\":{\"_title\":\"blank at bottom\"},\"elements\":[{\"id\":\"596f429\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(3354,505,'_elementor_edit_mode','builder'),(3355,505,'_elementor_elements_usage','a:9:{s:7:\"heading\";i:12;s:6:\"column\";i:21;s:7:\"section\";i:17;s:7:\"divider\";i:6;s:11:\"text-editor\";i:5;s:5:\"image\";i:9;s:5:\"video\";i:2;s:6:\"spacer\";i:2;s:6:\"button\";i:1;}'),(3356,505,'_elementor_css','a:5:{s:4:\"time\";i:1569111217;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:1:{i:0;s:0:\"\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(3359,506,'_elementor_version','2.6.8'),(3360,506,'_elementor_pro_version','2.6.5'),(3361,506,'_wp_page_template','default'),(3362,506,'_elementor_data','[{\"id\":\"55396f27\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":50,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Theatrical_Display_V003C.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"motion_fx_range\":\"viewport\",\"layout\":\"full_width\",\"column_position\":\"top\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"_title\":\"Section - INSIDIOUS HERO\",\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":1.9,\"sizes\":[]}},\"elements\":[{\"id\":\"905a97c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ad7f3f6\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"162\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2489c07\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"c0bbe21\",\"elType\":\"widget\",\"settings\":{\"title\":\"#WHAT\'S COOL\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"dc881ae\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"18630a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"870a9ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"INNOVATIONS FROM ONDISPLAY CREATIVE\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7df48509\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"_title\":\"Section - LIVING STANDEES\"},\"elements\":[{\"id\":\"1147078d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"23bbc68\",\"elType\":\"widget\",\"settings\":{\"title\":\"LIVING STANDEES HAUNTING THEATERS\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b40d155\",\"elType\":\"widget\",\"settings\":{\"title\":\"ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"700\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86cff8b\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"225341d\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS \\u2013 THE LAST KEY\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a680ae8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"be59fa3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e36fe5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"d4d2039\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2.jpg\",\"id\":88},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3c9b758\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"79e122a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2-1.jpg\",\"id\":87},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3dc9df5\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"start\":0},\"elements\":[],\"widgetType\":\"video\"},{\"id\":\"b61a90b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"8f63560\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"08c588a\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS CHAPTER 3\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0e612c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>OnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7e77f5a\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"gap\":\"wide\"},\"elements\":[{\"id\":\"7eb5a21\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.332},\"elements\":[{\"id\":\"ae25867\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/image-asset.jpeg\",\"id\":196},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"24c773b\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":58},\"elements\":[{\"id\":\"93ad602\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/130807026\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"cb5dad6\",\"elType\":\"section\",\"settings\":{\"_title\":\"Inner Sedtion\"},\"elements\":[{\"id\":\"25cd114\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_title\":\"virtual reality experience\"},\"elements\":[{\"id\":\"15643ab\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"8ec2d0f\",\"elType\":\"widget\",\"settings\":{\"title\":\"VIRTUAL REALITY EXPERIENCE\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4e004ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"SPIDER-MAN HOMECOMING DISPLAY\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"73a2406\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Submerse yourself in the world of your friendly neighborhood Spider-Man in this fun and thrilling VR Theatrical Display.\\u00a0\\u00a0Based on the all-new 2017 film, the Spider-Man Homecoming VR Experience is a first-person look through the eyes of Spidey himself.<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"04b03b4\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7f4ffcc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"7f85dc5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":76,\"_title\":\"spiderman homecoming\"},\"elements\":[{\"id\":\"9a5a392\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Spidey_Home_V4_002.jpg\",\"id\":230},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"css_filters_css_filter\":\"custom\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"c16541a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":24,\"_title\":\"spiderman 2 vertical pics\"},\"elements\":[{\"id\":\"95b0eed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/IMG_3834.jpg\",\"id\":231},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8ea51a8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/IMG_3788.jpg\",\"id\":233}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"12d34c8\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"00\",\"bottom\":\"00\",\"left\":\"00\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"95003e6\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":435,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/TheStrangers_V01.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":4.9,\"sizes\":[]},\"layout\":\"full_width\",\"column_position\":\"top\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":68}},\"_title\":\"Section - STRANGERS HERO\",\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":4.5,\"sizes\":[]},\"motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_translateY_direction\":\"negative\",\"background_xpos\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"background_motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":49,\"end\":51}}},\"elements\":[{\"id\":\"b6deb1a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_title\":\"strangers prey at night\"},\"elements\":[{\"id\":\"7a350ee\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"70\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"ecd0cbe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"d684039\",\"elType\":\"widget\",\"settings\":{\"title\":\"THE STRANGERS PREY AT NIGHT\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"003eb99\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5fd9452\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"93ad64e\",\"elType\":\"widget\",\"settings\":{\"title\":\"GRAND FORMAT PHOTO-OP STANDEE\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"247aafb\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"_title\":\"Section - MARKETING AT ITS FINEST\"},\"elements\":[{\"id\":\"f002e93\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"d1321ed\",\"elType\":\"widget\",\"settings\":{\"title\":\"MARKETING AT ITS FINEST, TAILORED FOR SOCIAL MEDIA\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a16ef4e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>This theatrical display allows fans to take photos with Dollface, Pin-up Girl, the Man in the Mask and share their photos on social media.<\\/p>\",\"align\":\"center\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b58ab88\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"00ca412\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58},\"elements\":[{\"id\":\"032d3df\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/003.jpg\",\"id\":446},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"672c1f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42},\"elements\":[{\"id\":\"623f6d1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/26222472_170774200201231_6120473304701599744_n.jpg\",\"id\":447},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a641f07\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/VIDEO_COMING_SOON_01.jpg\",\"id\":449}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cf9e008\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"677b52c\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b747fda\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":700},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":900},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"_title\":\"our company bitches\"},\"elements\":[{\"id\":\"7eab781\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"43661634\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our company is a collective of amazing people striving to build delightful products.\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.4},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70cc6d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.<\\/p>\",\"align\":\"center\",\"text_color\":\"#686868\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"615dfb3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1000},\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"6414755f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3bb26eed\",\"elType\":\"widget\",\"settings\":{\"text\":\"Read More\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3},\"button_text_color\":\"#ffffff\",\"background_color\":\"rgba(0,0,0,0)\",\"hover_color\":\"#00ce1b\",\"button_hover_border_color\":\"#00ce1b\",\"hover_animation\":\"grow\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"123f6d1\",\"elType\":\"section\",\"settings\":{\"_title\":\"blank at bottom\"},\"elements\":[{\"id\":\"25fcf2e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"64f593f\",\"elType\":\"section\",\"settings\":{\"_title\":\"blank at bottom\"},\"elements\":[{\"id\":\"596f429\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(3363,506,'_elementor_edit_mode','builder'),(3364,506,'_elementor_elements_usage','a:9:{s:7:\"heading\";i:12;s:6:\"column\";i:21;s:7:\"section\";i:17;s:7:\"divider\";i:6;s:11:\"text-editor\";i:5;s:5:\"image\";i:9;s:5:\"video\";i:2;s:6:\"spacer\";i:2;s:6:\"button\";i:1;}'),(3365,506,'_elementor_css','a:5:{s:4:\"time\";i:1569111243;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:1:{i:0;s:0:\"\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(3376,508,'_elementor_template_type','post'),(3367,507,'_elementor_template_type','post'),(3368,507,'_elementor_version','2.6.8'),(3369,507,'_elementor_pro_version','2.6.5'),(3370,507,'_wp_page_template','default'),(3371,507,'_elementor_data','[{\"id\":\"55396f27\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":50,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Theatrical_Display_V003C.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"motion_fx_range\":\"viewport\",\"layout\":\"full_width\",\"column_position\":\"top\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"_title\":\"Section - INSIDIOUS HERO\",\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":1.9,\"sizes\":[]}},\"elements\":[{\"id\":\"905a97c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ad7f3f6\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"162\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2489c07\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"c0bbe21\",\"elType\":\"widget\",\"settings\":{\"title\":\"#WHAT\'S COOL\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"dc881ae\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"18630a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"870a9ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"INNOVATIONS FROM ONDISPLAY CREATIVE\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7df48509\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"_title\":\"Section - LIVING STANDEES\"},\"elements\":[{\"id\":\"1147078d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"23bbc68\",\"elType\":\"widget\",\"settings\":{\"title\":\"LIVING STANDEES HAUNTING THEATERS\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b40d155\",\"elType\":\"widget\",\"settings\":{\"title\":\"ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"700\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86cff8b\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"225341d\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS \\u2013 THE LAST KEY\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a680ae8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"be59fa3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e36fe5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"d4d2039\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2.jpg\",\"id\":88},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3c9b758\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"79e122a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2-1.jpg\",\"id\":87},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3dc9df5\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"start\":0},\"elements\":[],\"widgetType\":\"video\"},{\"id\":\"b61a90b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"8f63560\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"08c588a\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS CHAPTER 3\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0e612c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>OnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7e77f5a\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"gap\":\"wide\"},\"elements\":[{\"id\":\"7eb5a21\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.332},\"elements\":[{\"id\":\"ae25867\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/image-asset.jpeg\",\"id\":196},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"24c773b\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":58},\"elements\":[{\"id\":\"93ad602\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/130807026\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"cb5dad6\",\"elType\":\"section\",\"settings\":{\"_title\":\"Inner Sedtion\"},\"elements\":[{\"id\":\"25cd114\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_title\":\"virtual reality experience\"},\"elements\":[{\"id\":\"15643ab\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"8ec2d0f\",\"elType\":\"widget\",\"settings\":{\"title\":\"VIRTUAL REALITY EXPERIENCE\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4e004ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"SPIDER-MAN HOMECOMING DISPLAY\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"73a2406\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Submerse yourself in the world of your friendly neighborhood Spider-Man in this fun and thrilling VR Theatrical Display.\\u00a0\\u00a0Based on the all-new 2017 film, the Spider-Man Homecoming VR Experience is a first-person look through the eyes of Spidey himself.<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"04b03b4\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7f4ffcc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"7f85dc5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":76,\"_title\":\"spiderman homecoming\"},\"elements\":[{\"id\":\"9a5a392\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Spidey_Home_V4_002.jpg\",\"id\":230},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"css_filters_css_filter\":\"custom\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"c16541a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":24,\"_title\":\"spiderman 2 vertical pics\"},\"elements\":[{\"id\":\"95b0eed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/IMG_3834.jpg\",\"id\":231},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8ea51a8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/IMG_3788.jpg\",\"id\":233}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"12d34c8\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"00\",\"bottom\":\"00\",\"left\":\"00\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"95003e6\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":435,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/TheStrangers_V01.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":4.9,\"sizes\":[]},\"layout\":\"full_width\",\"column_position\":\"top\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":68}},\"_title\":\"Section - STRANGERS HERO\",\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":4.5,\"sizes\":[]},\"motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_translateY_direction\":\"negative\",\"background_xpos\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"background_motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":49,\"end\":100}},\"background_motion_fx_range\":\"viewport\"},\"elements\":[{\"id\":\"b6deb1a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_title\":\"strangers prey at night\"},\"elements\":[{\"id\":\"7a350ee\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"70\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"ecd0cbe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"d684039\",\"elType\":\"widget\",\"settings\":{\"title\":\"THE STRANGERS PREY AT NIGHT\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"003eb99\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5fd9452\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"93ad64e\",\"elType\":\"widget\",\"settings\":{\"title\":\"GRAND FORMAT PHOTO-OP STANDEE\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"247aafb\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"_title\":\"Section - MARKETING AT ITS FINEST\"},\"elements\":[{\"id\":\"f002e93\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"d1321ed\",\"elType\":\"widget\",\"settings\":{\"title\":\"MARKETING AT ITS FINEST, TAILORED FOR SOCIAL MEDIA\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a16ef4e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>This theatrical display allows fans to take photos with Dollface, Pin-up Girl, the Man in the Mask and share their photos on social media.<\\/p>\",\"align\":\"center\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b58ab88\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"00ca412\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58},\"elements\":[{\"id\":\"032d3df\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/003.jpg\",\"id\":446},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"672c1f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42},\"elements\":[{\"id\":\"623f6d1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/26222472_170774200201231_6120473304701599744_n.jpg\",\"id\":447},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a641f07\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/VIDEO_COMING_SOON_01.jpg\",\"id\":449}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cf9e008\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"677b52c\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b747fda\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":700},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":900},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"_title\":\"our company bitches\"},\"elements\":[{\"id\":\"7eab781\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"43661634\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our company is a collective of amazing people striving to build delightful products.\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.4},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70cc6d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.<\\/p>\",\"align\":\"center\",\"text_color\":\"#686868\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"615dfb3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1000},\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"6414755f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3bb26eed\",\"elType\":\"widget\",\"settings\":{\"text\":\"Read More\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3},\"button_text_color\":\"#ffffff\",\"background_color\":\"rgba(0,0,0,0)\",\"hover_color\":\"#00ce1b\",\"button_hover_border_color\":\"#00ce1b\",\"hover_animation\":\"grow\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"123f6d1\",\"elType\":\"section\",\"settings\":{\"_title\":\"blank at bottom\"},\"elements\":[{\"id\":\"25fcf2e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"64f593f\",\"elType\":\"section\",\"settings\":{\"_title\":\"blank at bottom\"},\"elements\":[{\"id\":\"596f429\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(3372,507,'_elementor_edit_mode','builder'),(3373,507,'_elementor_elements_usage','a:9:{s:7:\"heading\";i:12;s:6:\"column\";i:21;s:7:\"section\";i:17;s:7:\"divider\";i:6;s:11:\"text-editor\";i:5;s:5:\"image\";i:9;s:5:\"video\";i:2;s:6:\"spacer\";i:2;s:6:\"button\";i:1;}'),(3374,507,'_elementor_css','a:5:{s:4:\"time\";i:1569111270;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:1:{i:0;s:0:\"\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(3377,508,'_elementor_version','2.6.8'),(3378,508,'_elementor_pro_version','2.6.5'),(3379,508,'_wp_page_template','default'),(3380,508,'_elementor_data','[{\"id\":\"55396f27\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":50,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Theatrical_Display_V003C.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"motion_fx_range\":\"viewport\",\"layout\":\"full_width\",\"column_position\":\"top\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"_title\":\"Section - INSIDIOUS HERO\",\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":1.9,\"sizes\":[]}},\"elements\":[{\"id\":\"905a97c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ad7f3f6\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"162\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2489c07\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"c0bbe21\",\"elType\":\"widget\",\"settings\":{\"title\":\"#WHAT\'S COOL\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"dc881ae\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"18630a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"870a9ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"INNOVATIONS FROM ONDISPLAY CREATIVE\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7df48509\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"_title\":\"Section - LIVING STANDEES\"},\"elements\":[{\"id\":\"1147078d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"23bbc68\",\"elType\":\"widget\",\"settings\":{\"title\":\"LIVING STANDEES HAUNTING THEATERS\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b40d155\",\"elType\":\"widget\",\"settings\":{\"title\":\"ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"700\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86cff8b\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"225341d\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS \\u2013 THE LAST KEY\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a680ae8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"be59fa3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e36fe5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"d4d2039\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2.jpg\",\"id\":88},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3c9b758\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"79e122a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2-1.jpg\",\"id\":87},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3dc9df5\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"start\":0},\"elements\":[],\"widgetType\":\"video\"},{\"id\":\"b61a90b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"8f63560\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"08c588a\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS CHAPTER 3\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0e612c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>OnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7e77f5a\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"gap\":\"wide\"},\"elements\":[{\"id\":\"7eb5a21\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.332},\"elements\":[{\"id\":\"ae25867\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/image-asset.jpeg\",\"id\":196},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"24c773b\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":58},\"elements\":[{\"id\":\"93ad602\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/130807026\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"cb5dad6\",\"elType\":\"section\",\"settings\":{\"_title\":\"Inner Sedtion\"},\"elements\":[{\"id\":\"25cd114\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_title\":\"virtual reality experience\"},\"elements\":[{\"id\":\"15643ab\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"8ec2d0f\",\"elType\":\"widget\",\"settings\":{\"title\":\"VIRTUAL REALITY EXPERIENCE\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4e004ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"SPIDER-MAN HOMECOMING DISPLAY\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"73a2406\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Submerse yourself in the world of your friendly neighborhood Spider-Man in this fun and thrilling VR Theatrical Display.\\u00a0\\u00a0Based on the all-new 2017 film, the Spider-Man Homecoming VR Experience is a first-person look through the eyes of Spidey himself.<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"04b03b4\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7f4ffcc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"7f85dc5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":76,\"_title\":\"spiderman homecoming\"},\"elements\":[{\"id\":\"9a5a392\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Spidey_Home_V4_002.jpg\",\"id\":230},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"css_filters_css_filter\":\"custom\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"c16541a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":24,\"_title\":\"spiderman 2 vertical pics\"},\"elements\":[{\"id\":\"95b0eed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/IMG_3834.jpg\",\"id\":231},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8ea51a8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/IMG_3788.jpg\",\"id\":233}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"12d34c8\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"00\",\"bottom\":\"00\",\"left\":\"00\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"95003e6\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":435,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/TheStrangers_V01.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":4.9,\"sizes\":[]},\"layout\":\"full_width\",\"column_position\":\"top\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":68}},\"_title\":\"Section - STRANGERS HERO\",\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_translateY_direction\":\"negative\",\"background_xpos\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"background_motion_fx_range\":\"viewport\"},\"elements\":[{\"id\":\"b6deb1a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_title\":\"strangers prey at night\"},\"elements\":[{\"id\":\"7a350ee\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"70\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"ecd0cbe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"d684039\",\"elType\":\"widget\",\"settings\":{\"title\":\"THE STRANGERS PREY AT NIGHT\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"003eb99\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5fd9452\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"93ad64e\",\"elType\":\"widget\",\"settings\":{\"title\":\"GRAND FORMAT PHOTO-OP STANDEE\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"247aafb\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"_title\":\"Section - MARKETING AT ITS FINEST\"},\"elements\":[{\"id\":\"f002e93\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"d1321ed\",\"elType\":\"widget\",\"settings\":{\"title\":\"MARKETING AT ITS FINEST, TAILORED FOR SOCIAL MEDIA\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a16ef4e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>This theatrical display allows fans to take photos with Dollface, Pin-up Girl, the Man in the Mask and share their photos on social media.<\\/p>\",\"align\":\"center\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b58ab88\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"00ca412\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58},\"elements\":[{\"id\":\"032d3df\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/003.jpg\",\"id\":446},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"672c1f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42},\"elements\":[{\"id\":\"623f6d1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/26222472_170774200201231_6120473304701599744_n.jpg\",\"id\":447},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a641f07\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/VIDEO_COMING_SOON_01.jpg\",\"id\":449}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cf9e008\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"677b52c\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b747fda\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":700},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":900},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"_title\":\"our company bitches\"},\"elements\":[{\"id\":\"7eab781\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"43661634\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our company is a collective of amazing people striving to build delightful products.\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.4},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70cc6d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.<\\/p>\",\"align\":\"center\",\"text_color\":\"#686868\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"615dfb3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1000},\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"6414755f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3bb26eed\",\"elType\":\"widget\",\"settings\":{\"text\":\"Read More\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3},\"button_text_color\":\"#ffffff\",\"background_color\":\"rgba(0,0,0,0)\",\"hover_color\":\"#00ce1b\",\"button_hover_border_color\":\"#00ce1b\",\"hover_animation\":\"grow\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"123f6d1\",\"elType\":\"section\",\"settings\":{\"_title\":\"blank at bottom\"},\"elements\":[{\"id\":\"25fcf2e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"64f593f\",\"elType\":\"section\",\"settings\":{\"_title\":\"blank at bottom\"},\"elements\":[{\"id\":\"596f429\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(3381,508,'_elementor_edit_mode','builder'),(3382,508,'_elementor_elements_usage','a:9:{s:7:\"heading\";i:12;s:6:\"column\";i:21;s:7:\"section\";i:17;s:7:\"divider\";i:6;s:11:\"text-editor\";i:5;s:5:\"image\";i:9;s:5:\"video\";i:2;s:6:\"spacer\";i:2;s:6:\"button\";i:1;}'),(3383,508,'_elementor_css','a:5:{s:4:\"time\";i:1569111339;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:1:{i:0;s:0:\"\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(3385,509,'_elementor_template_type','post'),(3386,509,'_elementor_version','2.6.8'),(3387,509,'_elementor_pro_version','2.6.5'),(3388,509,'_wp_page_template','default'),(3389,509,'_elementor_data','[{\"id\":\"55396f27\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":50,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Theatrical_Display_V003C.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"motion_fx_range\":\"viewport\",\"layout\":\"full_width\",\"column_position\":\"top\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"_title\":\"Section - INSIDIOUS HERO\",\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"background_motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_range\":\"viewport\"},\"elements\":[{\"id\":\"905a97c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ad7f3f6\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"162\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2489c07\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"c0bbe21\",\"elType\":\"widget\",\"settings\":{\"title\":\"#WHAT\'S COOL\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"dc881ae\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"18630a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"870a9ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"INNOVATIONS FROM ONDISPLAY CREATIVE\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7df48509\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"_title\":\"Section - LIVING STANDEES\"},\"elements\":[{\"id\":\"1147078d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"23bbc68\",\"elType\":\"widget\",\"settings\":{\"title\":\"LIVING STANDEES HAUNTING THEATERS\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b40d155\",\"elType\":\"widget\",\"settings\":{\"title\":\"ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"700\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86cff8b\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"225341d\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS \\u2013 THE LAST KEY\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a680ae8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"be59fa3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e36fe5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"d4d2039\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2.jpg\",\"id\":88},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3c9b758\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"79e122a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2-1.jpg\",\"id\":87},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3dc9df5\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"start\":0},\"elements\":[],\"widgetType\":\"video\"},{\"id\":\"b61a90b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"8f63560\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"08c588a\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS CHAPTER 3\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0e612c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>OnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7e77f5a\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"gap\":\"wide\"},\"elements\":[{\"id\":\"7eb5a21\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.332},\"elements\":[{\"id\":\"ae25867\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/image-asset.jpeg\",\"id\":196},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"24c773b\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":58},\"elements\":[{\"id\":\"93ad602\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/130807026\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"cb5dad6\",\"elType\":\"section\",\"settings\":{\"_title\":\"Inner Sedtion\"},\"elements\":[{\"id\":\"25cd114\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_title\":\"virtual reality experience\"},\"elements\":[{\"id\":\"15643ab\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"8ec2d0f\",\"elType\":\"widget\",\"settings\":{\"title\":\"VIRTUAL REALITY EXPERIENCE\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4e004ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"SPIDER-MAN HOMECOMING DISPLAY\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"73a2406\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Submerse yourself in the world of your friendly neighborhood Spider-Man in this fun and thrilling VR Theatrical Display.\\u00a0\\u00a0Based on the all-new 2017 film, the Spider-Man Homecoming VR Experience is a first-person look through the eyes of Spidey himself.<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"04b03b4\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7f4ffcc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"7f85dc5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":76,\"_title\":\"spiderman homecoming\"},\"elements\":[{\"id\":\"9a5a392\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Spidey_Home_V4_002.jpg\",\"id\":230},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"css_filters_css_filter\":\"custom\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"c16541a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":24,\"_title\":\"spiderman 2 vertical pics\"},\"elements\":[{\"id\":\"95b0eed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/IMG_3834.jpg\",\"id\":231},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8ea51a8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/IMG_3788.jpg\",\"id\":233}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"12d34c8\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"00\",\"bottom\":\"00\",\"left\":\"00\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"95003e6\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":435,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/TheStrangers_V01.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":4.9,\"sizes\":[]},\"layout\":\"full_width\",\"column_position\":\"top\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":68}},\"_title\":\"Section - STRANGERS HERO\",\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_translateY_direction\":\"negative\",\"background_xpos\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"background_motion_fx_range\":\"viewport\"},\"elements\":[{\"id\":\"b6deb1a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_title\":\"strangers prey at night\"},\"elements\":[{\"id\":\"7a350ee\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"70\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"ecd0cbe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"d684039\",\"elType\":\"widget\",\"settings\":{\"title\":\"THE STRANGERS PREY AT NIGHT\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"003eb99\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5fd9452\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"93ad64e\",\"elType\":\"widget\",\"settings\":{\"title\":\"GRAND FORMAT PHOTO-OP STANDEE\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"247aafb\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"_title\":\"Section - MARKETING AT ITS FINEST\"},\"elements\":[{\"id\":\"f002e93\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"d1321ed\",\"elType\":\"widget\",\"settings\":{\"title\":\"MARKETING AT ITS FINEST, TAILORED FOR SOCIAL MEDIA\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a16ef4e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>This theatrical display allows fans to take photos with Dollface, Pin-up Girl, the Man in the Mask and share their photos on social media.<\\/p>\",\"align\":\"center\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b58ab88\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"00ca412\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58},\"elements\":[{\"id\":\"032d3df\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/003.jpg\",\"id\":446},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"672c1f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42},\"elements\":[{\"id\":\"623f6d1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/26222472_170774200201231_6120473304701599744_n.jpg\",\"id\":447},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a641f07\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/VIDEO_COMING_SOON_01.jpg\",\"id\":449}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cf9e008\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"677b52c\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b747fda\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":700},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":900},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"_title\":\"our company bitches\"},\"elements\":[{\"id\":\"7eab781\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"43661634\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our company is a collective of amazing people striving to build delightful products.\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.4},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70cc6d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.<\\/p>\",\"align\":\"center\",\"text_color\":\"#686868\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"615dfb3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1000},\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"6414755f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3bb26eed\",\"elType\":\"widget\",\"settings\":{\"text\":\"Read More\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3},\"button_text_color\":\"#ffffff\",\"background_color\":\"rgba(0,0,0,0)\",\"hover_color\":\"#00ce1b\",\"button_hover_border_color\":\"#00ce1b\",\"hover_animation\":\"grow\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"123f6d1\",\"elType\":\"section\",\"settings\":{\"_title\":\"blank at bottom\"},\"elements\":[{\"id\":\"25fcf2e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"64f593f\",\"elType\":\"section\",\"settings\":{\"_title\":\"blank at bottom\"},\"elements\":[{\"id\":\"596f429\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(3390,509,'_elementor_edit_mode','builder'),(3391,509,'_elementor_elements_usage','a:9:{s:7:\"heading\";i:12;s:6:\"column\";i:21;s:7:\"section\";i:17;s:7:\"divider\";i:6;s:11:\"text-editor\";i:5;s:5:\"image\";i:9;s:5:\"video\";i:2;s:6:\"spacer\";i:2;s:6:\"button\";i:1;}'),(3392,509,'_elementor_css','a:5:{s:4:\"time\";i:1569111394;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:1:{i:0;s:0:\"\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(3394,510,'_edit_lock','1569208162:1'),(3395,510,'_edit_last','1'),(3396,510,'site-sidebar-layout','no-sidebar'),(3397,510,'site-content-layout','page-builder'),(3398,510,'theme-transparent-header-meta','default'),(3399,510,'_elementor_template_type','post'),(3400,510,'_elementor_version','2.6.8'),(3401,510,'_elementor_pro_version','2.6.5'),(3402,510,'_astra_content_layout_flag','disabled'),(3403,510,'site-post-title','disabled'),(3404,510,'ast-title-bar-display','disabled'),(3405,510,'ast-featured-img','disabled'),(3406,510,'_wp_page_template','default'),(3407,510,'_elementor_data','[{\"id\":\"55396f27\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":50,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Theatrical_Display_V003C.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"motion_fx_range\":\"viewport\",\"layout\":\"full_width\",\"column_position\":\"top\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"_title\":\"Section - INSIDIOUS HERO\",\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"background_motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_range\":\"viewport\"},\"elements\":[{\"id\":\"905a97c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ad7f3f6\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"162\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2489c07\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"c0bbe21\",\"elType\":\"widget\",\"settings\":{\"title\":\"#WHAT\'S COOL\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"dc881ae\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"18630a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"870a9ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"INNOVATIONS FROM ONDISPLAY CREATIVE\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7df48509\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"_title\":\"Section - LIVING STANDEES\"},\"elements\":[{\"id\":\"1147078d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"23bbc68\",\"elType\":\"widget\",\"settings\":{\"title\":\"LIVING STANDEES HAUNTING THEATERS\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b40d155\",\"elType\":\"widget\",\"settings\":{\"title\":\"ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"700\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86cff8b\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"225341d\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS \\u2013 THE LAST KEY\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a680ae8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"be59fa3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e36fe5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"d4d2039\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2.jpg\",\"id\":88},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3c9b758\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"79e122a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2-1.jpg\",\"id\":87},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3dc9df5\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"start\":0},\"elements\":[],\"widgetType\":\"video\"},{\"id\":\"b61a90b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"8f63560\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"08c588a\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS CHAPTER 3\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0e612c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>OnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7e77f5a\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"gap\":\"wide\"},\"elements\":[{\"id\":\"7eb5a21\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.332},\"elements\":[{\"id\":\"ae25867\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/image-asset.jpeg\",\"id\":196},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"24c773b\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":58},\"elements\":[{\"id\":\"93ad602\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/130807026\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"cb5dad6\",\"elType\":\"section\",\"settings\":{\"_title\":\"Inner Sedtion\"},\"elements\":[{\"id\":\"25cd114\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_title\":\"virtual reality experience\"},\"elements\":[{\"id\":\"15643ab\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"8ec2d0f\",\"elType\":\"widget\",\"settings\":{\"title\":\"VIRTUAL REALITY EXPERIENCE\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4e004ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"SPIDER-MAN HOMECOMING DISPLAY\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"73a2406\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Submerse yourself in the world of your friendly neighborhood Spider-Man in this fun and thrilling VR Theatrical Display.\\u00a0\\u00a0Based on the all-new 2017 film, the Spider-Man Homecoming VR Experience is a first-person look through the eyes of Spidey himself.<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"04b03b4\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7f4ffcc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"7f85dc5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":76,\"_title\":\"spiderman homecoming\"},\"elements\":[{\"id\":\"9a5a392\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Spidey_Home_V4_002.jpg\",\"id\":230},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"css_filters_css_filter\":\"custom\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"c16541a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":24,\"_title\":\"spiderman 2 vertical pics\"},\"elements\":[{\"id\":\"95b0eed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/IMG_3834.jpg\",\"id\":231},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8ea51a8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/IMG_3788.jpg\",\"id\":233}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"12d34c8\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"00\",\"bottom\":\"00\",\"left\":\"00\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"95003e6\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":435,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/TheStrangers_V01.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":4.9,\"sizes\":[]},\"layout\":\"full_width\",\"column_position\":\"top\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":68}},\"_title\":\"Section - STRANGERS HERO\",\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_translateY_direction\":\"negative\",\"background_xpos\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"background_motion_fx_range\":\"viewport\"},\"elements\":[{\"id\":\"b6deb1a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_title\":\"strangers prey at night\"},\"elements\":[{\"id\":\"7a350ee\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"70\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"ecd0cbe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"d684039\",\"elType\":\"widget\",\"settings\":{\"title\":\"THE STRANGERS PREY AT NIGHT\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"003eb99\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5fd9452\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"93ad64e\",\"elType\":\"widget\",\"settings\":{\"title\":\"GRAND FORMAT PHOTO-OP STANDEE\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"247aafb\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"_title\":\"Section - MARKETING AT ITS FINEST\"},\"elements\":[{\"id\":\"f002e93\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"d1321ed\",\"elType\":\"widget\",\"settings\":{\"title\":\"MARKETING AT ITS FINEST, TAILORED FOR SOCIAL MEDIA\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a16ef4e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>This theatrical display allows fans to take photos with Dollface, Pin-up Girl, the Man in the Mask and share their photos on social media.<\\/p>\",\"align\":\"center\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b58ab88\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"00ca412\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58},\"elements\":[{\"id\":\"032d3df\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/003.jpg\",\"id\":446},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"672c1f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42},\"elements\":[{\"id\":\"623f6d1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/26222472_170774200201231_6120473304701599744_n.jpg\",\"id\":447},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a641f07\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/VIDEO_COMING_SOON_01.jpg\",\"id\":449}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cf9e008\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"677b52c\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b747fda\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":700},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":900},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"_title\":\"our company bitches\"},\"elements\":[{\"id\":\"7eab781\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"43661634\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our company is a collective of amazing people striving to build delightful products.\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.4},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70cc6d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.<\\/p>\",\"align\":\"center\",\"text_color\":\"#686868\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"615dfb3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1000},\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"6414755f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3bb26eed\",\"elType\":\"widget\",\"settings\":{\"text\":\"Read More\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3},\"button_text_color\":\"#ffffff\",\"background_color\":\"rgba(0,0,0,0)\",\"hover_color\":\"#00ce1b\",\"button_hover_border_color\":\"#00ce1b\",\"hover_animation\":\"grow\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"123f6d1\",\"elType\":\"section\",\"settings\":{\"_title\":\"blank at bottom\"},\"elements\":[{\"id\":\"25fcf2e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"64f593f\",\"elType\":\"section\",\"settings\":{\"_title\":\"blank at bottom\"},\"elements\":[{\"id\":\"596f429\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(3408,510,'_elementor_edit_mode','builder'),(3409,510,'_elementor_elements_usage','a:9:{s:7:\"heading\";i:12;s:6:\"column\";i:21;s:7:\"section\";i:17;s:7:\"divider\";i:6;s:11:\"text-editor\";i:5;s:5:\"image\";i:9;s:5:\"video\";i:2;s:6:\"spacer\";i:2;s:6:\"button\";i:1;}'),(3410,510,'_oembed_716ef4742e78124fc3af93f9a5adead9','<iframe title=\"vimeo placeholder\" src=\"https://player.vimeo.com/video/235215203?dnt=1&amp;app_id=122963\" width=\"1200\" height=\"675\" frameborder=\"0\" allow=\"autoplay; fullscreen\" allowfullscreen></iframe>'),(3411,510,'_oembed_time_716ef4742e78124fc3af93f9a5adead9','1568415948'),(3412,510,'_oembed_e6d64697975779fabdc4f171c0e483ef','<iframe title=\"THE LAST KEYS\" src=\"https://player.vimeo.com/video/257088337?dnt=1&amp;app_id=122963\" width=\"1200\" height=\"675\" frameborder=\"0\" allow=\"autoplay; fullscreen\" allowfullscreen></iframe>'),(3413,510,'_oembed_time_e6d64697975779fabdc4f171c0e483ef','1568416156'),(3414,510,'_oembed_279ad5f32a0cbffcb010fb545e057300','<iframe title=\"THE LAST KEYS\" src=\"https://player.vimeo.com/video/257088337?dnt=1&amp;app_id=122963\" width=\"500\" height=\"281\" frameborder=\"0\" allow=\"autoplay; fullscreen\" allowfullscreen></iframe>'),(3415,510,'_oembed_time_279ad5f32a0cbffcb010fb545e057300','1568417794'),(3416,510,'_oembed_e13e37e158f1a96aa51308acb0afc6e0','<iframe title=\"INSIDIOUS 3 - LIVING STANDEE\" src=\"https://player.vimeo.com/video/130807026?dnt=1&amp;app_id=122963\" width=\"640\" height=\"362\" frameborder=\"0\" allow=\"autoplay; fullscreen\" allowfullscreen></iframe>'),(3417,510,'_oembed_time_e13e37e158f1a96aa51308acb0afc6e0','1568479205'),(3418,510,'_oembed_54d24d33cdea7e3fdd01357656b94060','<iframe title=\"INSIDIOUS 3 - LIVING STANDEE\" src=\"https://player.vimeo.com/video/130807026?dnt=1&amp;app_id=122963\" width=\"500\" height=\"283\" frameborder=\"0\" allow=\"autoplay; fullscreen\" allowfullscreen></iframe>'),(3419,510,'_oembed_time_54d24d33cdea7e3fdd01357656b94060','1568480131'),(3420,510,'_elementor_css','a:5:{s:4:\"time\";i:1569111506;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:1:{i:0;s:0:\"\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(3421,511,'_elementor_template_type','post'),(3422,511,'_elementor_version','2.6.8'),(3423,511,'_elementor_pro_version','2.6.5'),(3424,511,'_wp_page_template','default'),(3425,511,'_elementor_data','[{\"id\":\"55396f27\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":50,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Theatrical_Display_V003C.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"motion_fx_range\":\"viewport\",\"layout\":\"full_width\",\"column_position\":\"top\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"_title\":\"Section - INSIDIOUS HERO\",\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"background_motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_range\":\"viewport\"},\"elements\":[{\"id\":\"905a97c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ad7f3f6\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"162\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2489c07\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"c0bbe21\",\"elType\":\"widget\",\"settings\":{\"title\":\"#WHAT\'S COOL\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"dc881ae\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"18630a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"870a9ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"INNOVATIONS FROM ONDISPLAY CREATIVE\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7df48509\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"_title\":\"Section - LIVING STANDEES\"},\"elements\":[{\"id\":\"1147078d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"23bbc68\",\"elType\":\"widget\",\"settings\":{\"title\":\"LIVING STANDEES HAUNTING THEATERS\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b40d155\",\"elType\":\"widget\",\"settings\":{\"title\":\"ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"700\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86cff8b\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"225341d\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS \\u2013 THE LAST KEY\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a680ae8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"be59fa3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e36fe5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"d4d2039\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2.jpg\",\"id\":88},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3c9b758\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"79e122a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2-1.jpg\",\"id\":87},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3dc9df5\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"start\":0},\"elements\":[],\"widgetType\":\"video\"},{\"id\":\"b61a90b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"8f63560\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"08c588a\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS CHAPTER 3\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0e612c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>OnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7e77f5a\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"gap\":\"wide\"},\"elements\":[{\"id\":\"7eb5a21\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.332},\"elements\":[{\"id\":\"ae25867\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/image-asset.jpeg\",\"id\":196},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"24c773b\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":58},\"elements\":[{\"id\":\"93ad602\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/130807026\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"cb5dad6\",\"elType\":\"section\",\"settings\":{\"_title\":\"Inner Sedtion\"},\"elements\":[{\"id\":\"25cd114\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_title\":\"virtual reality experience\"},\"elements\":[{\"id\":\"15643ab\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"8ec2d0f\",\"elType\":\"widget\",\"settings\":{\"title\":\"VIRTUAL REALITY EXPERIENCE\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4e004ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"SPIDER-MAN HOMECOMING DISPLAY\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"73a2406\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Submerse yourself in the world of your friendly neighborhood Spider-Man in this fun and thrilling VR Theatrical Display.\\u00a0\\u00a0Based on the all-new 2017 film, the Spider-Man Homecoming VR Experience is a first-person look through the eyes of Spidey himself.<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"04b03b4\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7f4ffcc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"7f85dc5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":76,\"_title\":\"spiderman homecoming\"},\"elements\":[{\"id\":\"9a5a392\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Spidey_Home_V4_002.jpg\",\"id\":230},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"css_filters_css_filter\":\"custom\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"c16541a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":24,\"_title\":\"spiderman 2 vertical pics\"},\"elements\":[{\"id\":\"95b0eed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/IMG_3834.jpg\",\"id\":231},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8ea51a8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/IMG_3788.jpg\",\"id\":233}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"12d34c8\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"00\",\"bottom\":\"00\",\"left\":\"00\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"95003e6\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":435,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/TheStrangers_V01.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":4.9,\"sizes\":[]},\"layout\":\"full_width\",\"column_position\":\"top\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":68}},\"_title\":\"Section - STRANGERS HERO\",\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_translateY_direction\":\"negative\",\"background_xpos\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"background_motion_fx_range\":\"viewport\"},\"elements\":[{\"id\":\"b6deb1a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_title\":\"strangers prey at night\"},\"elements\":[{\"id\":\"7a350ee\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"70\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"ecd0cbe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"d684039\",\"elType\":\"widget\",\"settings\":{\"title\":\"THE STRANGERS PREY AT NIGHT\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"003eb99\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5fd9452\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"93ad64e\",\"elType\":\"widget\",\"settings\":{\"title\":\"GRAND FORMAT PHOTO-OP STANDEE\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"247aafb\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"_title\":\"Section - MARKETING AT ITS FINEST\"},\"elements\":[{\"id\":\"f002e93\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"d1321ed\",\"elType\":\"widget\",\"settings\":{\"title\":\"MARKETING AT ITS FINEST, TAILORED FOR SOCIAL MEDIA\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a16ef4e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>This theatrical display allows fans to take photos with Dollface, Pin-up Girl, the Man in the Mask and share their photos on social media.<\\/p>\",\"align\":\"center\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b58ab88\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"00ca412\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58},\"elements\":[{\"id\":\"032d3df\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/003.jpg\",\"id\":446},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"672c1f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42},\"elements\":[{\"id\":\"623f6d1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/26222472_170774200201231_6120473304701599744_n.jpg\",\"id\":447},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a641f07\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/VIDEO_COMING_SOON_01.jpg\",\"id\":449}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cf9e008\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"677b52c\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b747fda\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":700},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":900},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"_title\":\"our company bitches\"},\"elements\":[{\"id\":\"7eab781\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"43661634\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our company is a collective of amazing people striving to build delightful products.\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.4},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70cc6d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.<\\/p>\",\"align\":\"center\",\"text_color\":\"#686868\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"615dfb3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1000},\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"6414755f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3bb26eed\",\"elType\":\"widget\",\"settings\":{\"text\":\"Read More\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3},\"button_text_color\":\"#ffffff\",\"background_color\":\"rgba(0,0,0,0)\",\"hover_color\":\"#00ce1b\",\"button_hover_border_color\":\"#00ce1b\",\"hover_animation\":\"grow\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"123f6d1\",\"elType\":\"section\",\"settings\":{\"_title\":\"blank at bottom\"},\"elements\":[{\"id\":\"25fcf2e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"64f593f\",\"elType\":\"section\",\"settings\":{\"_title\":\"blank at bottom\"},\"elements\":[{\"id\":\"596f429\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(3426,511,'_elementor_edit_mode','builder'),(3427,511,'_elementor_elements_usage','a:9:{s:7:\"heading\";i:12;s:6:\"column\";i:21;s:7:\"section\";i:17;s:7:\"divider\";i:6;s:11:\"text-editor\";i:5;s:5:\"image\";i:9;s:5:\"video\";i:2;s:6:\"spacer\";i:2;s:6:\"button\";i:1;}'),(3428,511,'_elementor_css','a:5:{s:4:\"time\";i:1569111506;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:1:{i:0;s:0:\"\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(3429,512,'_elementor_template_type','post'),(3430,512,'_elementor_version','2.6.8'),(3431,512,'_elementor_pro_version','2.6.5'),(3432,512,'_wp_page_template','default'),(3433,512,'_elementor_data','[{\"id\":\"55396f27\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":50,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Theatrical_Display_V003C.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"motion_fx_range\":\"viewport\",\"layout\":\"full_width\",\"column_position\":\"top\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"_title\":\"Section - INSIDIOUS HERO\",\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"background_motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_range\":\"viewport\"},\"elements\":[{\"id\":\"905a97c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ad7f3f6\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"162\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2489c07\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"c0bbe21\",\"elType\":\"widget\",\"settings\":{\"title\":\"#WHAT\'S COOL\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"dc881ae\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"18630a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"870a9ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"INNOVATIONS FROM ONDISPLAY CREATIVE\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7df48509\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"_title\":\"Section - LIVING STANDEES\"},\"elements\":[{\"id\":\"1147078d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"23bbc68\",\"elType\":\"widget\",\"settings\":{\"title\":\"LIVING STANDEES HAUNTING THEATERS\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b40d155\",\"elType\":\"widget\",\"settings\":{\"title\":\"ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"700\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86cff8b\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"225341d\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS \\u2013 THE LAST KEY\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a680ae8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"be59fa3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e36fe5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"d4d2039\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2.jpg\",\"id\":88},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3c9b758\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"79e122a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2-1.jpg\",\"id\":87},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3dc9df5\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"start\":0},\"elements\":[],\"widgetType\":\"video\"},{\"id\":\"b61a90b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"8f63560\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"08c588a\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS CHAPTER 3\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0e612c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>OnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7e77f5a\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"gap\":\"wide\"},\"elements\":[{\"id\":\"7eb5a21\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.332},\"elements\":[{\"id\":\"ae25867\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/image-asset.jpeg\",\"id\":196},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"24c773b\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":58},\"elements\":[{\"id\":\"93ad602\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/130807026\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"cb5dad6\",\"elType\":\"section\",\"settings\":{\"_title\":\"Inner Sedtion\"},\"elements\":[{\"id\":\"25cd114\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_title\":\"virtual reality experience\"},\"elements\":[{\"id\":\"15643ab\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"8ec2d0f\",\"elType\":\"widget\",\"settings\":{\"title\":\"VIRTUAL REALITY EXPERIENCE\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4e004ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"SPIDER-MAN HOMECOMING DISPLAY\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"73a2406\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Submerse yourself in the world of your friendly neighborhood Spider-Man in this fun and thrilling VR Theatrical Display.\\u00a0\\u00a0Based on the all-new 2017 film, the Spider-Man Homecoming VR Experience is a first-person look through the eyes of Spidey himself.<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"04b03b4\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7f4ffcc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"7f85dc5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":76,\"_title\":\"spiderman homecoming\"},\"elements\":[{\"id\":\"9a5a392\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Spidey_Home_V4_002.jpg\",\"id\":230},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"css_filters_css_filter\":\"custom\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"c16541a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":24,\"_title\":\"spiderman 2 vertical pics\"},\"elements\":[{\"id\":\"95b0eed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/IMG_3834.jpg\",\"id\":231},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8ea51a8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/IMG_3788.jpg\",\"id\":233}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"12d34c8\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"00\",\"bottom\":\"00\",\"left\":\"00\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"95003e6\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":435,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/TheStrangers_V01.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":4.9,\"sizes\":[]},\"layout\":\"full_width\",\"column_position\":\"top\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":68}},\"_title\":\"Section - STRANGERS HERO\",\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_translateY_direction\":\"negative\",\"background_xpos\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"background_motion_fx_range\":\"viewport\"},\"elements\":[{\"id\":\"b6deb1a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_title\":\"strangers prey at night\"},\"elements\":[{\"id\":\"7a350ee\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"70\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"ecd0cbe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"d684039\",\"elType\":\"widget\",\"settings\":{\"title\":\"THE STRANGERS PREY AT NIGHT\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"003eb99\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5fd9452\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"93ad64e\",\"elType\":\"widget\",\"settings\":{\"title\":\"GRAND FORMAT PHOTO-OP STANDEE\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"247aafb\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"_title\":\"Section - MARKETING AT ITS FINEST\"},\"elements\":[{\"id\":\"f002e93\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"d1321ed\",\"elType\":\"widget\",\"settings\":{\"title\":\"MARKETING AT ITS FINEST, TAILORED FOR SOCIAL MEDIA\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a16ef4e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>This theatrical display allows fans to take photos with Dollface, Pin-up Girl, the Man in the Mask and share their photos on social media.<\\/p>\",\"align\":\"center\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b58ab88\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"00ca412\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58},\"elements\":[{\"id\":\"032d3df\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/003.jpg\",\"id\":446},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"672c1f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42},\"elements\":[{\"id\":\"623f6d1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/26222472_170774200201231_6120473304701599744_n.jpg\",\"id\":447},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a641f07\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/VIDEO_COMING_SOON_01.jpg\",\"id\":449}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cf9e008\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"677b52c\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b747fda\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":700},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":900},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"_title\":\"our company bitches\"},\"elements\":[{\"id\":\"7eab781\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"43661634\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our company is a collective of amazing people striving to build delightful products.\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.4},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70cc6d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.<\\/p>\",\"align\":\"center\",\"text_color\":\"#686868\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"615dfb3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1000},\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"6414755f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3bb26eed\",\"elType\":\"widget\",\"settings\":{\"text\":\"Read More\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3},\"button_text_color\":\"#ffffff\",\"background_color\":\"rgba(0,0,0,0)\",\"hover_color\":\"#00ce1b\",\"button_hover_border_color\":\"#00ce1b\",\"hover_animation\":\"grow\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"123f6d1\",\"elType\":\"section\",\"settings\":{\"_title\":\"blank at bottom\"},\"elements\":[{\"id\":\"25fcf2e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"64f593f\",\"elType\":\"section\",\"settings\":{\"_title\":\"blank at bottom\"},\"elements\":[{\"id\":\"596f429\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(3434,512,'_elementor_edit_mode','builder'),(3435,512,'_elementor_elements_usage','a:9:{s:7:\"heading\";i:12;s:6:\"column\";i:21;s:7:\"section\";i:17;s:7:\"divider\";i:6;s:11:\"text-editor\";i:5;s:5:\"image\";i:9;s:5:\"video\";i:2;s:6:\"spacer\";i:2;s:6:\"button\";i:1;}'),(3436,512,'_elementor_css','a:5:{s:4:\"time\";i:1569111506;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:1:{i:0;s:0:\"\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(3462,516,'_elementor_elements_usage','a:9:{s:7:\"heading\";i:15;s:6:\"column\";i:27;s:7:\"section\";i:22;s:7:\"divider\";i:7;s:11:\"text-editor\";i:6;s:5:\"image\";i:12;s:5:\"video\";i:2;s:6:\"spacer\";i:3;s:6:\"button\";i:1;}'),(3461,516,'_elementor_edit_mode','builder'),(3456,516,'_elementor_template_type','post'),(3457,516,'_elementor_version','2.6.8'),(3458,516,'_elementor_pro_version','2.6.5'),(3459,516,'_wp_page_template','default'),(3460,516,'_elementor_data','[{\"id\":\"55396f27\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":50,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Theatrical_Display_V003C.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"motion_fx_range\":\"viewport\",\"layout\":\"full_width\",\"column_position\":\"top\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"_title\":\"Section - INSIDIOUS HERO\",\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"background_motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_range\":\"viewport\"},\"elements\":[{\"id\":\"905a97c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ad7f3f6\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"162\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2489c07\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"c0bbe21\",\"elType\":\"widget\",\"settings\":{\"title\":\"#WHAT\'S COOL\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"dc881ae\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"18630a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"870a9ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"INNOVATIONS FROM ONDISPLAY CREATIVE\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7df48509\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"_title\":\"Section - LIVING STANDEES\"},\"elements\":[{\"id\":\"1147078d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"23bbc68\",\"elType\":\"widget\",\"settings\":{\"title\":\"LIVING STANDEES HAUNTING THEATERS\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b40d155\",\"elType\":\"widget\",\"settings\":{\"title\":\"ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"700\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86cff8b\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"225341d\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS \\u2013 THE LAST KEY\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a680ae8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"be59fa3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e36fe5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"d4d2039\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2.jpg\",\"id\":88},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3c9b758\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"79e122a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2-1.jpg\",\"id\":87},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3dc9df5\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"start\":0},\"elements\":[],\"widgetType\":\"video\"},{\"id\":\"b61a90b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"8f63560\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"08c588a\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS CHAPTER 3\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0e612c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>OnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7e77f5a\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"gap\":\"wide\"},\"elements\":[{\"id\":\"7eb5a21\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.332},\"elements\":[{\"id\":\"ae25867\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/image-asset.jpeg\",\"id\":196},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"24c773b\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":58},\"elements\":[{\"id\":\"93ad602\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/130807026\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"cb5dad6\",\"elType\":\"section\",\"settings\":{\"_title\":\"Inner Sedtion\"},\"elements\":[{\"id\":\"25cd114\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_title\":\"virtual reality experience\"},\"elements\":[{\"id\":\"15643ab\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"8ec2d0f\",\"elType\":\"widget\",\"settings\":{\"title\":\"VIRTUAL REALITY EXPERIENCE\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4e004ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"SPIDER-MAN HOMECOMING DISPLAY\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"73a2406\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Submerse yourself in the world of your friendly neighborhood Spider-Man in this fun and thrilling VR Theatrical Display.\\u00a0\\u00a0Based on the all-new 2017 film, the Spider-Man Homecoming VR Experience is a first-person look through the eyes of Spidey himself.<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"04b03b4\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7f4ffcc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"7f85dc5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":76,\"_title\":\"spiderman homecoming\"},\"elements\":[{\"id\":\"9a5a392\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Spidey_Home_V4_002.jpg\",\"id\":230},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"css_filters_css_filter\":\"custom\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"c16541a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":24,\"_title\":\"spiderman 2 vertical pics\"},\"elements\":[{\"id\":\"95b0eed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/IMG_3834.jpg\",\"id\":231},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8ea51a8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/IMG_3788.jpg\",\"id\":233}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"12d34c8\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"00\",\"bottom\":\"00\",\"left\":\"00\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"95003e6\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":435,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/TheStrangers_V01.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":4.9,\"sizes\":[]},\"layout\":\"full_width\",\"column_position\":\"top\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":68}},\"_title\":\"Section - STRANGERS HERO\",\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_translateY_direction\":\"negative\",\"background_xpos\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"background_motion_fx_range\":\"viewport\"},\"elements\":[{\"id\":\"b6deb1a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_title\":\"strangers prey at night\"},\"elements\":[{\"id\":\"7a350ee\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"70\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"ecd0cbe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"d684039\",\"elType\":\"widget\",\"settings\":{\"title\":\"THE STRANGERS PREY AT NIGHT\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"003eb99\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5fd9452\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"93ad64e\",\"elType\":\"widget\",\"settings\":{\"title\":\"GRAND FORMAT PHOTO-OP STANDEE\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"247aafb\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"_title\":\"Section - MARKETING AT ITS FINEST\"},\"elements\":[{\"id\":\"f002e93\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"d1321ed\",\"elType\":\"widget\",\"settings\":{\"title\":\"MARKETING AT ITS FINEST, TAILORED FOR SOCIAL MEDIA\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a16ef4e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>This theatrical display allows fans to take photos with Dollface, Pin-up Girl, the Man in the Mask and share their photos on social media.<\\/p>\",\"align\":\"center\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b58ab88\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"00ca412\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58},\"elements\":[{\"id\":\"032d3df\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/003.jpg\",\"id\":446},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"672c1f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42},\"elements\":[{\"id\":\"623f6d1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/26222472_170774200201231_6120473304701599744_n.jpg\",\"id\":447},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a641f07\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/VIDEO_COMING_SOON_01.jpg\",\"id\":449}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cf9e008\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"677b52c\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"31ae5e7\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":515,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/FREEBIRDS_V1B.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":4.9,\"sizes\":[]},\"layout\":\"full_width\",\"column_position\":\"top\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":68}},\"_title\":\"Section - THEATRICAL HERO\",\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_translateY_direction\":\"negative\",\"background_xpos\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"background_motion_fx_range\":\"viewport\"},\"elements\":[{\"id\":\"e45e9b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_title\":\"strangers prey at night\"},\"elements\":[{\"id\":\"68717d0\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"70\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"144d01b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"27b94bb\",\"elType\":\"widget\",\"settings\":{\"title\":\"THEATRICAL DISPLAYS\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"672b55e\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"16fbcce\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"ab6e6b7\",\"elType\":\"widget\",\"settings\":{\"title\":\"FREE BIRDS \\u2013 RESIN DISPLAY\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"42b76c7\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"_title\":\"Section - THEATRICAL DISPLAYS\"},\"elements\":[{\"id\":\"9fef846\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"9e16c55\",\"elType\":\"widget\",\"settings\":{\"title\":\"THEATRICAL DISPLAYS\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4a9d8d2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>OnDisplay Creative takes pride in its long history of leading the Entertainment Industry in creating and producing eye catching displays.<\\/p>\",\"align\":\"center\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"73fb96b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"b8657c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58},\"elements\":[{\"id\":\"e7a3880\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/003.jpg\",\"id\":446},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ef020c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42},\"elements\":[{\"id\":\"031897b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/26222472_170774200201231_6120473304701599744_n.jpg\",\"id\":447},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"d1457e5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/VIDEO_COMING_SOON_01.jpg\",\"id\":449}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6bf6bab\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"d0a8d7e\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b747fda\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":700},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":900},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"_title\":\"our company bitches\"},\"elements\":[{\"id\":\"7eab781\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"43661634\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our company is a collective of amazing people striving to build delightful products.\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.4},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70cc6d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.<\\/p>\",\"align\":\"center\",\"text_color\":\"#686868\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"615dfb3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1000},\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"6414755f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3bb26eed\",\"elType\":\"widget\",\"settings\":{\"text\":\"Read More\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3},\"button_text_color\":\"#ffffff\",\"background_color\":\"rgba(0,0,0,0)\",\"hover_color\":\"#00ce1b\",\"button_hover_border_color\":\"#00ce1b\",\"hover_animation\":\"grow\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"123f6d1\",\"elType\":\"section\",\"settings\":{\"_title\":\"blank at bottom\"},\"elements\":[{\"id\":\"25fcf2e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"64f593f\",\"elType\":\"section\",\"settings\":{\"_title\":\"blank at bottom\"},\"elements\":[{\"id\":\"596f429\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(3481,522,'_wp_page_template','default'),(3482,522,'_elementor_data','[{\"id\":\"55396f27\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":50,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Theatrical_Display_V003C.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"motion_fx_range\":\"viewport\",\"layout\":\"full_width\",\"column_position\":\"top\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"_title\":\"Section - INSIDIOUS HERO\",\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"background_motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_range\":\"viewport\"},\"elements\":[{\"id\":\"905a97c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ad7f3f6\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"162\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2489c07\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"c0bbe21\",\"elType\":\"widget\",\"settings\":{\"title\":\"#WHAT\'S COOL\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"dc881ae\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"18630a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"870a9ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"INNOVATIONS FROM ONDISPLAY CREATIVE\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7df48509\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"_title\":\"Section - LIVING STANDEES\"},\"elements\":[{\"id\":\"1147078d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"23bbc68\",\"elType\":\"widget\",\"settings\":{\"title\":\"LIVING STANDEES HAUNTING THEATERS\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b40d155\",\"elType\":\"widget\",\"settings\":{\"title\":\"ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"700\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86cff8b\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"225341d\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS \\u2013 THE LAST KEY\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a680ae8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"be59fa3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e36fe5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"d4d2039\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2.jpg\",\"id\":88},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3c9b758\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"79e122a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2-1.jpg\",\"id\":87},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3dc9df5\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"start\":0},\"elements\":[],\"widgetType\":\"video\"},{\"id\":\"b61a90b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"8f63560\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"08c588a\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS CHAPTER 3\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0e612c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>OnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7e77f5a\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"gap\":\"wide\"},\"elements\":[{\"id\":\"7eb5a21\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.332},\"elements\":[{\"id\":\"ae25867\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/image-asset.jpeg\",\"id\":196},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"24c773b\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":58},\"elements\":[{\"id\":\"93ad602\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/130807026\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"cb5dad6\",\"elType\":\"section\",\"settings\":{\"_title\":\"Inner Sedtion\"},\"elements\":[{\"id\":\"25cd114\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_title\":\"virtual reality experience\"},\"elements\":[{\"id\":\"15643ab\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"8ec2d0f\",\"elType\":\"widget\",\"settings\":{\"title\":\"VIRTUAL REALITY EXPERIENCE\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4e004ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"SPIDER-MAN HOMECOMING DISPLAY\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"73a2406\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Submerse yourself in the world of your friendly neighborhood Spider-Man in this fun and thrilling VR Theatrical Display.\\u00a0\\u00a0Based on the all-new 2017 film, the Spider-Man Homecoming VR Experience is a first-person look through the eyes of Spidey himself.<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"04b03b4\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7f4ffcc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"7f85dc5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":76,\"_title\":\"spiderman homecoming\"},\"elements\":[{\"id\":\"9a5a392\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Spidey_Home_V4_002.jpg\",\"id\":230},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"css_filters_css_filter\":\"custom\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"c16541a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":24,\"_title\":\"spiderman 2 vertical pics\"},\"elements\":[{\"id\":\"95b0eed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/IMG_3834.jpg\",\"id\":231},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8ea51a8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/IMG_3788.jpg\",\"id\":233}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"12d34c8\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"00\",\"bottom\":\"00\",\"left\":\"00\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"95003e6\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":435,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/TheStrangers_V01.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":4.9,\"sizes\":[]},\"layout\":\"full_width\",\"column_position\":\"top\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":68}},\"_title\":\"Section - STRANGERS HERO\",\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_translateY_direction\":\"negative\",\"background_xpos\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"background_motion_fx_range\":\"viewport\"},\"elements\":[{\"id\":\"b6deb1a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_title\":\"strangers prey at night\"},\"elements\":[{\"id\":\"7a350ee\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"70\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"ecd0cbe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"d684039\",\"elType\":\"widget\",\"settings\":{\"title\":\"THE STRANGERS PREY AT NIGHT\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"003eb99\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5fd9452\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"93ad64e\",\"elType\":\"widget\",\"settings\":{\"title\":\"GRAND FORMAT PHOTO-OP STANDEE\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"247aafb\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"_title\":\"Section - MARKETING AT ITS FINEST\"},\"elements\":[{\"id\":\"f002e93\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"d1321ed\",\"elType\":\"widget\",\"settings\":{\"title\":\"MARKETING AT ITS FINEST, TAILORED FOR SOCIAL MEDIA\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a16ef4e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>This theatrical display allows fans to take photos with Dollface, Pin-up Girl, the Man in the Mask and share their photos on social media.<\\/p>\",\"align\":\"center\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b58ab88\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"00ca412\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58},\"elements\":[{\"id\":\"032d3df\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/003.jpg\",\"id\":446},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"672c1f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42},\"elements\":[{\"id\":\"623f6d1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/26222472_170774200201231_6120473304701599744_n.jpg\",\"id\":447},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a641f07\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/VIDEO_COMING_SOON_01.jpg\",\"id\":449}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cf9e008\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"677b52c\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"31ae5e7\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":515,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/FREEBIRDS_V1B.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":4.9,\"sizes\":[]},\"layout\":\"full_width\",\"column_position\":\"top\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":68}},\"_title\":\"Section - THEATRICAL HERO\",\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_translateY_direction\":\"negative\",\"background_xpos\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"background_motion_fx_range\":\"viewport\"},\"elements\":[{\"id\":\"e45e9b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_title\":\"strangers prey at night\"},\"elements\":[{\"id\":\"68717d0\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"70\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"144d01b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"27b94bb\",\"elType\":\"widget\",\"settings\":{\"title\":\"THEATRICAL DISPLAYS\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"672b55e\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"16fbcce\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"ab6e6b7\",\"elType\":\"widget\",\"settings\":{\"title\":\"FREE BIRDS \\u2013 RESIN DISPLAY\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"42b76c7\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"_title\":\"Section - THEATRICAL DISPLAYS\"},\"elements\":[{\"id\":\"9fef846\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"9e16c55\",\"elType\":\"widget\",\"settings\":{\"title\":\"THEATRICAL DISPLAYS\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4a9d8d2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>OnDisplay Creative takes pride in its long history of leading the Entertainment Industry in creating and producing eye catching displays.<\\/p>\",\"align\":\"center\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"263fb63\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"42ecb50\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":68,\"_title\":\"spiderman homecoming\"},\"elements\":[{\"id\":\"fbd93cf\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/47Meters_02.jpg\",\"id\":518},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"align\":\"center\",\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2a3ff66\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":32,\"_title\":\"spiderman 2 vertical pics\"},\"elements\":[{\"id\":\"afb6c5e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/DFCV6gdXgAAoGDM.jpeg\",\"id\":520},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ad92bda\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/DEI2HYnW0AEERBl.jpeg\",\"id\":519}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"946f91d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"slideshow\",\"slides\":[{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Spidey_Home_V3.jpg\",\"id\":521},\"_id\":\"fb38f36\",\"type\":\"image\",\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"_id\":\"a26cba3\",\"type\":\"image\",\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"_id\":\"c815938\",\"type\":\"image\",\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"_id\":\"4e65d42\",\"type\":\"image\",\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"_id\":\"03a5179\",\"type\":\"image\",\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}}]},\"elements\":[],\"widgetType\":\"media-carousel\"},{\"id\":\"6bf6bab\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"d0a8d7e\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b747fda\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":700},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":900},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"_title\":\"our company bitches\"},\"elements\":[{\"id\":\"7eab781\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"43661634\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our company is a collective of amazing people striving to build delightful products.\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.4},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70cc6d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.<\\/p>\",\"align\":\"center\",\"text_color\":\"#686868\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"615dfb3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1000},\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"6414755f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3bb26eed\",\"elType\":\"widget\",\"settings\":{\"text\":\"Read More\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3},\"button_text_color\":\"#ffffff\",\"background_color\":\"rgba(0,0,0,0)\",\"hover_color\":\"#00ce1b\",\"button_hover_border_color\":\"#00ce1b\",\"hover_animation\":\"grow\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"123f6d1\",\"elType\":\"section\",\"settings\":{\"_title\":\"blank at bottom\"},\"elements\":[{\"id\":\"25fcf2e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"64f593f\",\"elType\":\"section\",\"settings\":{\"_title\":\"blank at bottom\"},\"elements\":[{\"id\":\"596f429\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(3470,518,'_wp_attached_file','2019/09/47Meters_02.jpg'),(3471,518,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2500;s:6:\"height\";i:1736;s:4:\"file\";s:23:\"2019/09/47Meters_02.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"47Meters_02-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"47Meters_02-300x208.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:208;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:23:\"47Meters_02-768x533.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:533;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:24:\"47Meters_02-1024x711.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:711;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3472,519,'_wp_attached_file','2019/09/DEI2HYnW0AEERBl.jpeg'),(3473,519,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:750;s:6:\"height\";i:1000;s:4:\"file\";s:28:\"2019/09/DEI2HYnW0AEERBl.jpeg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"DEI2HYnW0AEERBl-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"DEI2HYnW0AEERBl-225x300.jpeg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3474,520,'_wp_attached_file','2019/09/DFCV6gdXgAAoGDM.jpeg'),(3475,520,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:750;s:6:\"height\";i:1000;s:4:\"file\";s:28:\"2019/09/DFCV6gdXgAAoGDM.jpeg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"DFCV6gdXgAAoGDM-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"DFCV6gdXgAAoGDM-225x300.jpeg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3478,522,'_elementor_template_type','post'),(3479,522,'_elementor_version','2.6.8'),(3480,522,'_elementor_pro_version','2.6.5'),(3476,521,'_wp_attached_file','2019/09/Spidey_Home_V3.jpg'),(3477,521,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2500;s:6:\"height\";i:1736;s:4:\"file\";s:26:\"2019/09/Spidey_Home_V3.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"Spidey_Home_V3-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"Spidey_Home_V3-300x208.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:208;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:26:\"Spidey_Home_V3-768x533.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:533;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:27:\"Spidey_Home_V3-1024x711.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:711;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3483,522,'_elementor_edit_mode','builder'),(3484,522,'_elementor_elements_usage','a:10:{s:7:\"heading\";i:15;s:6:\"column\";i:27;s:7:\"section\";i:22;s:7:\"divider\";i:7;s:11:\"text-editor\";i:6;s:5:\"image\";i:12;s:5:\"video\";i:2;s:6:\"spacer\";i:3;s:14:\"media-carousel\";i:1;s:6:\"button\";i:1;}'),(3512,534,'_elementor_template_type','post'),(3513,534,'_elementor_version','2.6.8'),(3514,534,'_elementor_pro_version','2.6.5'),(3515,534,'_wp_page_template','default'),(3516,534,'_elementor_data','[{\"id\":\"55396f27\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":50,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Theatrical_Display_V003C.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"motion_fx_range\":\"viewport\",\"layout\":\"full_width\",\"column_position\":\"top\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"_title\":\"Section - INSIDIOUS HERO\",\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"background_motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_range\":\"viewport\"},\"elements\":[{\"id\":\"905a97c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ad7f3f6\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"162\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2489c07\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"c0bbe21\",\"elType\":\"widget\",\"settings\":{\"title\":\"#WHAT\'S COOL\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"dc881ae\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"18630a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"870a9ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"INNOVATIONS FROM ONDISPLAY CREATIVE\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7df48509\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"_title\":\"Section - LIVING STANDEES\"},\"elements\":[{\"id\":\"1147078d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"23bbc68\",\"elType\":\"widget\",\"settings\":{\"title\":\"LIVING STANDEES HAUNTING THEATERS\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b40d155\",\"elType\":\"widget\",\"settings\":{\"title\":\"ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"700\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86cff8b\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"225341d\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS \\u2013 THE LAST KEY\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a680ae8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"be59fa3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e36fe5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"d4d2039\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2.jpg\",\"id\":88},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3c9b758\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"79e122a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2-1.jpg\",\"id\":87},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3dc9df5\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"start\":0},\"elements\":[],\"widgetType\":\"video\"},{\"id\":\"b61a90b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"8f63560\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"08c588a\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS CHAPTER 3\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0e612c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>OnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7e77f5a\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"gap\":\"wide\"},\"elements\":[{\"id\":\"7eb5a21\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.332},\"elements\":[{\"id\":\"ae25867\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/image-asset.jpeg\",\"id\":196},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"24c773b\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":58},\"elements\":[{\"id\":\"93ad602\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/130807026\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"cb5dad6\",\"elType\":\"section\",\"settings\":{\"_title\":\"Inner Sedtion\"},\"elements\":[{\"id\":\"25cd114\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_title\":\"virtual reality experience\"},\"elements\":[{\"id\":\"15643ab\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"8ec2d0f\",\"elType\":\"widget\",\"settings\":{\"title\":\"VIRTUAL REALITY EXPERIENCE\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4e004ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"SPIDER-MAN HOMECOMING DISPLAY\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"73a2406\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Submerse yourself in the world of your friendly neighborhood Spider-Man in this fun and thrilling VR Theatrical Display.\\u00a0\\u00a0Based on the all-new 2017 film, the Spider-Man Homecoming VR Experience is a first-person look through the eyes of Spidey himself.<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"04b03b4\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7f4ffcc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"7f85dc5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":76,\"_title\":\"spiderman homecoming\"},\"elements\":[{\"id\":\"9a5a392\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Spidey_Home_V4_002.jpg\",\"id\":230},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"css_filters_css_filter\":\"custom\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"c16541a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":24,\"_title\":\"spiderman 2 vertical pics\"},\"elements\":[{\"id\":\"95b0eed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/IMG_3834.jpg\",\"id\":231},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8ea51a8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/IMG_3788.jpg\",\"id\":233}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"12d34c8\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"00\",\"bottom\":\"00\",\"left\":\"00\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"95003e6\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":435,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/TheStrangers_V01.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":4.9,\"sizes\":[]},\"layout\":\"full_width\",\"column_position\":\"top\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":68}},\"_title\":\"Section - STRANGERS HERO\",\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_translateY_direction\":\"negative\",\"background_xpos\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"background_motion_fx_range\":\"viewport\"},\"elements\":[{\"id\":\"b6deb1a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_title\":\"strangers prey at night\"},\"elements\":[{\"id\":\"7a350ee\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"70\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"ecd0cbe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"d684039\",\"elType\":\"widget\",\"settings\":{\"title\":\"THE STRANGERS PREY AT NIGHT\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"003eb99\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5fd9452\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"93ad64e\",\"elType\":\"widget\",\"settings\":{\"title\":\"GRAND FORMAT PHOTO-OP STANDEE\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"247aafb\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"_title\":\"Section - MARKETING AT ITS FINEST\"},\"elements\":[{\"id\":\"f002e93\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"d1321ed\",\"elType\":\"widget\",\"settings\":{\"title\":\"MARKETING AT ITS FINEST, TAILORED FOR SOCIAL MEDIA\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a16ef4e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>This theatrical display allows fans to take photos with Dollface, Pin-up Girl, the Man in the Mask and share their photos on social media.<\\/p>\",\"align\":\"center\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b58ab88\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"00ca412\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58},\"elements\":[{\"id\":\"032d3df\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/003.jpg\",\"id\":446},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"672c1f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42},\"elements\":[{\"id\":\"623f6d1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/26222472_170774200201231_6120473304701599744_n.jpg\",\"id\":447},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a641f07\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/VIDEO_COMING_SOON_01.jpg\",\"id\":449}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cf9e008\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"677b52c\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"31ae5e7\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":515,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/FREEBIRDS_V1B.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":4.9,\"sizes\":[]},\"layout\":\"full_width\",\"column_position\":\"top\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":68}},\"_title\":\"Section - THEATRICAL HERO\",\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_translateY_direction\":\"negative\",\"background_xpos\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"background_motion_fx_range\":\"viewport\"},\"elements\":[{\"id\":\"e45e9b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_title\":\"strangers prey at night\"},\"elements\":[{\"id\":\"68717d0\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"70\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"144d01b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"27b94bb\",\"elType\":\"widget\",\"settings\":{\"title\":\"THEATRICAL DISPLAYS\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"672b55e\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"16fbcce\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"ab6e6b7\",\"elType\":\"widget\",\"settings\":{\"title\":\"FREE BIRDS \\u2013 RESIN DISPLAY\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"42b76c7\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"_title\":\"Section - THEATRICAL DISPLAYS\"},\"elements\":[{\"id\":\"9fef846\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"9e16c55\",\"elType\":\"widget\",\"settings\":{\"title\":\"THEATRICAL DISPLAYS\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4a9d8d2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>OnDisplay Creative takes pride in its long history of leading the Entertainment Industry in creating and producing eye catching displays.<\\/p>\",\"align\":\"center\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"263fb63\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"42ecb50\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":68,\"_title\":\"spiderman homecoming\"},\"elements\":[{\"id\":\"fbd93cf\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/47Meters_02.jpg\",\"id\":518},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"align\":\"center\",\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2a3ff66\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":32,\"_title\":\"spiderman 2 vertical pics\"},\"elements\":[{\"id\":\"afb6c5e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/DFCV6gdXgAAoGDM.jpeg\",\"id\":520},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ad92bda\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/DEI2HYnW0AEERBl.jpeg\",\"id\":519}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"946f91d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"slideshow\",\"slides\":[{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Spidey_Home_V3.jpg\",\"id\":521},\"_id\":\"fb38f36\",\"type\":\"image\",\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/WarRoom_V1_002.jpg\",\"id\":524},\"_id\":\"a26cba3\",\"type\":\"image\",\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Mada3_01A_002.jpg\",\"id\":525},\"_id\":\"c815938\",\"type\":\"image\",\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/LOOZ_Standee_InTheater_2.jpg\",\"id\":526},\"_id\":\"4e65d42\",\"type\":\"image\",\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Thor-2.jpg\",\"id\":527},\"_id\":\"03a5179\",\"type\":\"image\",\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Echo_01A.jpg\",\"id\":528},\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"3604fe3\"},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Spidey_Home_V4_002-1.jpg\",\"id\":529},\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"f621837\"},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Hurricane-H_V1.jpg\",\"id\":530},\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"9f1174a\"},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Friend_Request.jpg\",\"id\":531},\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"2bec012\"},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/TheStrangers_V02_002.jpg\",\"id\":532},\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"8342d3b\"},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Kidnap2.jpg\",\"id\":533},\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"5ae447b\"},{\"type\":\"image\",\"image\":{\"url\":\"\",\"id\":\"\"},\"image_link_to_type\":\"file\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"56c21c6\"},{\"type\":\"image\",\"image\":{\"url\":\"\",\"id\":\"\"},\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"dca9a78\"}],\"slideshow_height\":{\"unit\":\"px\",\"size\":625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"media-carousel\"},{\"id\":\"6bf6bab\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"d0a8d7e\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b747fda\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":700},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":900},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"_title\":\"our company bitches\"},\"elements\":[{\"id\":\"7eab781\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"43661634\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our company is a collective of amazing people striving to build delightful products.\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.4},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70cc6d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.<\\/p>\",\"align\":\"center\",\"text_color\":\"#686868\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"615dfb3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1000},\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"6414755f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3bb26eed\",\"elType\":\"widget\",\"settings\":{\"text\":\"Read More\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3},\"button_text_color\":\"#ffffff\",\"background_color\":\"rgba(0,0,0,0)\",\"hover_color\":\"#00ce1b\",\"button_hover_border_color\":\"#00ce1b\",\"hover_animation\":\"grow\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"123f6d1\",\"elType\":\"section\",\"settings\":{\"_title\":\"blank at bottom\"},\"elements\":[{\"id\":\"25fcf2e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"64f593f\",\"elType\":\"section\",\"settings\":{\"_title\":\"blank at bottom\"},\"elements\":[{\"id\":\"596f429\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(3492,524,'_wp_attached_file','2019/09/WarRoom_V1_002.jpg'),(3493,524,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2500;s:6:\"height\";i:1736;s:4:\"file\";s:26:\"2019/09/WarRoom_V1_002.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"WarRoom_V1_002-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"WarRoom_V1_002-300x208.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:208;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:26:\"WarRoom_V1_002-768x533.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:533;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:27:\"WarRoom_V1_002-1024x711.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:711;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3494,525,'_wp_attached_file','2019/09/Mada3_01A_002.jpg'),(3495,525,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2500;s:6:\"height\";i:1736;s:4:\"file\";s:25:\"2019/09/Mada3_01A_002.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"Mada3_01A_002-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"Mada3_01A_002-300x208.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:208;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:25:\"Mada3_01A_002-768x533.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:533;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:26:\"Mada3_01A_002-1024x711.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:711;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3496,526,'_wp_attached_file','2019/09/LOOZ_Standee_InTheater_2.jpg'),(3497,526,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2500;s:6:\"height\";i:1736;s:4:\"file\";s:36:\"2019/09/LOOZ_Standee_InTheater_2.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:36:\"LOOZ_Standee_InTheater_2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:36:\"LOOZ_Standee_InTheater_2-300x208.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:208;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:36:\"LOOZ_Standee_InTheater_2-768x533.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:533;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:37:\"LOOZ_Standee_InTheater_2-1024x711.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:711;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3498,527,'_wp_attached_file','2019/09/Thor-2.jpg'),(3499,527,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2500;s:6:\"height\";i:1736;s:4:\"file\";s:18:\"2019/09/Thor-2.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"Thor-2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"Thor-2-300x208.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:208;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:18:\"Thor-2-768x533.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:533;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:19:\"Thor-2-1024x711.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:711;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3500,528,'_wp_attached_file','2019/09/Echo_01A.jpg'),(3501,528,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2500;s:6:\"height\";i:1736;s:4:\"file\";s:20:\"2019/09/Echo_01A.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"Echo_01A-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"Echo_01A-300x208.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:208;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:20:\"Echo_01A-768x533.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:533;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"Echo_01A-1024x711.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:711;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3502,529,'_wp_attached_file','2019/09/Spidey_Home_V4_002-1.jpg'),(3503,529,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2500;s:6:\"height\";i:1736;s:4:\"file\";s:32:\"2019/09/Spidey_Home_V4_002-1.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"Spidey_Home_V4_002-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:32:\"Spidey_Home_V4_002-1-300x208.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:208;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:32:\"Spidey_Home_V4_002-1-768x533.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:533;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:33:\"Spidey_Home_V4_002-1-1024x711.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:711;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3504,530,'_wp_attached_file','2019/09/Hurricane-H_V1.jpg'),(3505,530,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2500;s:6:\"height\";i:1736;s:4:\"file\";s:26:\"2019/09/Hurricane-H_V1.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"Hurricane-H_V1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"Hurricane-H_V1-300x208.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:208;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:26:\"Hurricane-H_V1-768x533.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:533;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:27:\"Hurricane-H_V1-1024x711.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:711;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3506,531,'_wp_attached_file','2019/09/Friend_Request.jpg'),(3507,531,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2500;s:6:\"height\";i:1736;s:4:\"file\";s:26:\"2019/09/Friend_Request.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"Friend_Request-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"Friend_Request-300x208.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:208;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:26:\"Friend_Request-768x533.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:533;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:27:\"Friend_Request-1024x711.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:711;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3508,532,'_wp_attached_file','2019/09/TheStrangers_V02_002.jpg'),(3509,532,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2500;s:6:\"height\";i:1736;s:4:\"file\";s:32:\"2019/09/TheStrangers_V02_002.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"TheStrangers_V02_002-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:32:\"TheStrangers_V02_002-300x208.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:208;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:32:\"TheStrangers_V02_002-768x533.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:533;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:33:\"TheStrangers_V02_002-1024x711.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:711;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3510,533,'_wp_attached_file','2019/09/Kidnap2.jpg'),(3511,533,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2500;s:6:\"height\";i:1736;s:4:\"file\";s:19:\"2019/09/Kidnap2.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"Kidnap2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:19:\"Kidnap2-300x208.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:208;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:19:\"Kidnap2-768x533.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:533;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:20:\"Kidnap2-1024x711.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:711;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3517,534,'_elementor_edit_mode','builder'),(3518,534,'_elementor_elements_usage','a:10:{s:7:\"heading\";i:15;s:6:\"column\";i:27;s:7:\"section\";i:22;s:7:\"divider\";i:7;s:11:\"text-editor\";i:6;s:5:\"image\";i:12;s:5:\"video\";i:2;s:6:\"spacer\";i:3;s:14:\"media-carousel\";i:1;s:6:\"button\";i:1;}'),(3519,535,'_wp_attached_file','2019/09/RfNight_01A_002.jpg'),(3520,535,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2500;s:6:\"height\";i:1736;s:4:\"file\";s:27:\"2019/09/RfNight_01A_002.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"RfNight_01A_002-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"RfNight_01A_002-300x208.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:208;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:27:\"RfNight_01A_002-768x533.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:533;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:28:\"RfNight_01A_002-1024x711.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:711;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3521,536,'_wp_attached_file','2019/09/AllSaints2_002.jpg'),(3522,536,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2500;s:6:\"height\";i:1736;s:4:\"file\";s:26:\"2019/09/AllSaints2_002.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"AllSaints2_002-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"AllSaints2_002-300x208.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:208;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:26:\"AllSaints2_002-768x533.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:533;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:27:\"AllSaints2_002-1024x711.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:711;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3523,537,'_elementor_template_type','post'),(3524,537,'_elementor_version','2.6.8'),(3525,537,'_elementor_pro_version','2.6.5'),(3526,537,'_wp_page_template','default'),(3527,537,'_elementor_data','[{\"id\":\"55396f27\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":50,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Theatrical_Display_V003C.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"motion_fx_range\":\"viewport\",\"layout\":\"full_width\",\"column_position\":\"top\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"_title\":\"Section - INSIDIOUS HERO\",\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"background_motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_range\":\"viewport\"},\"elements\":[{\"id\":\"905a97c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ad7f3f6\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"162\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2489c07\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"c0bbe21\",\"elType\":\"widget\",\"settings\":{\"title\":\"#WHAT\'S COOL\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"dc881ae\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"18630a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"870a9ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"INNOVATIONS FROM ONDISPLAY CREATIVE\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7df48509\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"_title\":\"Section - LIVING STANDEES\"},\"elements\":[{\"id\":\"1147078d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"23bbc68\",\"elType\":\"widget\",\"settings\":{\"title\":\"LIVING STANDEES HAUNTING THEATERS\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b40d155\",\"elType\":\"widget\",\"settings\":{\"title\":\"ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"700\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86cff8b\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"225341d\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS \\u2013 THE LAST KEY\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a680ae8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"be59fa3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e36fe5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"d4d2039\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2.jpg\",\"id\":88},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3c9b758\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"79e122a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2-1.jpg\",\"id\":87},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3dc9df5\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"start\":0},\"elements\":[],\"widgetType\":\"video\"},{\"id\":\"b61a90b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"8f63560\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"08c588a\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS CHAPTER 3\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0e612c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>OnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7e77f5a\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"gap\":\"wide\"},\"elements\":[{\"id\":\"7eb5a21\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.332},\"elements\":[{\"id\":\"ae25867\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/image-asset.jpeg\",\"id\":196},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"24c773b\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":58},\"elements\":[{\"id\":\"93ad602\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/130807026\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"cb5dad6\",\"elType\":\"section\",\"settings\":{\"_title\":\"Inner Sedtion\"},\"elements\":[{\"id\":\"25cd114\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_title\":\"virtual reality experience\"},\"elements\":[{\"id\":\"15643ab\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"8ec2d0f\",\"elType\":\"widget\",\"settings\":{\"title\":\"VIRTUAL REALITY EXPERIENCE\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4e004ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"SPIDER-MAN HOMECOMING DISPLAY\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"73a2406\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Submerse yourself in the world of your friendly neighborhood Spider-Man in this fun and thrilling VR Theatrical Display.\\u00a0\\u00a0Based on the all-new 2017 film, the Spider-Man Homecoming VR Experience is a first-person look through the eyes of Spidey himself.<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"04b03b4\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7f4ffcc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"7f85dc5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":76,\"_title\":\"spiderman homecoming\"},\"elements\":[{\"id\":\"9a5a392\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Spidey_Home_V4_002.jpg\",\"id\":230},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"css_filters_css_filter\":\"custom\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"c16541a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":24,\"_title\":\"spiderman 2 vertical pics\"},\"elements\":[{\"id\":\"95b0eed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/IMG_3834.jpg\",\"id\":231},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8ea51a8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/IMG_3788.jpg\",\"id\":233}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"12d34c8\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"00\",\"bottom\":\"00\",\"left\":\"00\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"95003e6\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":435,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/TheStrangers_V01.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":4.9,\"sizes\":[]},\"layout\":\"full_width\",\"column_position\":\"top\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":68}},\"_title\":\"Section - STRANGERS HERO\",\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_translateY_direction\":\"negative\",\"background_xpos\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"background_motion_fx_range\":\"viewport\"},\"elements\":[{\"id\":\"b6deb1a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_title\":\"strangers prey at night\"},\"elements\":[{\"id\":\"7a350ee\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"70\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"ecd0cbe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"d684039\",\"elType\":\"widget\",\"settings\":{\"title\":\"THE STRANGERS PREY AT NIGHT\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"003eb99\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5fd9452\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"93ad64e\",\"elType\":\"widget\",\"settings\":{\"title\":\"GRAND FORMAT PHOTO-OP STANDEE\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"247aafb\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"_title\":\"Section - MARKETING AT ITS FINEST\"},\"elements\":[{\"id\":\"f002e93\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"d1321ed\",\"elType\":\"widget\",\"settings\":{\"title\":\"MARKETING AT ITS FINEST, TAILORED FOR SOCIAL MEDIA\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a16ef4e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>This theatrical display allows fans to take photos with Dollface, Pin-up Girl, the Man in the Mask and share their photos on social media.<\\/p>\",\"align\":\"center\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b58ab88\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"00ca412\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58},\"elements\":[{\"id\":\"032d3df\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/003.jpg\",\"id\":446},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"672c1f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42},\"elements\":[{\"id\":\"623f6d1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/26222472_170774200201231_6120473304701599744_n.jpg\",\"id\":447},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a641f07\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/VIDEO_COMING_SOON_01.jpg\",\"id\":449}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cf9e008\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"677b52c\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"31ae5e7\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":515,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/FREEBIRDS_V1B.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":4.9,\"sizes\":[]},\"layout\":\"full_width\",\"column_position\":\"top\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":68}},\"_title\":\"Section - THEATRICAL HERO\",\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_translateY_direction\":\"negative\",\"background_xpos\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"background_motion_fx_range\":\"viewport\"},\"elements\":[{\"id\":\"e45e9b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_title\":\"strangers prey at night\"},\"elements\":[{\"id\":\"68717d0\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"70\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"144d01b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"27b94bb\",\"elType\":\"widget\",\"settings\":{\"title\":\"THEATRICAL DISPLAYS\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"672b55e\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"16fbcce\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"ab6e6b7\",\"elType\":\"widget\",\"settings\":{\"title\":\"FREE BIRDS \\u2013 RESIN DISPLAY\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"42b76c7\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"_title\":\"Section - THEATRICAL DISPLAYS\"},\"elements\":[{\"id\":\"9fef846\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"9e16c55\",\"elType\":\"widget\",\"settings\":{\"title\":\"THEATRICAL DISPLAYS\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4a9d8d2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>OnDisplay Creative takes pride in its long history of leading the Entertainment Industry in creating and producing eye catching displays.<\\/p>\",\"align\":\"center\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"263fb63\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"42ecb50\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":68,\"_title\":\"spiderman homecoming\"},\"elements\":[{\"id\":\"fbd93cf\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/47Meters_02.jpg\",\"id\":518},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"align\":\"center\",\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2a3ff66\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":32,\"_title\":\"spiderman 2 vertical pics\"},\"elements\":[{\"id\":\"afb6c5e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/DFCV6gdXgAAoGDM.jpeg\",\"id\":520},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ad92bda\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/DEI2HYnW0AEERBl.jpeg\",\"id\":519}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"946f91d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"slideshow\",\"slides\":[{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Spidey_Home_V3.jpg\",\"id\":521},\"_id\":\"fb38f36\",\"type\":\"image\",\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/WarRoom_V1_002.jpg\",\"id\":524},\"_id\":\"a26cba3\",\"type\":\"image\",\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Mada3_01A_002.jpg\",\"id\":525},\"_id\":\"c815938\",\"type\":\"image\",\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/LOOZ_Standee_InTheater_2.jpg\",\"id\":526},\"_id\":\"4e65d42\",\"type\":\"image\",\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Thor-2.jpg\",\"id\":527},\"_id\":\"03a5179\",\"type\":\"image\",\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Echo_01A.jpg\",\"id\":528},\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"3604fe3\"},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Spidey_Home_V4_002-1.jpg\",\"id\":529},\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"f621837\"},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Hurricane-H_V1.jpg\",\"id\":530},\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"9f1174a\"},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Friend_Request.jpg\",\"id\":531},\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"2bec012\"},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/TheStrangers_V02_002.jpg\",\"id\":532},\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"8342d3b\"},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Kidnap2.jpg\",\"id\":533},\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"5ae447b\"},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/RfNight_01A_002.jpg\",\"id\":535},\"image_link_to_type\":\"file\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"56c21c6\"},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/AllSaints2_002.jpg\",\"id\":536},\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"dca9a78\"}],\"slideshow_height\":{\"unit\":\"px\",\"size\":625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"media-carousel\"},{\"id\":\"6bf6bab\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"d0a8d7e\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b747fda\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":700},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":900},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"_title\":\"our company bitches\"},\"elements\":[{\"id\":\"7eab781\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"43661634\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our company is a collective of amazing people striving to build delightful products.\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.4},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70cc6d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.<\\/p>\",\"align\":\"center\",\"text_color\":\"#686868\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"615dfb3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1000},\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"6414755f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3bb26eed\",\"elType\":\"widget\",\"settings\":{\"text\":\"Read More\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3},\"button_text_color\":\"#ffffff\",\"background_color\":\"rgba(0,0,0,0)\",\"hover_color\":\"#00ce1b\",\"button_hover_border_color\":\"#00ce1b\",\"hover_animation\":\"grow\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"123f6d1\",\"elType\":\"section\",\"settings\":{\"_title\":\"blank at bottom\"},\"elements\":[{\"id\":\"25fcf2e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"64f593f\",\"elType\":\"section\",\"settings\":{\"_title\":\"blank at bottom\"},\"elements\":[{\"id\":\"596f429\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(3528,537,'_elementor_edit_mode','builder'),(3529,537,'_elementor_elements_usage','a:10:{s:7:\"heading\";i:15;s:6:\"column\";i:27;s:7:\"section\";i:22;s:7:\"divider\";i:7;s:11:\"text-editor\";i:6;s:5:\"image\";i:12;s:5:\"video\";i:2;s:6:\"spacer\";i:3;s:14:\"media-carousel\";i:1;s:6:\"button\";i:1;}'),(3530,538,'_elementor_template_type','post'),(3531,538,'_elementor_version','2.6.8'),(3532,538,'_elementor_pro_version','2.6.5'),(3533,538,'_wp_page_template','default'),(3534,538,'_elementor_data','[{\"id\":\"55396f27\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":50,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Theatrical_Display_V003C.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"motion_fx_range\":\"viewport\",\"layout\":\"full_width\",\"column_position\":\"top\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"_title\":\"Section - INSIDIOUS HERO\",\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"background_motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_range\":\"viewport\"},\"elements\":[{\"id\":\"905a97c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ad7f3f6\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"162\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2489c07\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"c0bbe21\",\"elType\":\"widget\",\"settings\":{\"title\":\"#WHAT\'S COOL\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"dc881ae\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"18630a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"870a9ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"INNOVATIONS FROM ONDISPLAY CREATIVE\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7df48509\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"_title\":\"Section - LIVING STANDEES\"},\"elements\":[{\"id\":\"1147078d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"23bbc68\",\"elType\":\"widget\",\"settings\":{\"title\":\"LIVING STANDEES HAUNTING THEATERS\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b40d155\",\"elType\":\"widget\",\"settings\":{\"title\":\"ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"700\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86cff8b\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"225341d\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS \\u2013 THE LAST KEY\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a680ae8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"be59fa3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e36fe5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"d4d2039\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2.jpg\",\"id\":88},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3c9b758\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"79e122a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2-1.jpg\",\"id\":87},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3dc9df5\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"start\":0},\"elements\":[],\"widgetType\":\"video\"},{\"id\":\"b61a90b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"8f63560\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"08c588a\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS CHAPTER 3\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0e612c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>OnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7e77f5a\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"gap\":\"wide\"},\"elements\":[{\"id\":\"7eb5a21\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.332},\"elements\":[{\"id\":\"ae25867\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/image-asset.jpeg\",\"id\":196},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"24c773b\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":58},\"elements\":[{\"id\":\"93ad602\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/130807026\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"cb5dad6\",\"elType\":\"section\",\"settings\":{\"_title\":\"Inner Sedtion\"},\"elements\":[{\"id\":\"25cd114\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_title\":\"virtual reality experience\"},\"elements\":[{\"id\":\"15643ab\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"8ec2d0f\",\"elType\":\"widget\",\"settings\":{\"title\":\"VIRTUAL REALITY EXPERIENCE\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4e004ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"SPIDER-MAN HOMECOMING DISPLAY\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"73a2406\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Submerse yourself in the world of your friendly neighborhood Spider-Man in this fun and thrilling VR Theatrical Display.\\u00a0\\u00a0Based on the all-new 2017 film, the Spider-Man Homecoming VR Experience is a first-person look through the eyes of Spidey himself.<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"04b03b4\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7f4ffcc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"7f85dc5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":76,\"_title\":\"spiderman homecoming\"},\"elements\":[{\"id\":\"9a5a392\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Spidey_Home_V4_002.jpg\",\"id\":230},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"css_filters_css_filter\":\"custom\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"c16541a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":24,\"_title\":\"spiderman 2 vertical pics\"},\"elements\":[{\"id\":\"95b0eed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/IMG_3834.jpg\",\"id\":231},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8ea51a8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/IMG_3788.jpg\",\"id\":233}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"12d34c8\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"00\",\"bottom\":\"00\",\"left\":\"00\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"95003e6\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":435,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/TheStrangers_V01.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":4.9,\"sizes\":[]},\"layout\":\"full_width\",\"column_position\":\"top\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":68}},\"_title\":\"Section - STRANGERS HERO\",\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_translateY_direction\":\"negative\",\"background_xpos\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"background_motion_fx_range\":\"viewport\"},\"elements\":[{\"id\":\"b6deb1a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_title\":\"strangers prey at night\"},\"elements\":[{\"id\":\"7a350ee\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"70\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"ecd0cbe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"d684039\",\"elType\":\"widget\",\"settings\":{\"title\":\"THE STRANGERS PREY AT NIGHT\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"003eb99\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5fd9452\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"93ad64e\",\"elType\":\"widget\",\"settings\":{\"title\":\"GRAND FORMAT PHOTO-OP STANDEE\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"247aafb\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"_title\":\"Section - MARKETING AT ITS FINEST\"},\"elements\":[{\"id\":\"f002e93\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"d1321ed\",\"elType\":\"widget\",\"settings\":{\"title\":\"MARKETING AT ITS FINEST, TAILORED FOR SOCIAL MEDIA\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a16ef4e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>This theatrical display allows fans to take photos with Dollface, Pin-up Girl, the Man in the Mask and share their photos on social media.<\\/p>\",\"align\":\"center\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b58ab88\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"00ca412\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58},\"elements\":[{\"id\":\"032d3df\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/003.jpg\",\"id\":446},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"672c1f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42},\"elements\":[{\"id\":\"623f6d1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/26222472_170774200201231_6120473304701599744_n.jpg\",\"id\":447},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a641f07\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/VIDEO_COMING_SOON_01.jpg\",\"id\":449}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cf9e008\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"677b52c\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"31ae5e7\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":515,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/FREEBIRDS_V1B.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":4.9,\"sizes\":[]},\"layout\":\"full_width\",\"column_position\":\"top\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":68}},\"_title\":\"Section - THEATRICAL HERO\",\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_translateY_direction\":\"negative\",\"background_xpos\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"background_motion_fx_range\":\"viewport\"},\"elements\":[{\"id\":\"e45e9b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_title\":\"strangers prey at night\"},\"elements\":[{\"id\":\"68717d0\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"70\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"144d01b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"27b94bb\",\"elType\":\"widget\",\"settings\":{\"title\":\"THEATRICAL DISPLAYS\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"672b55e\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"16fbcce\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"ab6e6b7\",\"elType\":\"widget\",\"settings\":{\"title\":\"FREE BIRDS \\u2013 RESIN DISPLAY\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"42b76c7\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"_title\":\"Section - THEATRICAL DISPLAYS\"},\"elements\":[{\"id\":\"9fef846\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"9e16c55\",\"elType\":\"widget\",\"settings\":{\"title\":\"THEATRICAL DISPLAYS\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4a9d8d2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>OnDisplay Creative takes pride in its long history of leading the Entertainment Industry in creating and producing eye catching displays.<\\/p>\",\"align\":\"center\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"263fb63\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"42ecb50\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":68,\"_title\":\"spiderman homecoming\"},\"elements\":[{\"id\":\"fbd93cf\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/47Meters_02.jpg\",\"id\":518},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"align\":\"center\",\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2a3ff66\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":32,\"_title\":\"spiderman 2 vertical pics\"},\"elements\":[{\"id\":\"afb6c5e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/DFCV6gdXgAAoGDM.jpeg\",\"id\":520},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ad92bda\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/DEI2HYnW0AEERBl.jpeg\",\"id\":519}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"946f91d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"slideshow\",\"slides\":[{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Spidey_Home_V3.jpg\",\"id\":521},\"_id\":\"fb38f36\",\"type\":\"image\",\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/WarRoom_V1_002.jpg\",\"id\":524},\"_id\":\"a26cba3\",\"type\":\"image\",\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Mada3_01A_002.jpg\",\"id\":525},\"_id\":\"c815938\",\"type\":\"image\",\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/LOOZ_Standee_InTheater_2.jpg\",\"id\":526},\"_id\":\"4e65d42\",\"type\":\"image\",\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Thor-2.jpg\",\"id\":527},\"_id\":\"03a5179\",\"type\":\"image\",\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Echo_01A.jpg\",\"id\":528},\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"3604fe3\"},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Spidey_Home_V4_002-1.jpg\",\"id\":529},\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"f621837\"},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Hurricane-H_V1.jpg\",\"id\":530},\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"9f1174a\"},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Friend_Request.jpg\",\"id\":531},\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"2bec012\"},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/TheStrangers_V02_002.jpg\",\"id\":532},\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"8342d3b\"},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Kidnap2.jpg\",\"id\":533},\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"5ae447b\"},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/RfNight_01A_002.jpg\",\"id\":535},\"image_link_to_type\":\"file\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"56c21c6\"},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/AllSaints2_002.jpg\",\"id\":536},\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"dca9a78\"}],\"slideshow_height\":{\"unit\":\"px\",\"size\":625,\"sizes\":[]},\"slideshow_slides_per_view\":\"6\",\"thumbs_ratio\":\"43\",\"centered_slides\":\"yes\"},\"elements\":[],\"widgetType\":\"media-carousel\"},{\"id\":\"6bf6bab\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"d0a8d7e\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b747fda\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":700},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":900},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"_title\":\"our company bitches\"},\"elements\":[{\"id\":\"7eab781\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"43661634\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our company is a collective of amazing people striving to build delightful products.\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.4},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70cc6d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.<\\/p>\",\"align\":\"center\",\"text_color\":\"#686868\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"615dfb3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1000},\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"6414755f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3bb26eed\",\"elType\":\"widget\",\"settings\":{\"text\":\"Read More\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3},\"button_text_color\":\"#ffffff\",\"background_color\":\"rgba(0,0,0,0)\",\"hover_color\":\"#00ce1b\",\"button_hover_border_color\":\"#00ce1b\",\"hover_animation\":\"grow\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"123f6d1\",\"elType\":\"section\",\"settings\":{\"_title\":\"blank at bottom\"},\"elements\":[{\"id\":\"25fcf2e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"64f593f\",\"elType\":\"section\",\"settings\":{\"_title\":\"blank at bottom\"},\"elements\":[{\"id\":\"596f429\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false}]');
INSERT INTO `wp_postmeta` VALUES (3535,538,'_elementor_edit_mode','builder'),(3536,538,'_elementor_elements_usage','a:10:{s:7:\"heading\";i:15;s:6:\"column\";i:27;s:7:\"section\";i:22;s:7:\"divider\";i:7;s:11:\"text-editor\";i:6;s:5:\"image\";i:12;s:5:\"video\";i:2;s:6:\"spacer\";i:3;s:14:\"media-carousel\";i:1;s:6:\"button\";i:1;}'),(3537,539,'_elementor_template_type','post'),(3538,539,'_elementor_version','2.6.8'),(3539,539,'_elementor_pro_version','2.6.5'),(3540,539,'_wp_page_template','default'),(3541,539,'_elementor_data','[{\"id\":\"55396f27\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":50,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Theatrical_Display_V003C.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"motion_fx_range\":\"viewport\",\"layout\":\"full_width\",\"column_position\":\"top\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"_title\":\"Section - INSIDIOUS HERO\",\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"background_motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_range\":\"viewport\"},\"elements\":[{\"id\":\"905a97c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ad7f3f6\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"162\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2489c07\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"c0bbe21\",\"elType\":\"widget\",\"settings\":{\"title\":\"#WHAT\'S COOL\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"dc881ae\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"18630a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"870a9ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"INNOVATIONS FROM ONDISPLAY CREATIVE\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7df48509\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"_title\":\"Section - LIVING STANDEES\"},\"elements\":[{\"id\":\"1147078d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"23bbc68\",\"elType\":\"widget\",\"settings\":{\"title\":\"LIVING STANDEES HAUNTING THEATERS\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b40d155\",\"elType\":\"widget\",\"settings\":{\"title\":\"ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"700\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86cff8b\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"225341d\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS \\u2013 THE LAST KEY\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a680ae8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"be59fa3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e36fe5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"d4d2039\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2.jpg\",\"id\":88},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3c9b758\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"79e122a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2-1.jpg\",\"id\":87},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3dc9df5\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"start\":0},\"elements\":[],\"widgetType\":\"video\"},{\"id\":\"b61a90b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"8f63560\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"08c588a\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS CHAPTER 3\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0e612c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>OnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7e77f5a\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"gap\":\"wide\"},\"elements\":[{\"id\":\"7eb5a21\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.332},\"elements\":[{\"id\":\"ae25867\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/image-asset.jpeg\",\"id\":196},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"24c773b\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":58},\"elements\":[{\"id\":\"93ad602\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/130807026\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"cb5dad6\",\"elType\":\"section\",\"settings\":{\"_title\":\"Inner Sedtion\"},\"elements\":[{\"id\":\"25cd114\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_title\":\"virtual reality experience\"},\"elements\":[{\"id\":\"15643ab\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"8ec2d0f\",\"elType\":\"widget\",\"settings\":{\"title\":\"VIRTUAL REALITY EXPERIENCE\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4e004ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"SPIDER-MAN HOMECOMING DISPLAY\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"73a2406\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Submerse yourself in the world of your friendly neighborhood Spider-Man in this fun and thrilling VR Theatrical Display.\\u00a0\\u00a0Based on the all-new 2017 film, the Spider-Man Homecoming VR Experience is a first-person look through the eyes of Spidey himself.<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"04b03b4\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7f4ffcc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"7f85dc5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":76,\"_title\":\"spiderman homecoming\"},\"elements\":[{\"id\":\"9a5a392\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Spidey_Home_V4_002.jpg\",\"id\":230},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"css_filters_css_filter\":\"custom\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"c16541a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":24,\"_title\":\"spiderman 2 vertical pics\"},\"elements\":[{\"id\":\"95b0eed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/IMG_3834.jpg\",\"id\":231},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8ea51a8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/IMG_3788.jpg\",\"id\":233}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"12d34c8\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"00\",\"bottom\":\"00\",\"left\":\"00\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"95003e6\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":435,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/TheStrangers_V01.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":4.9,\"sizes\":[]},\"layout\":\"full_width\",\"column_position\":\"top\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":68}},\"_title\":\"Section - STRANGERS HERO\",\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_translateY_direction\":\"negative\",\"background_xpos\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"background_motion_fx_range\":\"viewport\"},\"elements\":[{\"id\":\"b6deb1a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_title\":\"strangers prey at night\"},\"elements\":[{\"id\":\"7a350ee\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"70\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"ecd0cbe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"d684039\",\"elType\":\"widget\",\"settings\":{\"title\":\"THE STRANGERS PREY AT NIGHT\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"003eb99\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5fd9452\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"93ad64e\",\"elType\":\"widget\",\"settings\":{\"title\":\"GRAND FORMAT PHOTO-OP STANDEE\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"247aafb\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"_title\":\"Section - MARKETING AT ITS FINEST\"},\"elements\":[{\"id\":\"f002e93\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"d1321ed\",\"elType\":\"widget\",\"settings\":{\"title\":\"MARKETING AT ITS FINEST, TAILORED FOR SOCIAL MEDIA\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a16ef4e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>This theatrical display allows fans to take photos with Dollface, Pin-up Girl, the Man in the Mask and share their photos on social media.<\\/p>\",\"align\":\"center\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b58ab88\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"00ca412\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58},\"elements\":[{\"id\":\"032d3df\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/003.jpg\",\"id\":446},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"672c1f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42},\"elements\":[{\"id\":\"623f6d1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/26222472_170774200201231_6120473304701599744_n.jpg\",\"id\":447},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a641f07\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/VIDEO_COMING_SOON_01.jpg\",\"id\":449}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cf9e008\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"677b52c\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"31ae5e7\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":515,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/FREEBIRDS_V1B.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":4.9,\"sizes\":[]},\"layout\":\"full_width\",\"column_position\":\"top\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":68}},\"_title\":\"Section - THEATRICAL HERO\",\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_translateY_direction\":\"negative\",\"background_xpos\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"background_motion_fx_range\":\"viewport\"},\"elements\":[{\"id\":\"e45e9b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_title\":\"strangers prey at night\"},\"elements\":[{\"id\":\"68717d0\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"70\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"144d01b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"27b94bb\",\"elType\":\"widget\",\"settings\":{\"title\":\"THEATRICAL DISPLAYS\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"672b55e\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"16fbcce\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"ab6e6b7\",\"elType\":\"widget\",\"settings\":{\"title\":\"FREE BIRDS \\u2013 RESIN DISPLAY\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"42b76c7\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"_title\":\"Section - THEATRICAL DISPLAYS\"},\"elements\":[{\"id\":\"9fef846\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"9e16c55\",\"elType\":\"widget\",\"settings\":{\"title\":\"THEATRICAL DISPLAYS\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4a9d8d2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>OnDisplay Creative takes pride in its long history of leading the Entertainment Industry in creating and producing eye catching displays.<\\/p>\",\"align\":\"center\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"263fb63\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"42ecb50\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":68,\"_title\":\"spiderman homecoming\"},\"elements\":[{\"id\":\"fbd93cf\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/47Meters_02.jpg\",\"id\":518},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"align\":\"center\",\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2a3ff66\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":32,\"_title\":\"spiderman 2 vertical pics\"},\"elements\":[{\"id\":\"afb6c5e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/DFCV6gdXgAAoGDM.jpeg\",\"id\":520},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ad92bda\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/DEI2HYnW0AEERBl.jpeg\",\"id\":519}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"946f91d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"slideshow\",\"slides\":[{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Spidey_Home_V3.jpg\",\"id\":521},\"_id\":\"fb38f36\",\"type\":\"image\",\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/WarRoom_V1_002.jpg\",\"id\":524},\"_id\":\"a26cba3\",\"type\":\"image\",\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Mada3_01A_002.jpg\",\"id\":525},\"_id\":\"c815938\",\"type\":\"image\",\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/LOOZ_Standee_InTheater_2.jpg\",\"id\":526},\"_id\":\"4e65d42\",\"type\":\"image\",\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Thor-2.jpg\",\"id\":527},\"_id\":\"03a5179\",\"type\":\"image\",\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Echo_01A.jpg\",\"id\":528},\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"3604fe3\"},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Spidey_Home_V4_002-1.jpg\",\"id\":529},\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"f621837\"},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Hurricane-H_V1.jpg\",\"id\":530},\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"9f1174a\"},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Friend_Request.jpg\",\"id\":531},\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"2bec012\"},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/TheStrangers_V02_002.jpg\",\"id\":532},\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"8342d3b\"},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Kidnap2.jpg\",\"id\":533},\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"5ae447b\"},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/RfNight_01A_002.jpg\",\"id\":535},\"image_link_to_type\":\"file\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"56c21c6\"},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/AllSaints2_002.jpg\",\"id\":536},\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"dca9a78\"}],\"slideshow_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"slideshow_slides_per_view\":\"6\",\"thumbs_ratio\":\"43\",\"centered_slides\":\"yes\"},\"elements\":[],\"widgetType\":\"media-carousel\"},{\"id\":\"6bf6bab\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"d0a8d7e\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b747fda\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":700},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":900},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"_title\":\"our company bitches\"},\"elements\":[{\"id\":\"7eab781\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"43661634\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our company is a collective of amazing people striving to build delightful products.\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.4},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70cc6d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.<\\/p>\",\"align\":\"center\",\"text_color\":\"#686868\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"615dfb3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1000},\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"6414755f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3bb26eed\",\"elType\":\"widget\",\"settings\":{\"text\":\"Read More\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3},\"button_text_color\":\"#ffffff\",\"background_color\":\"rgba(0,0,0,0)\",\"hover_color\":\"#00ce1b\",\"button_hover_border_color\":\"#00ce1b\",\"hover_animation\":\"grow\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"123f6d1\",\"elType\":\"section\",\"settings\":{\"_title\":\"blank at bottom\"},\"elements\":[{\"id\":\"25fcf2e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"64f593f\",\"elType\":\"section\",\"settings\":{\"_title\":\"blank at bottom\"},\"elements\":[{\"id\":\"596f429\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(3542,539,'_elementor_edit_mode','builder'),(3543,539,'_elementor_elements_usage','a:10:{s:7:\"heading\";i:15;s:6:\"column\";i:27;s:7:\"section\";i:22;s:7:\"divider\";i:7;s:11:\"text-editor\";i:6;s:5:\"image\";i:12;s:5:\"video\";i:2;s:6:\"spacer\";i:3;s:14:\"media-carousel\";i:1;s:6:\"button\";i:1;}'),(3559,543,'_elementor_data','[{\"id\":\"55396f27\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":50,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Theatrical_Display_V003C.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"motion_fx_range\":\"viewport\",\"layout\":\"full_width\",\"column_position\":\"top\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"_title\":\"Section - INSIDIOUS HERO\",\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"background_motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_range\":\"viewport\"},\"elements\":[{\"id\":\"905a97c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ad7f3f6\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"162\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2489c07\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"c0bbe21\",\"elType\":\"widget\",\"settings\":{\"title\":\"#WHAT\'S COOL\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"dc881ae\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"18630a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"870a9ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"INNOVATIONS FROM ONDISPLAY CREATIVE\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7df48509\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"_title\":\"Section - LIVING STANDEES\"},\"elements\":[{\"id\":\"1147078d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"23bbc68\",\"elType\":\"widget\",\"settings\":{\"title\":\"LIVING STANDEES HAUNTING THEATERS\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b40d155\",\"elType\":\"widget\",\"settings\":{\"title\":\"ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"700\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86cff8b\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"225341d\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS \\u2013 THE LAST KEY\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a680ae8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"be59fa3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e36fe5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"d4d2039\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2.jpg\",\"id\":88},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3c9b758\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"79e122a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2-1.jpg\",\"id\":87},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3dc9df5\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"start\":0},\"elements\":[],\"widgetType\":\"video\"},{\"id\":\"b61a90b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"8f63560\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"08c588a\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS CHAPTER 3\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0e612c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>OnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7e77f5a\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"gap\":\"wide\"},\"elements\":[{\"id\":\"7eb5a21\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.332},\"elements\":[{\"id\":\"ae25867\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/image-asset.jpeg\",\"id\":196},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"24c773b\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":58},\"elements\":[{\"id\":\"93ad602\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/130807026\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"cb5dad6\",\"elType\":\"section\",\"settings\":{\"_title\":\"Inner Sedtion\"},\"elements\":[{\"id\":\"25cd114\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_title\":\"virtual reality experience\"},\"elements\":[{\"id\":\"15643ab\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"8ec2d0f\",\"elType\":\"widget\",\"settings\":{\"title\":\"VIRTUAL REALITY EXPERIENCE\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4e004ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"SPIDER-MAN HOMECOMING DISPLAY\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"73a2406\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Submerse yourself in the world of your friendly neighborhood Spider-Man in this fun and thrilling VR Theatrical Display.\\u00a0\\u00a0Based on the all-new 2017 film, the Spider-Man Homecoming VR Experience is a first-person look through the eyes of Spidey himself.<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"04b03b4\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7f4ffcc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"7f85dc5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":76,\"_title\":\"spiderman homecoming\"},\"elements\":[{\"id\":\"9a5a392\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Spidey_Home_V4_002.jpg\",\"id\":230},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"css_filters_css_filter\":\"custom\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"c16541a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":24,\"_title\":\"spiderman 2 vertical pics\"},\"elements\":[{\"id\":\"95b0eed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/IMG_3834.jpg\",\"id\":231},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8ea51a8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/IMG_3788.jpg\",\"id\":233}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"12d34c8\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"00\",\"bottom\":\"00\",\"left\":\"00\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"95003e6\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":435,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/TheStrangers_V01.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":4.9,\"sizes\":[]},\"layout\":\"full_width\",\"column_position\":\"top\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":68}},\"_title\":\"Section - STRANGERS HERO\",\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_translateY_direction\":\"negative\",\"background_xpos\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"background_motion_fx_range\":\"viewport\"},\"elements\":[{\"id\":\"b6deb1a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_title\":\"strangers prey at night\"},\"elements\":[{\"id\":\"7a350ee\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"70\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"ecd0cbe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"d684039\",\"elType\":\"widget\",\"settings\":{\"title\":\"THE STRANGERS PREY AT NIGHT\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"003eb99\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5fd9452\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"93ad64e\",\"elType\":\"widget\",\"settings\":{\"title\":\"GRAND FORMAT PHOTO-OP STANDEE\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"247aafb\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"_title\":\"Section - MARKETING AT ITS FINEST\"},\"elements\":[{\"id\":\"f002e93\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"d1321ed\",\"elType\":\"widget\",\"settings\":{\"title\":\"MARKETING AT ITS FINEST, TAILORED FOR SOCIAL MEDIA\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a16ef4e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>This theatrical display allows fans to take photos with Dollface, Pin-up Girl, the Man in the Mask and share their photos on social media.<\\/p>\",\"align\":\"center\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b58ab88\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"00ca412\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58},\"elements\":[{\"id\":\"032d3df\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/003.jpg\",\"id\":446},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"672c1f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42},\"elements\":[{\"id\":\"623f6d1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/26222472_170774200201231_6120473304701599744_n.jpg\",\"id\":447},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a641f07\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/VIDEO_COMING_SOON_01.jpg\",\"id\":449}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cf9e008\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"677b52c\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"31ae5e7\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":515,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/FREEBIRDS_V1B.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":4.9,\"sizes\":[]},\"layout\":\"full_width\",\"column_position\":\"top\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":68}},\"_title\":\"Section - THEATRICAL HERO\",\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_translateY_direction\":\"negative\",\"background_xpos\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"background_motion_fx_range\":\"viewport\"},\"elements\":[{\"id\":\"e45e9b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_title\":\"free birds\"},\"elements\":[{\"id\":\"68717d0\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"70\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"144d01b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"27b94bb\",\"elType\":\"widget\",\"settings\":{\"title\":\"THEATRICAL DISPLAYS\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"672b55e\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"16fbcce\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"ab6e6b7\",\"elType\":\"widget\",\"settings\":{\"title\":\"FREE BIRDS \\u2013 RESIN DISPLAY\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"42b76c7\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"_title\":\"Section - THEATRICAL DISPLAYS\"},\"elements\":[{\"id\":\"9fef846\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"9e16c55\",\"elType\":\"widget\",\"settings\":{\"title\":\"THEATRICAL DISPLAYS\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4a9d8d2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>OnDisplay Creative takes pride in its long history of leading the Entertainment Industry in creating and producing eye catching displays.<\\/p>\",\"align\":\"center\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"263fb63\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"42ecb50\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":68,\"_title\":\"spiderman homecoming\"},\"elements\":[{\"id\":\"fbd93cf\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/47Meters_02.jpg\",\"id\":518},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"align\":\"center\",\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2a3ff66\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":32,\"_title\":\"spiderman 2 vertical pics\"},\"elements\":[{\"id\":\"afb6c5e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/DFCV6gdXgAAoGDM.jpeg\",\"id\":520},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ad92bda\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/DEI2HYnW0AEERBl.jpeg\",\"id\":519}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"946f91d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"slideshow\",\"slides\":[{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Spidey_Home_V3.jpg\",\"id\":521},\"_id\":\"fb38f36\",\"type\":\"image\",\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/WarRoom_V1_002.jpg\",\"id\":524},\"_id\":\"a26cba3\",\"type\":\"image\",\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Mada3_01A_002.jpg\",\"id\":525},\"_id\":\"c815938\",\"type\":\"image\",\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/LOOZ_Standee_InTheater_2.jpg\",\"id\":526},\"_id\":\"4e65d42\",\"type\":\"image\",\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Thor-2.jpg\",\"id\":527},\"_id\":\"03a5179\",\"type\":\"image\",\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Echo_01A.jpg\",\"id\":528},\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"3604fe3\"},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Spidey_Home_V4_002-1.jpg\",\"id\":529},\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"f621837\"},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Hurricane-H_V1.jpg\",\"id\":530},\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"9f1174a\"},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Friend_Request.jpg\",\"id\":531},\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"2bec012\"},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/TheStrangers_V02_002.jpg\",\"id\":532},\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"8342d3b\"},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Kidnap2.jpg\",\"id\":533},\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"5ae447b\"},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/RfNight_01A_002.jpg\",\"id\":535},\"image_link_to_type\":\"file\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"56c21c6\"},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/AllSaints2_002.jpg\",\"id\":536},\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"dca9a78\"}],\"slideshow_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"slideshow_slides_per_view\":\"6\",\"thumbs_ratio\":\"43\",\"centered_slides\":\"yes\"},\"elements\":[],\"widgetType\":\"media-carousel\"},{\"id\":\"6bf6bab\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"d0a8d7e\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b45b58e\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":542,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Pets_HomeEnt_FrntP.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":4.9,\"sizes\":[]},\"layout\":\"full_width\",\"column_position\":\"top\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":68}},\"_title\":\"Section - HOME ENT HERO\",\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_translateY_direction\":\"negative\",\"background_xpos\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"background_motion_fx_range\":\"viewport\"},\"elements\":[{\"id\":\"b6af657\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_title\":\"secret life of pets\"},\"elements\":[{\"id\":\"8065946\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"70\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"121e9ec\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"3e5b110\",\"elType\":\"widget\",\"settings\":{\"title\":\"HOME ENTERTAINMENT\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"c4a68e0\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"0e38833\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"3f83c61\",\"elType\":\"widget\",\"settings\":{\"title\":\"THE SECRET LIFE OF PETS\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b747fda\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":700},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":900},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"_title\":\"our company bitches\"},\"elements\":[{\"id\":\"7eab781\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"43661634\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our company is a collective of amazing people striving to build delightful products.\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.4},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70cc6d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.<\\/p>\",\"align\":\"center\",\"text_color\":\"#686868\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"615dfb3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1000},\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"6414755f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3bb26eed\",\"elType\":\"widget\",\"settings\":{\"text\":\"Read More\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3},\"button_text_color\":\"#ffffff\",\"background_color\":\"rgba(0,0,0,0)\",\"hover_color\":\"#00ce1b\",\"button_hover_border_color\":\"#00ce1b\",\"hover_animation\":\"grow\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"123f6d1\",\"elType\":\"section\",\"settings\":{\"_title\":\"blank at bottom\"},\"elements\":[{\"id\":\"25fcf2e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"64f593f\",\"elType\":\"section\",\"settings\":{\"_title\":\"blank at bottom\"},\"elements\":[{\"id\":\"596f429\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(3555,543,'_elementor_template_type','post'),(3556,543,'_elementor_version','2.6.8'),(3557,543,'_elementor_pro_version','2.6.5'),(3558,543,'_wp_page_template','default'),(3551,541,'_wp_attached_file','2019/09/PETS_WOW_02_002.jpg'),(3552,541,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2500;s:6:\"height\";i:1630;s:4:\"file\";s:27:\"2019/09/PETS_WOW_02_002.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"PETS_WOW_02_002-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"PETS_WOW_02_002-300x196.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:196;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:27:\"PETS_WOW_02_002-768x501.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:501;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:28:\"PETS_WOW_02_002-1024x668.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:668;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3553,542,'_wp_attached_file','2019/09/Pets_HomeEnt_FrntP.jpg'),(3554,542,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2500;s:6:\"height\";i:1736;s:4:\"file\";s:30:\"2019/09/Pets_HomeEnt_FrntP.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"Pets_HomeEnt_FrntP-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:30:\"Pets_HomeEnt_FrntP-300x208.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:208;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:30:\"Pets_HomeEnt_FrntP-768x533.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:533;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:31:\"Pets_HomeEnt_FrntP-1024x711.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:711;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3560,543,'_elementor_edit_mode','builder'),(3561,543,'_elementor_elements_usage','a:10:{s:7:\"heading\";i:17;s:6:\"column\";i:30;s:7:\"section\";i:25;s:7:\"divider\";i:7;s:11:\"text-editor\";i:6;s:5:\"image\";i:12;s:5:\"video\";i:2;s:6:\"spacer\";i:3;s:14:\"media-carousel\";i:1;s:6:\"button\";i:1;}'),(3606,551,'_elementor_template_type','post'),(3588,548,'_elementor_template_type','post'),(3589,548,'_elementor_version','2.6.8'),(3564,545,'_elementor_version','2.6.8'),(3565,545,'_elementor_pro_version','2.6.5'),(3566,545,'_wp_page_template','default'),(3567,545,'_elementor_data','[{\"id\":\"55396f27\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":50,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Theatrical_Display_V003C.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"motion_fx_range\":\"viewport\",\"layout\":\"full_width\",\"column_position\":\"top\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"_title\":\"Section - INSIDIOUS HERO\",\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"background_motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_range\":\"viewport\"},\"elements\":[{\"id\":\"905a97c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ad7f3f6\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"162\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2489c07\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"c0bbe21\",\"elType\":\"widget\",\"settings\":{\"title\":\"#WHAT\'S COOL\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"dc881ae\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"18630a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"870a9ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"INNOVATIONS FROM ONDISPLAY CREATIVE\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7df48509\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"_title\":\"Section - LIVING STANDEES\"},\"elements\":[{\"id\":\"1147078d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"23bbc68\",\"elType\":\"widget\",\"settings\":{\"title\":\"LIVING STANDEES HAUNTING THEATERS\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b40d155\",\"elType\":\"widget\",\"settings\":{\"title\":\"ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"700\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86cff8b\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"225341d\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS \\u2013 THE LAST KEY\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a680ae8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"be59fa3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e36fe5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"d4d2039\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2.jpg\",\"id\":88},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3c9b758\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"79e122a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2-1.jpg\",\"id\":87},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3dc9df5\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"start\":0},\"elements\":[],\"widgetType\":\"video\"},{\"id\":\"b61a90b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"8f63560\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"08c588a\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS CHAPTER 3\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0e612c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>OnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7e77f5a\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"gap\":\"wide\"},\"elements\":[{\"id\":\"7eb5a21\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.332},\"elements\":[{\"id\":\"ae25867\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/image-asset.jpeg\",\"id\":196},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"24c773b\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":58},\"elements\":[{\"id\":\"93ad602\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/130807026\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"cb5dad6\",\"elType\":\"section\",\"settings\":{\"_title\":\"Inner Sedtion\"},\"elements\":[{\"id\":\"25cd114\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_title\":\"virtual reality experience\"},\"elements\":[{\"id\":\"15643ab\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"8ec2d0f\",\"elType\":\"widget\",\"settings\":{\"title\":\"VIRTUAL REALITY EXPERIENCE\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4e004ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"SPIDER-MAN HOMECOMING DISPLAY\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"73a2406\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Submerse yourself in the world of your friendly neighborhood Spider-Man in this fun and thrilling VR Theatrical Display.\\u00a0\\u00a0Based on the all-new 2017 film, the Spider-Man Homecoming VR Experience is a first-person look through the eyes of Spidey himself.<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"04b03b4\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7f4ffcc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"7f85dc5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":76,\"_title\":\"spiderman homecoming\"},\"elements\":[{\"id\":\"9a5a392\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Spidey_Home_V4_002.jpg\",\"id\":230},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"css_filters_css_filter\":\"custom\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"c16541a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":24,\"_title\":\"spiderman 2 vertical pics\"},\"elements\":[{\"id\":\"95b0eed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/IMG_3834.jpg\",\"id\":231},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8ea51a8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/IMG_3788.jpg\",\"id\":233}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"12d34c8\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"00\",\"bottom\":\"00\",\"left\":\"00\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"95003e6\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":435,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/TheStrangers_V01.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":4.9,\"sizes\":[]},\"layout\":\"full_width\",\"column_position\":\"top\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":68}},\"_title\":\"Section - STRANGERS HERO\",\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_translateY_direction\":\"negative\",\"background_xpos\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"background_motion_fx_range\":\"viewport\"},\"elements\":[{\"id\":\"b6deb1a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_title\":\"strangers prey at night\"},\"elements\":[{\"id\":\"7a350ee\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"70\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"ecd0cbe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"d684039\",\"elType\":\"widget\",\"settings\":{\"title\":\"THE STRANGERS PREY AT NIGHT\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"003eb99\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5fd9452\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"93ad64e\",\"elType\":\"widget\",\"settings\":{\"title\":\"GRAND FORMAT PHOTO-OP STANDEE\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"247aafb\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"_title\":\"Section - MARKETING AT ITS FINEST\"},\"elements\":[{\"id\":\"f002e93\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"d1321ed\",\"elType\":\"widget\",\"settings\":{\"title\":\"MARKETING AT ITS FINEST, TAILORED FOR SOCIAL MEDIA\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a16ef4e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>This theatrical display allows fans to take photos with Dollface, Pin-up Girl, the Man in the Mask and share their photos on social media.<\\/p>\",\"align\":\"center\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b58ab88\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"00ca412\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58},\"elements\":[{\"id\":\"032d3df\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/003.jpg\",\"id\":446},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"672c1f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42},\"elements\":[{\"id\":\"623f6d1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/26222472_170774200201231_6120473304701599744_n.jpg\",\"id\":447},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a641f07\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/VIDEO_COMING_SOON_01.jpg\",\"id\":449}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cf9e008\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"677b52c\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"31ae5e7\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":515,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/FREEBIRDS_V1B.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":4.9,\"sizes\":[]},\"layout\":\"full_width\",\"column_position\":\"top\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":68}},\"_title\":\"Section - THEATRICAL HERO\",\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_translateY_direction\":\"negative\",\"background_xpos\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"background_motion_fx_range\":\"viewport\"},\"elements\":[{\"id\":\"e45e9b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_title\":\"free birds\"},\"elements\":[{\"id\":\"68717d0\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"70\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"144d01b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"27b94bb\",\"elType\":\"widget\",\"settings\":{\"title\":\"THEATRICAL DISPLAYS\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"672b55e\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"16fbcce\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"ab6e6b7\",\"elType\":\"widget\",\"settings\":{\"title\":\"FREE BIRDS \\u2013 RESIN DISPLAY\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"42b76c7\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"_title\":\"Section - THEATRICAL DISPLAYS\"},\"elements\":[{\"id\":\"9fef846\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"9e16c55\",\"elType\":\"widget\",\"settings\":{\"title\":\"THEATRICAL DISPLAYS\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4a9d8d2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>OnDisplay Creative takes pride in its long history of leading the Entertainment Industry in creating and producing eye catching displays.<\\/p>\",\"align\":\"center\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"263fb63\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"42ecb50\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":68,\"_title\":\"spiderman homecoming\"},\"elements\":[{\"id\":\"fbd93cf\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/47Meters_02.jpg\",\"id\":518},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"align\":\"center\",\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2a3ff66\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":32,\"_title\":\"spiderman 2 vertical pics\"},\"elements\":[{\"id\":\"afb6c5e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/DFCV6gdXgAAoGDM.jpeg\",\"id\":520},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ad92bda\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/DEI2HYnW0AEERBl.jpeg\",\"id\":519}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"946f91d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"slideshow\",\"slides\":[{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Spidey_Home_V3.jpg\",\"id\":521},\"_id\":\"fb38f36\",\"type\":\"image\",\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/WarRoom_V1_002.jpg\",\"id\":524},\"_id\":\"a26cba3\",\"type\":\"image\",\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Mada3_01A_002.jpg\",\"id\":525},\"_id\":\"c815938\",\"type\":\"image\",\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/LOOZ_Standee_InTheater_2.jpg\",\"id\":526},\"_id\":\"4e65d42\",\"type\":\"image\",\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Thor-2.jpg\",\"id\":527},\"_id\":\"03a5179\",\"type\":\"image\",\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Echo_01A.jpg\",\"id\":528},\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"3604fe3\"},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Spidey_Home_V4_002-1.jpg\",\"id\":529},\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"f621837\"},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Hurricane-H_V1.jpg\",\"id\":530},\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"9f1174a\"},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Friend_Request.jpg\",\"id\":531},\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"2bec012\"},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/TheStrangers_V02_002.jpg\",\"id\":532},\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"8342d3b\"},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Kidnap2.jpg\",\"id\":533},\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"5ae447b\"},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/RfNight_01A_002.jpg\",\"id\":535},\"image_link_to_type\":\"file\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"56c21c6\"},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/AllSaints2_002.jpg\",\"id\":536},\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"dca9a78\"}],\"slideshow_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"slideshow_slides_per_view\":\"6\",\"thumbs_ratio\":\"43\",\"centered_slides\":\"yes\"},\"elements\":[],\"widgetType\":\"media-carousel\"},{\"id\":\"6bf6bab\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"d0a8d7e\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b45b58e\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":542,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Pets_HomeEnt_FrntP.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":4.9,\"sizes\":[]},\"layout\":\"full_width\",\"column_position\":\"top\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":68}},\"_title\":\"Section - HOME ENT HERO\",\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_translateY_direction\":\"negative\",\"background_xpos\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"background_motion_fx_range\":\"viewport\"},\"elements\":[{\"id\":\"b6af657\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_title\":\"secret life of pets\"},\"elements\":[{\"id\":\"8065946\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"70\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"121e9ec\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"3e5b110\",\"elType\":\"widget\",\"settings\":{\"title\":\"HOME ENTERTAINMENT\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"c4a68e0\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"0e38833\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"3f83c61\",\"elType\":\"widget\",\"settings\":{\"title\":\"THE SECRET LIFE OF PETS\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b747fda\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":700},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":900},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"_title\":\"our company bitches\"},\"elements\":[{\"id\":\"7eab781\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"43661634\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our company is a collective of amazing people striving to build delightful products.\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.4},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70cc6d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.<\\/p>\",\"align\":\"center\",\"text_color\":\"#686868\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"615dfb3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1000},\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"6414755f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3bb26eed\",\"elType\":\"widget\",\"settings\":{\"text\":\"Read More\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3},\"button_text_color\":\"#ffffff\",\"background_color\":\"rgba(0,0,0,0)\",\"hover_color\":\"#00ce1b\",\"button_hover_border_color\":\"#00ce1b\",\"hover_animation\":\"grow\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"123f6d1\",\"elType\":\"section\",\"settings\":{\"_title\":\"blank at bottom\"},\"elements\":[{\"id\":\"25fcf2e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"64f593f\",\"elType\":\"section\",\"settings\":{\"_title\":\"blank at bottom\"},\"elements\":[{\"id\":\"596f429\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(3568,545,'_elementor_edit_mode','builder'),(3569,545,'_elementor_elements_usage','a:10:{s:7:\"heading\";i:17;s:6:\"column\";i:30;s:7:\"section\";i:25;s:7:\"divider\";i:7;s:11:\"text-editor\";i:6;s:5:\"image\";i:12;s:5:\"video\";i:2;s:6:\"spacer\";i:3;s:14:\"media-carousel\";i:1;s:6:\"button\";i:1;}'),(3570,545,'_elementor_css','a:5:{s:4:\"time\";i:1569213792;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:1:{i:0;s:0:\"\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(3586,547,'_elementor_elements_usage','a:10:{s:7:\"heading\";i:17;s:6:\"column\";i:30;s:7:\"section\";i:25;s:7:\"divider\";i:7;s:11:\"text-editor\";i:6;s:5:\"image\";i:12;s:5:\"video\";i:2;s:6:\"spacer\";i:3;s:14:\"media-carousel\";i:1;s:6:\"button\";i:1;}'),(3585,547,'_elementor_edit_mode','builder'),(3583,547,'_wp_page_template','default'),(3584,547,'_elementor_data','[{\"id\":\"55396f27\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":50,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Theatrical_Display_V003C.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"motion_fx_range\":\"viewport\",\"layout\":\"full_width\",\"column_position\":\"top\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"_title\":\"Section - INSIDIOUS HERO\",\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"background_motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_range\":\"viewport\"},\"elements\":[{\"id\":\"905a97c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ad7f3f6\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"162\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2489c07\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"c0bbe21\",\"elType\":\"widget\",\"settings\":{\"title\":\"#WHAT\'S COOL\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"dc881ae\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"18630a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"870a9ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"INNOVATIONS FROM ONDISPLAY CREATIVE\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7df48509\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"_title\":\"Section - LIVING STANDEES\"},\"elements\":[{\"id\":\"1147078d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"23bbc68\",\"elType\":\"widget\",\"settings\":{\"title\":\"LIVING STANDEES HAUNTING THEATERS\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b40d155\",\"elType\":\"widget\",\"settings\":{\"title\":\"ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"700\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86cff8b\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"225341d\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS \\u2013 THE LAST KEY\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a680ae8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"be59fa3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e36fe5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"d4d2039\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2.jpg\",\"id\":88},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3c9b758\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"79e122a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2-1.jpg\",\"id\":87},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3dc9df5\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"start\":0},\"elements\":[],\"widgetType\":\"video\"},{\"id\":\"b61a90b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"8f63560\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"08c588a\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS CHAPTER 3\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0e612c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>OnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7e77f5a\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"gap\":\"wide\"},\"elements\":[{\"id\":\"7eb5a21\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.332},\"elements\":[{\"id\":\"ae25867\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/image-asset.jpeg\",\"id\":196},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"24c773b\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":58},\"elements\":[{\"id\":\"93ad602\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/130807026\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"cb5dad6\",\"elType\":\"section\",\"settings\":{\"_title\":\"Inner Sedtion\"},\"elements\":[{\"id\":\"25cd114\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_title\":\"virtual reality experience\"},\"elements\":[{\"id\":\"15643ab\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"8ec2d0f\",\"elType\":\"widget\",\"settings\":{\"title\":\"VIRTUAL REALITY EXPERIENCE\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4e004ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"SPIDER-MAN HOMECOMING DISPLAY\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"73a2406\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Submerse yourself in the world of your friendly neighborhood Spider-Man in this fun and thrilling VR Theatrical Display.\\u00a0\\u00a0Based on the all-new 2017 film, the Spider-Man Homecoming VR Experience is a first-person look through the eyes of Spidey himself.<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"04b03b4\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7f4ffcc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"7f85dc5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":76,\"_title\":\"spiderman homecoming\"},\"elements\":[{\"id\":\"9a5a392\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Spidey_Home_V4_002.jpg\",\"id\":230},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"css_filters_css_filter\":\"custom\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"c16541a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":24,\"_title\":\"spiderman 2 vertical pics\"},\"elements\":[{\"id\":\"95b0eed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/IMG_3834.jpg\",\"id\":231},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8ea51a8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/IMG_3788.jpg\",\"id\":233}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"12d34c8\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"00\",\"bottom\":\"00\",\"left\":\"00\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"95003e6\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":435,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/TheStrangers_V01.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":4.9,\"sizes\":[]},\"layout\":\"full_width\",\"column_position\":\"top\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":68}},\"_title\":\"Section - STRANGERS HERO\",\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_translateY_direction\":\"negative\",\"background_xpos\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"background_motion_fx_range\":\"viewport\"},\"elements\":[{\"id\":\"b6deb1a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_title\":\"strangers prey at night\"},\"elements\":[{\"id\":\"7a350ee\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"70\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"ecd0cbe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"d684039\",\"elType\":\"widget\",\"settings\":{\"title\":\"THE STRANGERS PREY AT NIGHT\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"003eb99\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5fd9452\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"93ad64e\",\"elType\":\"widget\",\"settings\":{\"title\":\"GRAND FORMAT PHOTO-OP STANDEE\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"247aafb\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"_title\":\"Section - MARKETING AT ITS FINEST\"},\"elements\":[{\"id\":\"f002e93\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"d1321ed\",\"elType\":\"widget\",\"settings\":{\"title\":\"MARKETING AT ITS FINEST, TAILORED FOR SOCIAL MEDIA\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a16ef4e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>This theatrical display allows fans to take photos with Dollface, Pin-up Girl, the Man in the Mask and share their photos on social media.<\\/p>\",\"align\":\"center\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b58ab88\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"00ca412\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58},\"elements\":[{\"id\":\"032d3df\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/003.jpg\",\"id\":446},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"672c1f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42},\"elements\":[{\"id\":\"623f6d1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/26222472_170774200201231_6120473304701599744_n.jpg\",\"id\":447},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a641f07\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/VIDEO_COMING_SOON_01.jpg\",\"id\":449}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cf9e008\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"677b52c\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"31ae5e7\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":515,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/FREEBIRDS_V1B.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":4.9,\"sizes\":[]},\"layout\":\"full_width\",\"column_position\":\"top\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":68}},\"_title\":\"Section - THEATRICAL HERO\",\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_translateY_direction\":\"negative\",\"background_xpos\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"background_motion_fx_range\":\"viewport\"},\"elements\":[{\"id\":\"e45e9b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_title\":\"free birds\"},\"elements\":[{\"id\":\"68717d0\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"70\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"144d01b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"27b94bb\",\"elType\":\"widget\",\"settings\":{\"title\":\"THEATRICAL DISPLAYS\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"672b55e\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"16fbcce\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"ab6e6b7\",\"elType\":\"widget\",\"settings\":{\"title\":\"FREE BIRDS \\u2013 RESIN DISPLAY\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"42b76c7\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"_title\":\"Section - THEATRICAL DISPLAYS\"},\"elements\":[{\"id\":\"9fef846\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"9e16c55\",\"elType\":\"widget\",\"settings\":{\"title\":\"THEATRICAL DISPLAYS\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4a9d8d2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>OnDisplay Creative takes pride in its long history of leading the Entertainment Industry in creating and producing eye catching displays.<\\/p>\",\"align\":\"center\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"263fb63\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"42ecb50\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":70,\"_title\":\"spiderman homecoming\"},\"elements\":[{\"id\":\"fbd93cf\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/47Meters_02.jpg\",\"id\":518},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"align\":\"center\",\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"custom_css\":\"selector img {\\n    height: 730px;\\n    object-fit: cover;\\n}\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2a3ff66\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":30,\"_title\":\"spiderman 2 vertical pics\"},\"elements\":[{\"id\":\"afb6c5e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/DFCV6gdXgAAoGDM.jpeg\",\"id\":520},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ad92bda\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/DEI2HYnW0AEERBl.jpeg\",\"id\":519}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"946f91d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"slideshow\",\"slides\":[{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Spidey_Home_V3.jpg\",\"id\":521},\"_id\":\"fb38f36\",\"type\":\"image\",\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/WarRoom_V1_002.jpg\",\"id\":524},\"_id\":\"a26cba3\",\"type\":\"image\",\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Mada3_01A_002.jpg\",\"id\":525},\"_id\":\"c815938\",\"type\":\"image\",\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/LOOZ_Standee_InTheater_2.jpg\",\"id\":526},\"_id\":\"4e65d42\",\"type\":\"image\",\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Thor-2.jpg\",\"id\":527},\"_id\":\"03a5179\",\"type\":\"image\",\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Echo_01A.jpg\",\"id\":528},\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"3604fe3\"},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Spidey_Home_V4_002-1.jpg\",\"id\":529},\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"f621837\"},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Hurricane-H_V1.jpg\",\"id\":530},\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"9f1174a\"},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Friend_Request.jpg\",\"id\":531},\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"2bec012\"},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/TheStrangers_V02_002.jpg\",\"id\":532},\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"8342d3b\"},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Kidnap2.jpg\",\"id\":533},\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"5ae447b\"},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/RfNight_01A_002.jpg\",\"id\":535},\"image_link_to_type\":\"file\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"56c21c6\"},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/AllSaints2_002.jpg\",\"id\":536},\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"dca9a78\"}],\"slideshow_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"slideshow_slides_per_view\":\"6\",\"thumbs_ratio\":\"43\",\"centered_slides\":\"yes\"},\"elements\":[],\"widgetType\":\"media-carousel\"},{\"id\":\"6bf6bab\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"d0a8d7e\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b45b58e\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":542,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Pets_HomeEnt_FrntP.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":4.9,\"sizes\":[]},\"layout\":\"full_width\",\"column_position\":\"top\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":68}},\"_title\":\"Section - HOME ENT HERO\",\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_translateY_direction\":\"negative\",\"background_xpos\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"background_motion_fx_range\":\"viewport\"},\"elements\":[{\"id\":\"b6af657\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_title\":\"secret life of pets\"},\"elements\":[{\"id\":\"8065946\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"70\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"121e9ec\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"3e5b110\",\"elType\":\"widget\",\"settings\":{\"title\":\"HOME ENTERTAINMENT\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"c4a68e0\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"0e38833\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"3f83c61\",\"elType\":\"widget\",\"settings\":{\"title\":\"THE SECRET LIFE OF PETS\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b747fda\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":700},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":900},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"_title\":\"our company bitches\"},\"elements\":[{\"id\":\"7eab781\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"43661634\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our company is a collective of amazing people striving to build delightful products.\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.4},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70cc6d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.<\\/p>\",\"align\":\"center\",\"text_color\":\"#686868\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"615dfb3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1000},\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"6414755f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3bb26eed\",\"elType\":\"widget\",\"settings\":{\"text\":\"Read More\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3},\"button_text_color\":\"#ffffff\",\"background_color\":\"rgba(0,0,0,0)\",\"hover_color\":\"#00ce1b\",\"button_hover_border_color\":\"#00ce1b\",\"hover_animation\":\"grow\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"123f6d1\",\"elType\":\"section\",\"settings\":{\"_title\":\"blank at bottom\"},\"elements\":[{\"id\":\"25fcf2e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"64f593f\",\"elType\":\"section\",\"settings\":{\"_title\":\"blank at bottom\"},\"elements\":[{\"id\":\"596f429\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(3580,547,'_elementor_template_type','post'),(3581,547,'_elementor_version','2.6.8'),(3582,547,'_elementor_pro_version','2.6.5'),(3587,547,'_elementor_css','a:5:{s:4:\"time\";i:1569338893;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:1:{i:0;s:0:\"\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(3590,548,'_elementor_pro_version','2.6.5'),(3591,548,'_wp_page_template','default'),(3592,548,'_elementor_data','[{\"id\":\"55396f27\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":50,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Theatrical_Display_V003C.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"motion_fx_range\":\"viewport\",\"layout\":\"full_width\",\"column_position\":\"top\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"_title\":\"Section - INSIDIOUS HERO\",\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"background_motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_range\":\"viewport\"},\"elements\":[{\"id\":\"905a97c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ad7f3f6\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"162\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2489c07\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"c0bbe21\",\"elType\":\"widget\",\"settings\":{\"title\":\"#WHAT\'S COOL\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"dc881ae\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"18630a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"870a9ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"INNOVATIONS FROM ONDISPLAY CREATIVE\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7df48509\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"_title\":\"Section - LIVING STANDEES\"},\"elements\":[{\"id\":\"1147078d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"23bbc68\",\"elType\":\"widget\",\"settings\":{\"title\":\"LIVING STANDEES HAUNTING THEATERS\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b40d155\",\"elType\":\"widget\",\"settings\":{\"title\":\"ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"700\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86cff8b\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"225341d\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS \\u2013 THE LAST KEY\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a680ae8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"be59fa3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e36fe5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"d4d2039\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2.jpg\",\"id\":88},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3c9b758\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"79e122a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2-1.jpg\",\"id\":87},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3dc9df5\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"start\":0},\"elements\":[],\"widgetType\":\"video\"},{\"id\":\"b61a90b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"8f63560\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"08c588a\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS CHAPTER 3\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0e612c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>OnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7e77f5a\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"gap\":\"wide\"},\"elements\":[{\"id\":\"7eb5a21\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.332},\"elements\":[{\"id\":\"ae25867\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/image-asset.jpeg\",\"id\":196},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"24c773b\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":58},\"elements\":[{\"id\":\"93ad602\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/130807026\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"cb5dad6\",\"elType\":\"section\",\"settings\":{\"_title\":\"Inner Sedtion\"},\"elements\":[{\"id\":\"25cd114\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_title\":\"virtual reality experience\"},\"elements\":[{\"id\":\"15643ab\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"8ec2d0f\",\"elType\":\"widget\",\"settings\":{\"title\":\"VIRTUAL REALITY EXPERIENCE\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4e004ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"SPIDER-MAN HOMECOMING DISPLAY\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"73a2406\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Submerse yourself in the world of your friendly neighborhood Spider-Man in this fun and thrilling VR Theatrical Display.\\u00a0\\u00a0Based on the all-new 2017 film, the Spider-Man Homecoming VR Experience is a first-person look through the eyes of Spidey himself.<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"04b03b4\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7f4ffcc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"7f85dc5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":76,\"_title\":\"spiderman homecoming\"},\"elements\":[{\"id\":\"9a5a392\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Spidey_Home_V4_002.jpg\",\"id\":230},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"css_filters_css_filter\":\"custom\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"c16541a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":24,\"_title\":\"spiderman 2 vertical pics\"},\"elements\":[{\"id\":\"95b0eed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/IMG_3834.jpg\",\"id\":231},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8ea51a8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/IMG_3788.jpg\",\"id\":233}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"12d34c8\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"00\",\"bottom\":\"00\",\"left\":\"00\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"95003e6\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":435,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/TheStrangers_V01.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":4.9,\"sizes\":[]},\"layout\":\"full_width\",\"column_position\":\"top\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":68}},\"_title\":\"Section - STRANGERS HERO\",\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_translateY_direction\":\"negative\",\"background_xpos\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"background_motion_fx_range\":\"viewport\"},\"elements\":[{\"id\":\"b6deb1a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_title\":\"strangers prey at night\"},\"elements\":[{\"id\":\"7a350ee\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"70\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"ecd0cbe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"d684039\",\"elType\":\"widget\",\"settings\":{\"title\":\"THE STRANGERS PREY AT NIGHT\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"003eb99\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5fd9452\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"93ad64e\",\"elType\":\"widget\",\"settings\":{\"title\":\"GRAND FORMAT PHOTO-OP STANDEE\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"247aafb\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"_title\":\"Section - MARKETING AT ITS FINEST\"},\"elements\":[{\"id\":\"f002e93\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"d1321ed\",\"elType\":\"widget\",\"settings\":{\"title\":\"MARKETING AT ITS FINEST, TAILORED FOR SOCIAL MEDIA\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a16ef4e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>This theatrical display allows fans to take photos with Dollface, Pin-up Girl, the Man in the Mask and share their photos on social media.<\\/p>\",\"align\":\"center\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b58ab88\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"00ca412\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58},\"elements\":[{\"id\":\"032d3df\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/003.jpg\",\"id\":446},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"672c1f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42},\"elements\":[{\"id\":\"623f6d1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/26222472_170774200201231_6120473304701599744_n.jpg\",\"id\":447},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a641f07\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/VIDEO_COMING_SOON_01.jpg\",\"id\":449}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cf9e008\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"677b52c\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"31ae5e7\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":515,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/FREEBIRDS_V1B.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":4.9,\"sizes\":[]},\"layout\":\"full_width\",\"column_position\":\"top\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":68}},\"_title\":\"Section - THEATRICAL HERO\",\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_translateY_direction\":\"negative\",\"background_xpos\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"background_motion_fx_range\":\"viewport\"},\"elements\":[{\"id\":\"e45e9b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_title\":\"free birds\"},\"elements\":[{\"id\":\"68717d0\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"70\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"144d01b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"27b94bb\",\"elType\":\"widget\",\"settings\":{\"title\":\"THEATRICAL DISPLAYS\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"672b55e\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"16fbcce\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"ab6e6b7\",\"elType\":\"widget\",\"settings\":{\"title\":\"FREE BIRDS \\u2013 RESIN DISPLAY\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"42b76c7\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"_title\":\"Section - THEATRICAL DISPLAYS\"},\"elements\":[{\"id\":\"9fef846\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"9e16c55\",\"elType\":\"widget\",\"settings\":{\"title\":\"THEATRICAL DISPLAYS\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4a9d8d2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>OnDisplay Creative takes pride in its long history of leading the Entertainment Industry in creating and producing eye catching displays.<\\/p>\",\"align\":\"center\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"263fb63\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"42ecb50\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":70,\"_title\":\"spiderman homecoming\"},\"elements\":[{\"id\":\"fbd93cf\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/47Meters_02.jpg\",\"id\":518},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"align\":\"center\",\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"custom_css\":\"selector img {\\n    height: 730px;\\n    object-fit: cover;\\n}\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2a3ff66\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":30,\"_title\":\"spiderman 2 vertical pics\"},\"elements\":[{\"id\":\"afb6c5e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/DFCV6gdXgAAoGDM.jpeg\",\"id\":520},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ad92bda\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/DEI2HYnW0AEERBl.jpeg\",\"id\":519}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"946f91d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"slideshow\",\"slides\":[{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Spidey_Home_V3.jpg\",\"id\":521},\"_id\":\"fb38f36\",\"type\":\"image\",\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/WarRoom_V1_002.jpg\",\"id\":524},\"_id\":\"a26cba3\",\"type\":\"image\",\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Mada3_01A_002.jpg\",\"id\":525},\"_id\":\"c815938\",\"type\":\"image\",\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/LOOZ_Standee_InTheater_2.jpg\",\"id\":526},\"_id\":\"4e65d42\",\"type\":\"image\",\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Thor-2.jpg\",\"id\":527},\"_id\":\"03a5179\",\"type\":\"image\",\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Echo_01A.jpg\",\"id\":528},\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"3604fe3\"},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Spidey_Home_V4_002-1.jpg\",\"id\":529},\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"f621837\"},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Hurricane-H_V1.jpg\",\"id\":530},\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"9f1174a\"},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Friend_Request.jpg\",\"id\":531},\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"2bec012\"},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/TheStrangers_V02_002.jpg\",\"id\":532},\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"8342d3b\"},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Kidnap2.jpg\",\"id\":533},\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"5ae447b\"},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/RfNight_01A_002.jpg\",\"id\":535},\"image_link_to_type\":\"file\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"56c21c6\"},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/AllSaints2_002.jpg\",\"id\":536},\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"dca9a78\"}],\"slideshow_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"slideshow_slides_per_view\":\"6\",\"thumbs_ratio\":\"43\",\"centered_slides\":\"yes\",\"autoplay_speed\":100},\"elements\":[],\"widgetType\":\"media-carousel\"},{\"id\":\"6bf6bab\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"d0a8d7e\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b45b58e\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":542,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Pets_HomeEnt_FrntP.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":4.9,\"sizes\":[]},\"layout\":\"full_width\",\"column_position\":\"top\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":68}},\"_title\":\"Section - HOME ENT HERO\",\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_translateY_direction\":\"negative\",\"background_xpos\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"background_motion_fx_range\":\"viewport\"},\"elements\":[{\"id\":\"b6af657\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_title\":\"secret life of pets\"},\"elements\":[{\"id\":\"8065946\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"70\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"121e9ec\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"3e5b110\",\"elType\":\"widget\",\"settings\":{\"title\":\"HOME ENTERTAINMENT\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"c4a68e0\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"0e38833\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"3f83c61\",\"elType\":\"widget\",\"settings\":{\"title\":\"THE SECRET LIFE OF PETS\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b747fda\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":700},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":900},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"_title\":\"our company bitches\"},\"elements\":[{\"id\":\"7eab781\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"43661634\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our company is a collective of amazing people striving to build delightful products.\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.4},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70cc6d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.<\\/p>\",\"align\":\"center\",\"text_color\":\"#686868\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"615dfb3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1000},\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"6414755f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3bb26eed\",\"elType\":\"widget\",\"settings\":{\"text\":\"Read More\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3},\"button_text_color\":\"#ffffff\",\"background_color\":\"rgba(0,0,0,0)\",\"hover_color\":\"#00ce1b\",\"button_hover_border_color\":\"#00ce1b\",\"hover_animation\":\"grow\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"123f6d1\",\"elType\":\"section\",\"settings\":{\"_title\":\"blank at bottom\"},\"elements\":[{\"id\":\"25fcf2e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"64f593f\",\"elType\":\"section\",\"settings\":{\"_title\":\"blank at bottom\"},\"elements\":[{\"id\":\"596f429\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(3593,548,'_elementor_edit_mode','builder'),(3594,548,'_elementor_elements_usage','a:10:{s:7:\"heading\";i:17;s:6:\"column\";i:30;s:7:\"section\";i:25;s:7:\"divider\";i:7;s:11:\"text-editor\";i:6;s:5:\"image\";i:12;s:5:\"video\";i:2;s:6:\"spacer\";i:3;s:14:\"media-carousel\";i:1;s:6:\"button\";i:1;}'),(3614,552,'_elementor_template_type','post'),(3615,552,'_elementor_version','2.6.8'),(3597,549,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:650;s:6:\"height\";i:751;s:4:\"file\";s:35:\"2019/09/47Meters_02_cropped.jpg.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"47Meters_02_cropped.jpg-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:35:\"47Meters_02_cropped.jpg-260x300.jpg\";s:5:\"width\";i:260;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3598,550,'_elementor_template_type','post'),(3599,550,'_elementor_version','2.6.8'),(3600,550,'_elementor_pro_version','2.6.5'),(3601,550,'_wp_page_template','default'),(3602,550,'_elementor_data','[{\"id\":\"55396f27\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":50,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Theatrical_Display_V003C.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"motion_fx_range\":\"viewport\",\"layout\":\"full_width\",\"column_position\":\"top\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"_title\":\"Section - INSIDIOUS HERO\",\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"background_motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_range\":\"viewport\"},\"elements\":[{\"id\":\"905a97c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ad7f3f6\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"162\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2489c07\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"c0bbe21\",\"elType\":\"widget\",\"settings\":{\"title\":\"#WHAT\'S COOL\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"dc881ae\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"18630a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"870a9ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"INNOVATIONS FROM ONDISPLAY CREATIVE\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7df48509\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"_title\":\"Section - LIVING STANDEES\"},\"elements\":[{\"id\":\"1147078d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"23bbc68\",\"elType\":\"widget\",\"settings\":{\"title\":\"LIVING STANDEES HAUNTING THEATERS\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b40d155\",\"elType\":\"widget\",\"settings\":{\"title\":\"ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"700\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86cff8b\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"225341d\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS \\u2013 THE LAST KEY\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a680ae8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"be59fa3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e36fe5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"d4d2039\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2.jpg\",\"id\":88},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3c9b758\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"79e122a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2-1.jpg\",\"id\":87},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3dc9df5\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"start\":0},\"elements\":[],\"widgetType\":\"video\"},{\"id\":\"b61a90b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"8f63560\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"08c588a\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS CHAPTER 3\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0e612c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>OnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7e77f5a\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"gap\":\"wide\"},\"elements\":[{\"id\":\"7eb5a21\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.332},\"elements\":[{\"id\":\"ae25867\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/image-asset.jpeg\",\"id\":196},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"24c773b\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":58},\"elements\":[{\"id\":\"93ad602\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/130807026\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"cb5dad6\",\"elType\":\"section\",\"settings\":{\"_title\":\"Inner Sedtion\"},\"elements\":[{\"id\":\"25cd114\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_title\":\"virtual reality experience\"},\"elements\":[{\"id\":\"15643ab\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"8ec2d0f\",\"elType\":\"widget\",\"settings\":{\"title\":\"VIRTUAL REALITY EXPERIENCE\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4e004ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"SPIDER-MAN HOMECOMING DISPLAY\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"73a2406\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Submerse yourself in the world of your friendly neighborhood Spider-Man in this fun and thrilling VR Theatrical Display.\\u00a0\\u00a0Based on the all-new 2017 film, the Spider-Man Homecoming VR Experience is a first-person look through the eyes of Spidey himself.<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"04b03b4\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7f4ffcc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"7f85dc5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":76,\"_title\":\"spiderman homecoming\"},\"elements\":[{\"id\":\"9a5a392\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Spidey_Home_V4_002.jpg\",\"id\":230},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"css_filters_css_filter\":\"custom\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"c16541a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":24,\"_title\":\"spiderman 2 vertical pics\"},\"elements\":[{\"id\":\"95b0eed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/IMG_3834.jpg\",\"id\":231},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8ea51a8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/IMG_3788.jpg\",\"id\":233}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"12d34c8\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"00\",\"bottom\":\"00\",\"left\":\"00\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"95003e6\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":435,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/TheStrangers_V01.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":4.9,\"sizes\":[]},\"layout\":\"full_width\",\"column_position\":\"top\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":68}},\"_title\":\"Section - STRANGERS HERO\",\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_translateY_direction\":\"negative\",\"background_xpos\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"background_motion_fx_range\":\"viewport\"},\"elements\":[{\"id\":\"b6deb1a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_title\":\"strangers prey at night\"},\"elements\":[{\"id\":\"7a350ee\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"70\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"ecd0cbe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"d684039\",\"elType\":\"widget\",\"settings\":{\"title\":\"THE STRANGERS PREY AT NIGHT\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"003eb99\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5fd9452\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"93ad64e\",\"elType\":\"widget\",\"settings\":{\"title\":\"GRAND FORMAT PHOTO-OP STANDEE\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"247aafb\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"_title\":\"Section - MARKETING AT ITS FINEST\"},\"elements\":[{\"id\":\"f002e93\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"d1321ed\",\"elType\":\"widget\",\"settings\":{\"title\":\"MARKETING AT ITS FINEST, TAILORED FOR SOCIAL MEDIA\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a16ef4e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>This theatrical display allows fans to take photos with Dollface, Pin-up Girl, the Man in the Mask and share their photos on social media.<\\/p>\",\"align\":\"center\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b58ab88\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"00ca412\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58},\"elements\":[{\"id\":\"032d3df\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/003.jpg\",\"id\":446},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"672c1f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42},\"elements\":[{\"id\":\"623f6d1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/26222472_170774200201231_6120473304701599744_n.jpg\",\"id\":447},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a641f07\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/VIDEO_COMING_SOON_01.jpg\",\"id\":449}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cf9e008\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"677b52c\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"31ae5e7\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":515,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/FREEBIRDS_V1B.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":4.9,\"sizes\":[]},\"layout\":\"full_width\",\"column_position\":\"top\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":68}},\"_title\":\"Section - THEATRICAL HERO\",\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_translateY_direction\":\"negative\",\"background_xpos\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"background_motion_fx_range\":\"viewport\"},\"elements\":[{\"id\":\"e45e9b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_title\":\"free birds\"},\"elements\":[{\"id\":\"68717d0\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"70\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"144d01b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"27b94bb\",\"elType\":\"widget\",\"settings\":{\"title\":\"THEATRICAL DISPLAYS\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"672b55e\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"16fbcce\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"ab6e6b7\",\"elType\":\"widget\",\"settings\":{\"title\":\"FREE BIRDS \\u2013 RESIN DISPLAY\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"42b76c7\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"_title\":\"Section - THEATRICAL DISPLAYS\"},\"elements\":[{\"id\":\"9fef846\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"9e16c55\",\"elType\":\"widget\",\"settings\":{\"title\":\"THEATRICAL DISPLAYS\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4a9d8d2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>OnDisplay Creative takes pride in its long history of leading the Entertainment Industry in creating and producing eye catching displays.<\\/p>\",\"align\":\"center\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"263fb63\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"42ecb50\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":70,\"_title\":\"spiderman homecoming\"},\"elements\":[{\"id\":\"fbd93cf\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/47Meters_02.jpg\",\"id\":518},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"align\":\"center\",\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"custom_css\":\"selector img {\\n    height: 730px;\\n    object-fit: cover;\\n}\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2a3ff66\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":30,\"_title\":\"spiderman 2 vertical pics\"},\"elements\":[{\"id\":\"afb6c5e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/DFCV6gdXgAAoGDM.jpeg\",\"id\":520},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ad92bda\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/DEI2HYnW0AEERBl.jpeg\",\"id\":519}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"946f91d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"slideshow\",\"slides\":[{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Spidey_Home_V3.jpg\",\"id\":521},\"_id\":\"fb38f36\",\"type\":\"image\",\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/WarRoom_V1_002.jpg\",\"id\":524},\"_id\":\"a26cba3\",\"type\":\"image\",\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Mada3_01A_002.jpg\",\"id\":525},\"_id\":\"c815938\",\"type\":\"image\",\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/LOOZ_Standee_InTheater_2.jpg\",\"id\":526},\"_id\":\"4e65d42\",\"type\":\"image\",\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Thor-2.jpg\",\"id\":527},\"_id\":\"03a5179\",\"type\":\"image\",\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Echo_01A.jpg\",\"id\":528},\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"3604fe3\"},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Spidey_Home_V4_002-1.jpg\",\"id\":529},\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"f621837\"},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Hurricane-H_V1.jpg\",\"id\":530},\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"9f1174a\"},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Friend_Request.jpg\",\"id\":531},\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"2bec012\"},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/TheStrangers_V02_002.jpg\",\"id\":532},\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"8342d3b\"},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Kidnap2.jpg\",\"id\":533},\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"5ae447b\"},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/RfNight_01A_002.jpg\",\"id\":535},\"image_link_to_type\":\"file\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"56c21c6\"},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/AllSaints2_002.jpg\",\"id\":536},\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"dca9a78\"}],\"slideshow_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"slideshow_slides_per_view\":\"6\",\"thumbs_ratio\":\"43\",\"centered_slides\":\"yes\",\"autoplay_speed\":100},\"elements\":[],\"widgetType\":\"media-carousel\"},{\"id\":\"6bf6bab\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"d0a8d7e\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b45b58e\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":542,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Pets_HomeEnt_FrntP.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":4.9,\"sizes\":[]},\"layout\":\"full_width\",\"column_position\":\"top\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":68}},\"_title\":\"Section - HOME ENT HERO\",\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_translateY_direction\":\"negative\",\"background_xpos\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"background_motion_fx_range\":\"viewport\"},\"elements\":[{\"id\":\"b6af657\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_title\":\"secret life of pets\"},\"elements\":[{\"id\":\"8065946\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"70\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"121e9ec\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"3e5b110\",\"elType\":\"widget\",\"settings\":{\"title\":\"HOME ENTERTAINMENT\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"c4a68e0\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"0e38833\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"3f83c61\",\"elType\":\"widget\",\"settings\":{\"title\":\"THE SECRET LIFE OF PETS\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b747fda\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":700},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":900},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"_title\":\"our company bitches\"},\"elements\":[{\"id\":\"7eab781\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"43661634\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our company is a collective of amazing people striving to build delightful products.\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.4},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70cc6d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.<\\/p>\",\"align\":\"center\",\"text_color\":\"#686868\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"615dfb3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1000},\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"6414755f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3bb26eed\",\"elType\":\"widget\",\"settings\":{\"text\":\"Read More\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3},\"button_text_color\":\"#ffffff\",\"background_color\":\"rgba(0,0,0,0)\",\"hover_color\":\"#00ce1b\",\"button_hover_border_color\":\"#00ce1b\",\"hover_animation\":\"grow\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"123f6d1\",\"elType\":\"section\",\"settings\":{\"_title\":\"blank at bottom\"},\"elements\":[{\"id\":\"25fcf2e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"64f593f\",\"elType\":\"section\",\"settings\":{\"_title\":\"blank at bottom\"},\"elements\":[{\"id\":\"596f429\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(3603,550,'_elementor_edit_mode','builder'),(3604,550,'_elementor_elements_usage','a:10:{s:7:\"heading\";i:17;s:6:\"column\";i:30;s:7:\"section\";i:25;s:7:\"divider\";i:7;s:11:\"text-editor\";i:6;s:5:\"image\";i:12;s:5:\"video\";i:2;s:6:\"spacer\";i:3;s:14:\"media-carousel\";i:1;s:6:\"button\";i:1;}'),(3605,550,'_elementor_css','a:5:{s:4:\"time\";i:1569360784;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:1:{i:0;s:0:\"\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(3607,551,'_elementor_version','2.6.8'),(3608,551,'_elementor_pro_version','2.6.5'),(3609,551,'_wp_page_template','default'),(3610,551,'_elementor_data','[{\"id\":\"55396f27\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":50,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Theatrical_Display_V003C.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"motion_fx_range\":\"viewport\",\"layout\":\"full_width\",\"column_position\":\"top\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"_title\":\"Section - INSIDIOUS HERO\",\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"background_motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_range\":\"viewport\"},\"elements\":[{\"id\":\"905a97c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ad7f3f6\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"162\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2489c07\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"c0bbe21\",\"elType\":\"widget\",\"settings\":{\"title\":\"#WHAT\'S COOL\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"dc881ae\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"18630a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"870a9ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"INNOVATIONS FROM ONDISPLAY CREATIVE\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7df48509\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"_title\":\"Section - LIVING STANDEES\"},\"elements\":[{\"id\":\"1147078d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"23bbc68\",\"elType\":\"widget\",\"settings\":{\"title\":\"LIVING STANDEES HAUNTING THEATERS\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b40d155\",\"elType\":\"widget\",\"settings\":{\"title\":\"ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"700\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86cff8b\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"225341d\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS \\u2013 THE LAST KEY\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a680ae8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"be59fa3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e36fe5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"d4d2039\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2.jpg\",\"id\":88},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3c9b758\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"79e122a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2-1.jpg\",\"id\":87},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3dc9df5\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"start\":0},\"elements\":[],\"widgetType\":\"video\"},{\"id\":\"b61a90b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"8f63560\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"08c588a\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS CHAPTER 3\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0e612c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>OnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7e77f5a\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"gap\":\"wide\"},\"elements\":[{\"id\":\"7eb5a21\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.332},\"elements\":[{\"id\":\"ae25867\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/image-asset.jpeg\",\"id\":196},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"24c773b\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":58},\"elements\":[{\"id\":\"93ad602\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/130807026\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"cb5dad6\",\"elType\":\"section\",\"settings\":{\"_title\":\"Inner Sedtion\"},\"elements\":[{\"id\":\"25cd114\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_title\":\"virtual reality experience\"},\"elements\":[{\"id\":\"15643ab\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"8ec2d0f\",\"elType\":\"widget\",\"settings\":{\"title\":\"VIRTUAL REALITY EXPERIENCE\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4e004ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"SPIDER-MAN HOMECOMING DISPLAY\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"73a2406\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Submerse yourself in the world of your friendly neighborhood Spider-Man in this fun and thrilling VR Theatrical Display.\\u00a0\\u00a0Based on the all-new 2017 film, the Spider-Man Homecoming VR Experience is a first-person look through the eyes of Spidey himself.<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"04b03b4\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7f4ffcc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"7f85dc5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":76,\"_title\":\"spiderman homecoming\"},\"elements\":[{\"id\":\"9a5a392\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Spidey_Home_V4_002.jpg\",\"id\":230},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"css_filters_css_filter\":\"custom\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"c16541a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":24,\"_title\":\"spiderman 2 vertical pics\"},\"elements\":[{\"id\":\"95b0eed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/IMG_3834.jpg\",\"id\":231},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8ea51a8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/IMG_3788.jpg\",\"id\":233}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"12d34c8\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"00\",\"bottom\":\"00\",\"left\":\"00\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"95003e6\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":435,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/TheStrangers_V01.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":4.9,\"sizes\":[]},\"layout\":\"full_width\",\"column_position\":\"top\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":68}},\"_title\":\"Section - STRANGERS HERO\",\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_translateY_direction\":\"negative\",\"background_xpos\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"background_motion_fx_range\":\"viewport\"},\"elements\":[{\"id\":\"b6deb1a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_title\":\"strangers prey at night\"},\"elements\":[{\"id\":\"7a350ee\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"70\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"ecd0cbe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"d684039\",\"elType\":\"widget\",\"settings\":{\"title\":\"THE STRANGERS PREY AT NIGHT\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"003eb99\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5fd9452\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"93ad64e\",\"elType\":\"widget\",\"settings\":{\"title\":\"GRAND FORMAT PHOTO-OP STANDEE\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"247aafb\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"_title\":\"Section - MARKETING AT ITS FINEST\"},\"elements\":[{\"id\":\"f002e93\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"d1321ed\",\"elType\":\"widget\",\"settings\":{\"title\":\"MARKETING AT ITS FINEST, TAILORED FOR SOCIAL MEDIA\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a16ef4e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>This theatrical display allows fans to take photos with Dollface, Pin-up Girl, the Man in the Mask and share their photos on social media.<\\/p>\",\"align\":\"center\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b58ab88\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"00ca412\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58},\"elements\":[{\"id\":\"032d3df\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/003.jpg\",\"id\":446},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"672c1f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42},\"elements\":[{\"id\":\"623f6d1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/26222472_170774200201231_6120473304701599744_n.jpg\",\"id\":447},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a641f07\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/VIDEO_COMING_SOON_01.jpg\",\"id\":449}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cf9e008\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"677b52c\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"31ae5e7\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":515,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/FREEBIRDS_V1B.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":4.9,\"sizes\":[]},\"layout\":\"full_width\",\"column_position\":\"top\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":68}},\"_title\":\"Section - THEATRICAL HERO\",\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_translateY_direction\":\"negative\",\"background_xpos\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"background_motion_fx_range\":\"viewport\"},\"elements\":[{\"id\":\"e45e9b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_title\":\"free birds\"},\"elements\":[{\"id\":\"68717d0\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"70\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"144d01b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"27b94bb\",\"elType\":\"widget\",\"settings\":{\"title\":\"THEATRICAL DISPLAYS\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"672b55e\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"16fbcce\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"ab6e6b7\",\"elType\":\"widget\",\"settings\":{\"title\":\"FREE BIRDS \\u2013 RESIN DISPLAY\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"42b76c7\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"_title\":\"Section - THEATRICAL DISPLAYS\"},\"elements\":[{\"id\":\"9fef846\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"9e16c55\",\"elType\":\"widget\",\"settings\":{\"title\":\"THEATRICAL DISPLAYS\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4a9d8d2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>OnDisplay Creative takes pride in its long history of leading the Entertainment Industry in creating and producing eye catching displays.<\\/p>\",\"align\":\"center\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"263fb63\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"42ecb50\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":70,\"_title\":\"spiderman homecoming\"},\"elements\":[{\"id\":\"fbd93cf\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/47Meters_02.jpg\",\"id\":518},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"align\":\"center\",\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2a3ff66\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":30,\"_title\":\"spiderman 2 vertical pics\"},\"elements\":[{\"id\":\"afb6c5e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/DFCV6gdXgAAoGDM.jpeg\",\"id\":520},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ad92bda\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/DEI2HYnW0AEERBl.jpeg\",\"id\":519}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"946f91d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"slideshow\",\"slides\":[{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Spidey_Home_V3.jpg\",\"id\":521},\"_id\":\"fb38f36\",\"type\":\"image\",\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/WarRoom_V1_002.jpg\",\"id\":524},\"_id\":\"a26cba3\",\"type\":\"image\",\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Mada3_01A_002.jpg\",\"id\":525},\"_id\":\"c815938\",\"type\":\"image\",\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/LOOZ_Standee_InTheater_2.jpg\",\"id\":526},\"_id\":\"4e65d42\",\"type\":\"image\",\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Thor-2.jpg\",\"id\":527},\"_id\":\"03a5179\",\"type\":\"image\",\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Echo_01A.jpg\",\"id\":528},\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"3604fe3\"},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Spidey_Home_V4_002-1.jpg\",\"id\":529},\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"f621837\"},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Hurricane-H_V1.jpg\",\"id\":530},\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"9f1174a\"},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Friend_Request.jpg\",\"id\":531},\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"2bec012\"},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/TheStrangers_V02_002.jpg\",\"id\":532},\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"8342d3b\"},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Kidnap2.jpg\",\"id\":533},\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"5ae447b\"},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/RfNight_01A_002.jpg\",\"id\":535},\"image_link_to_type\":\"file\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"56c21c6\"},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/AllSaints2_002.jpg\",\"id\":536},\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"dca9a78\"}],\"slideshow_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"slideshow_slides_per_view\":\"6\",\"thumbs_ratio\":\"43\",\"centered_slides\":\"yes\",\"autoplay_speed\":100},\"elements\":[],\"widgetType\":\"media-carousel\"},{\"id\":\"6bf6bab\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"d0a8d7e\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b45b58e\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":542,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Pets_HomeEnt_FrntP.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":4.9,\"sizes\":[]},\"layout\":\"full_width\",\"column_position\":\"top\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":68}},\"_title\":\"Section - HOME ENT HERO\",\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_translateY_direction\":\"negative\",\"background_xpos\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"background_motion_fx_range\":\"viewport\"},\"elements\":[{\"id\":\"b6af657\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_title\":\"secret life of pets\"},\"elements\":[{\"id\":\"8065946\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"70\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"121e9ec\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"3e5b110\",\"elType\":\"widget\",\"settings\":{\"title\":\"HOME ENTERTAINMENT\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"c4a68e0\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"0e38833\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"3f83c61\",\"elType\":\"widget\",\"settings\":{\"title\":\"THE SECRET LIFE OF PETS\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b747fda\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":700},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":900},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"_title\":\"our company bitches\"},\"elements\":[{\"id\":\"7eab781\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"43661634\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our company is a collective of amazing people striving to build delightful products.\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.4},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70cc6d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.<\\/p>\",\"align\":\"center\",\"text_color\":\"#686868\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"615dfb3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1000},\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"6414755f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3bb26eed\",\"elType\":\"widget\",\"settings\":{\"text\":\"Read More\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3},\"button_text_color\":\"#ffffff\",\"background_color\":\"rgba(0,0,0,0)\",\"hover_color\":\"#00ce1b\",\"button_hover_border_color\":\"#00ce1b\",\"hover_animation\":\"grow\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"123f6d1\",\"elType\":\"section\",\"settings\":{\"_title\":\"blank at bottom\"},\"elements\":[{\"id\":\"25fcf2e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"64f593f\",\"elType\":\"section\",\"settings\":{\"_title\":\"blank at bottom\"},\"elements\":[{\"id\":\"596f429\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(3611,551,'_elementor_edit_mode','builder'),(3612,551,'_elementor_elements_usage','a:10:{s:7:\"heading\";i:17;s:6:\"column\";i:30;s:7:\"section\";i:25;s:7:\"divider\";i:7;s:11:\"text-editor\";i:6;s:5:\"image\";i:12;s:5:\"video\";i:2;s:6:\"spacer\";i:3;s:14:\"media-carousel\";i:1;s:6:\"button\";i:1;}'),(3613,551,'_elementor_css','a:5:{s:4:\"time\";i:1569360784;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:1:{i:0;s:0:\"\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(3616,552,'_elementor_pro_version','2.6.5'),(3617,552,'_wp_page_template','default'),(3618,552,'_elementor_data','[{\"id\":\"55396f27\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":50,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Theatrical_Display_V003C.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"motion_fx_range\":\"viewport\",\"layout\":\"full_width\",\"column_position\":\"top\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"_title\":\"Section - INSIDIOUS HERO\",\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"background_motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_range\":\"viewport\"},\"elements\":[{\"id\":\"905a97c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ad7f3f6\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"162\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2489c07\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"c0bbe21\",\"elType\":\"widget\",\"settings\":{\"title\":\"#WHAT\'S COOL\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"dc881ae\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"18630a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"870a9ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"INNOVATIONS FROM ONDISPLAY CREATIVE\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7df48509\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"_title\":\"Section - LIVING STANDEES\"},\"elements\":[{\"id\":\"1147078d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"23bbc68\",\"elType\":\"widget\",\"settings\":{\"title\":\"LIVING STANDEES HAUNTING THEATERS\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b40d155\",\"elType\":\"widget\",\"settings\":{\"title\":\"ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"700\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86cff8b\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"225341d\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS \\u2013 THE LAST KEY\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a680ae8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"be59fa3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e36fe5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"d4d2039\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2.jpg\",\"id\":88},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3c9b758\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"79e122a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2-1.jpg\",\"id\":87},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3dc9df5\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"start\":0},\"elements\":[],\"widgetType\":\"video\"},{\"id\":\"b61a90b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"8f63560\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"08c588a\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS CHAPTER 3\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0e612c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>OnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7e77f5a\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"gap\":\"wide\"},\"elements\":[{\"id\":\"7eb5a21\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.332},\"elements\":[{\"id\":\"ae25867\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/image-asset.jpeg\",\"id\":196},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"24c773b\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":58},\"elements\":[{\"id\":\"93ad602\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/130807026\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"cb5dad6\",\"elType\":\"section\",\"settings\":{\"_title\":\"Inner Sedtion\"},\"elements\":[{\"id\":\"25cd114\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_title\":\"virtual reality experience\"},\"elements\":[{\"id\":\"15643ab\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"8ec2d0f\",\"elType\":\"widget\",\"settings\":{\"title\":\"VIRTUAL REALITY EXPERIENCE\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4e004ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"SPIDER-MAN HOMECOMING DISPLAY\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"73a2406\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Submerse yourself in the world of your friendly neighborhood Spider-Man in this fun and thrilling VR Theatrical Display.\\u00a0\\u00a0Based on the all-new 2017 film, the Spider-Man Homecoming VR Experience is a first-person look through the eyes of Spidey himself.<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"04b03b4\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7f4ffcc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"7f85dc5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":76,\"_title\":\"spiderman homecoming\"},\"elements\":[{\"id\":\"9a5a392\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Spidey_Home_V4_002.jpg\",\"id\":230},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"css_filters_css_filter\":\"custom\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"c16541a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":24,\"_title\":\"spiderman 2 vertical pics\"},\"elements\":[{\"id\":\"95b0eed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/IMG_3834.jpg\",\"id\":231},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8ea51a8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/IMG_3788.jpg\",\"id\":233}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"12d34c8\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"00\",\"bottom\":\"00\",\"left\":\"00\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"95003e6\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":435,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/TheStrangers_V01.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":4.9,\"sizes\":[]},\"layout\":\"full_width\",\"column_position\":\"top\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":68}},\"_title\":\"Section - STRANGERS HERO\",\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_translateY_direction\":\"negative\",\"background_xpos\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"background_motion_fx_range\":\"viewport\"},\"elements\":[{\"id\":\"b6deb1a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_title\":\"strangers prey at night\"},\"elements\":[{\"id\":\"7a350ee\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"70\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"ecd0cbe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"d684039\",\"elType\":\"widget\",\"settings\":{\"title\":\"THE STRANGERS PREY AT NIGHT\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"003eb99\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5fd9452\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"93ad64e\",\"elType\":\"widget\",\"settings\":{\"title\":\"GRAND FORMAT PHOTO-OP STANDEE\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"247aafb\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"_title\":\"Section - MARKETING AT ITS FINEST\"},\"elements\":[{\"id\":\"f002e93\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"d1321ed\",\"elType\":\"widget\",\"settings\":{\"title\":\"MARKETING AT ITS FINEST, TAILORED FOR SOCIAL MEDIA\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a16ef4e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>This theatrical display allows fans to take photos with Dollface, Pin-up Girl, the Man in the Mask and share their photos on social media.<\\/p>\",\"align\":\"center\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b58ab88\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"00ca412\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58},\"elements\":[{\"id\":\"032d3df\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/003.jpg\",\"id\":446},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"672c1f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42},\"elements\":[{\"id\":\"623f6d1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/26222472_170774200201231_6120473304701599744_n.jpg\",\"id\":447},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a641f07\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/VIDEO_COMING_SOON_01.jpg\",\"id\":449}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cf9e008\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"677b52c\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"31ae5e7\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":515,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/FREEBIRDS_V1B.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":4.9,\"sizes\":[]},\"layout\":\"full_width\",\"column_position\":\"top\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":68}},\"_title\":\"Section - THEATRICAL HERO\",\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_translateY_direction\":\"negative\",\"background_xpos\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"background_motion_fx_range\":\"viewport\"},\"elements\":[{\"id\":\"e45e9b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_title\":\"free birds\"},\"elements\":[{\"id\":\"68717d0\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"70\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"144d01b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"27b94bb\",\"elType\":\"widget\",\"settings\":{\"title\":\"THEATRICAL DISPLAYS\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"672b55e\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"16fbcce\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"ab6e6b7\",\"elType\":\"widget\",\"settings\":{\"title\":\"FREE BIRDS \\u2013 RESIN DISPLAY\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"42b76c7\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"_title\":\"Section - THEATRICAL DISPLAYS\"},\"elements\":[{\"id\":\"9fef846\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"9e16c55\",\"elType\":\"widget\",\"settings\":{\"title\":\"THEATRICAL DISPLAYS\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4a9d8d2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>OnDisplay Creative takes pride in its long history of leading the Entertainment Industry in creating and producing eye catching displays.<\\/p>\",\"align\":\"center\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"263fb63\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"42ecb50\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":69,\"_title\":\"spiderman homecoming\"},\"elements\":[{\"id\":\"fbd93cf\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/47Meters_02_cropped.jpg.jpg\",\"id\":549},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"align\":\"center\",\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2a3ff66\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":31,\"_title\":\"spiderman 2 vertical pics\"},\"elements\":[{\"id\":\"afb6c5e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/DFCV6gdXgAAoGDM.jpeg\",\"id\":520},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ad92bda\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/DEI2HYnW0AEERBl.jpeg\",\"id\":519}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"946f91d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"slideshow\",\"slides\":[{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Spidey_Home_V3.jpg\",\"id\":521},\"_id\":\"fb38f36\",\"type\":\"image\",\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/WarRoom_V1_002.jpg\",\"id\":524},\"_id\":\"a26cba3\",\"type\":\"image\",\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Mada3_01A_002.jpg\",\"id\":525},\"_id\":\"c815938\",\"type\":\"image\",\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/LOOZ_Standee_InTheater_2.jpg\",\"id\":526},\"_id\":\"4e65d42\",\"type\":\"image\",\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Thor-2.jpg\",\"id\":527},\"_id\":\"03a5179\",\"type\":\"image\",\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Echo_01A.jpg\",\"id\":528},\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"3604fe3\"},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Spidey_Home_V4_002-1.jpg\",\"id\":529},\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"f621837\"},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Hurricane-H_V1.jpg\",\"id\":530},\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"9f1174a\"},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Friend_Request.jpg\",\"id\":531},\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"2bec012\"},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/TheStrangers_V02_002.jpg\",\"id\":532},\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"8342d3b\"},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Kidnap2.jpg\",\"id\":533},\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"5ae447b\"},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/RfNight_01A_002.jpg\",\"id\":535},\"image_link_to_type\":\"file\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"56c21c6\"},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/AllSaints2_002.jpg\",\"id\":536},\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"dca9a78\"}],\"slideshow_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"slideshow_slides_per_view\":\"6\",\"thumbs_ratio\":\"43\",\"centered_slides\":\"yes\",\"autoplay_speed\":100},\"elements\":[],\"widgetType\":\"media-carousel\"},{\"id\":\"6bf6bab\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"d0a8d7e\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b45b58e\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":542,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Pets_HomeEnt_FrntP.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":4.9,\"sizes\":[]},\"layout\":\"full_width\",\"column_position\":\"top\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":68}},\"_title\":\"Section - HOME ENT HERO\",\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_translateY_direction\":\"negative\",\"background_xpos\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"background_motion_fx_range\":\"viewport\"},\"elements\":[{\"id\":\"b6af657\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_title\":\"secret life of pets\"},\"elements\":[{\"id\":\"8065946\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"70\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"121e9ec\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"3e5b110\",\"elType\":\"widget\",\"settings\":{\"title\":\"HOME ENTERTAINMENT\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"c4a68e0\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"0e38833\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"3f83c61\",\"elType\":\"widget\",\"settings\":{\"title\":\"THE SECRET LIFE OF PETS\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b747fda\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":700},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":900},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"_title\":\"our company bitches\"},\"elements\":[{\"id\":\"7eab781\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"43661634\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our company is a collective of amazing people striving to build delightful products.\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.4},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70cc6d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.<\\/p>\",\"align\":\"center\",\"text_color\":\"#686868\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"615dfb3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1000},\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"6414755f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3bb26eed\",\"elType\":\"widget\",\"settings\":{\"text\":\"Read More\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3},\"button_text_color\":\"#ffffff\",\"background_color\":\"rgba(0,0,0,0)\",\"hover_color\":\"#00ce1b\",\"button_hover_border_color\":\"#00ce1b\",\"hover_animation\":\"grow\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"123f6d1\",\"elType\":\"section\",\"settings\":{\"_title\":\"blank at bottom\"},\"elements\":[{\"id\":\"25fcf2e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"64f593f\",\"elType\":\"section\",\"settings\":{\"_title\":\"blank at bottom\"},\"elements\":[{\"id\":\"596f429\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(3619,552,'_elementor_edit_mode','builder'),(3620,552,'_elementor_elements_usage','a:10:{s:7:\"heading\";i:17;s:6:\"column\";i:30;s:7:\"section\";i:25;s:7:\"divider\";i:7;s:11:\"text-editor\";i:6;s:5:\"image\";i:12;s:5:\"video\";i:2;s:6:\"spacer\";i:3;s:14:\"media-carousel\";i:1;s:6:\"button\";i:1;}'),(3640,560,'_elementor_template_type','post'),(3641,560,'_elementor_version','2.6.8'),(3642,560,'_elementor_pro_version','2.6.5'),(3643,560,'_wp_page_template','default'),(3644,560,'_elementor_data','[{\"id\":\"55396f27\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":50,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Theatrical_Display_V003C.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"motion_fx_range\":\"viewport\",\"layout\":\"full_width\",\"column_position\":\"top\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"_title\":\"Section - INSIDIOUS HERO\",\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"background_motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_range\":\"viewport\"},\"elements\":[{\"id\":\"905a97c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ad7f3f6\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"162\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2489c07\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"c0bbe21\",\"elType\":\"widget\",\"settings\":{\"title\":\"#WHAT\'S COOL\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"dc881ae\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"18630a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"870a9ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"INNOVATIONS FROM ONDISPLAY CREATIVE\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7df48509\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"_title\":\"Section - LIVING STANDEES\"},\"elements\":[{\"id\":\"1147078d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"23bbc68\",\"elType\":\"widget\",\"settings\":{\"title\":\"LIVING STANDEES HAUNTING THEATERS\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b40d155\",\"elType\":\"widget\",\"settings\":{\"title\":\"ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"700\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86cff8b\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"225341d\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS \\u2013 THE LAST KEY\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a680ae8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"be59fa3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e36fe5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"d4d2039\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2.jpg\",\"id\":88},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3c9b758\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"79e122a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2-1.jpg\",\"id\":87},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3dc9df5\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"start\":0},\"elements\":[],\"widgetType\":\"video\"},{\"id\":\"b61a90b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"8f63560\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"08c588a\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS CHAPTER 3\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0e612c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>OnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7e77f5a\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"gap\":\"wide\"},\"elements\":[{\"id\":\"7eb5a21\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.332},\"elements\":[{\"id\":\"ae25867\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/image-asset.jpeg\",\"id\":196},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"24c773b\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":58},\"elements\":[{\"id\":\"93ad602\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/130807026\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"cb5dad6\",\"elType\":\"section\",\"settings\":{\"_title\":\"Inner Sedtion\"},\"elements\":[{\"id\":\"25cd114\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_title\":\"virtual reality experience\"},\"elements\":[{\"id\":\"15643ab\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"8ec2d0f\",\"elType\":\"widget\",\"settings\":{\"title\":\"VIRTUAL REALITY EXPERIENCE\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4e004ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"SPIDER-MAN HOMECOMING DISPLAY\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"73a2406\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Submerse yourself in the world of your friendly neighborhood Spider-Man in this fun and thrilling VR Theatrical Display.\\u00a0\\u00a0Based on the all-new 2017 film, the Spider-Man Homecoming VR Experience is a first-person look through the eyes of Spidey himself.<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"04b03b4\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7f4ffcc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"7f85dc5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":76,\"_title\":\"spiderman homecoming\"},\"elements\":[{\"id\":\"9a5a392\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Spidey_Home_V4_002.jpg\",\"id\":230},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"css_filters_css_filter\":\"custom\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"c16541a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":24,\"_title\":\"spiderman 2 vertical pics\"},\"elements\":[{\"id\":\"95b0eed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/IMG_3834.jpg\",\"id\":231},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8ea51a8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/IMG_3788.jpg\",\"id\":233}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"12d34c8\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"00\",\"bottom\":\"00\",\"left\":\"00\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"95003e6\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":435,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/TheStrangers_V01.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":4.9,\"sizes\":[]},\"layout\":\"full_width\",\"column_position\":\"top\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":68}},\"_title\":\"Section - STRANGERS HERO\",\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_translateY_direction\":\"negative\",\"background_xpos\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"background_motion_fx_range\":\"viewport\"},\"elements\":[{\"id\":\"b6deb1a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_title\":\"strangers prey at night\"},\"elements\":[{\"id\":\"7a350ee\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"70\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"ecd0cbe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"d684039\",\"elType\":\"widget\",\"settings\":{\"title\":\"THE STRANGERS PREY AT NIGHT\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"003eb99\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5fd9452\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"93ad64e\",\"elType\":\"widget\",\"settings\":{\"title\":\"GRAND FORMAT PHOTO-OP STANDEE\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"247aafb\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"_title\":\"Section - MARKETING AT ITS FINEST\"},\"elements\":[{\"id\":\"f002e93\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"d1321ed\",\"elType\":\"widget\",\"settings\":{\"title\":\"MARKETING AT ITS FINEST, TAILORED FOR SOCIAL MEDIA\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a16ef4e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>This theatrical display allows fans to take photos with Dollface, Pin-up Girl, the Man in the Mask and share their photos on social media.<\\/p>\",\"align\":\"center\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b58ab88\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"00ca412\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58},\"elements\":[{\"id\":\"032d3df\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/003.jpg\",\"id\":446},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"672c1f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42},\"elements\":[{\"id\":\"623f6d1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/26222472_170774200201231_6120473304701599744_n.jpg\",\"id\":447},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a641f07\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/VIDEO_COMING_SOON_01.jpg\",\"id\":449}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cf9e008\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"677b52c\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"31ae5e7\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":515,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/FREEBIRDS_V1B.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":4.9,\"sizes\":[]},\"layout\":\"full_width\",\"column_position\":\"top\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":68}},\"_title\":\"Section - THEATRICAL HERO\",\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_translateY_direction\":\"negative\",\"background_xpos\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"background_motion_fx_range\":\"viewport\"},\"elements\":[{\"id\":\"e45e9b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_title\":\"free birds\"},\"elements\":[{\"id\":\"68717d0\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"70\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"144d01b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"27b94bb\",\"elType\":\"widget\",\"settings\":{\"title\":\"THEATRICAL DISPLAYS\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"672b55e\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"16fbcce\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"ab6e6b7\",\"elType\":\"widget\",\"settings\":{\"title\":\"FREE BIRDS \\u2013 RESIN DISPLAY\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"42b76c7\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"_title\":\"Section - THEATRICAL DISPLAYS\"},\"elements\":[{\"id\":\"9fef846\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"9e16c55\",\"elType\":\"widget\",\"settings\":{\"title\":\"THEATRICAL DISPLAYS\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4a9d8d2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>OnDisplay Creative takes pride in its long history of leading the Entertainment Industry in creating and producing eye catching displays.<\\/p>\",\"align\":\"center\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"263fb63\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"42ecb50\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":69,\"_title\":\"spiderman homecoming\"},\"elements\":[{\"id\":\"fbd93cf\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/47Meters_02_cropped.jpg.jpg\",\"id\":549},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"align\":\"center\",\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2a3ff66\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":31,\"_title\":\"spiderman 2 vertical pics\"},\"elements\":[{\"id\":\"afb6c5e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/DFCV6gdXgAAoGDM.jpeg\",\"id\":520},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ad92bda\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/DEI2HYnW0AEERBl.jpeg\",\"id\":519}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"946f91d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"slideshow\",\"slides\":[{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Spidey_Home_V3.jpg\",\"id\":521},\"_id\":\"fb38f36\",\"type\":\"image\",\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/WarRoom_V1_002.jpg\",\"id\":524},\"_id\":\"a26cba3\",\"type\":\"image\",\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Mada3_01A_002.jpg\",\"id\":525},\"_id\":\"c815938\",\"type\":\"image\",\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/LOOZ_Standee_InTheater_2.jpg\",\"id\":526},\"_id\":\"4e65d42\",\"type\":\"image\",\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Thor-2.jpg\",\"id\":527},\"_id\":\"03a5179\",\"type\":\"image\",\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Echo_01A.jpg\",\"id\":528},\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"3604fe3\"},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Spidey_Home_V4_002-1.jpg\",\"id\":529},\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"f621837\"},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Hurricane-H_V1.jpg\",\"id\":530},\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"9f1174a\"},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Friend_Request.jpg\",\"id\":531},\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"2bec012\"},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/TheStrangers_V02_002.jpg\",\"id\":532},\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"8342d3b\"},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Kidnap2.jpg\",\"id\":533},\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"5ae447b\"},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/RfNight_01A_002.jpg\",\"id\":535},\"image_link_to_type\":\"file\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"56c21c6\"},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/AllSaints2_002.jpg\",\"id\":536},\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"dca9a78\"}],\"slideshow_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"slideshow_slides_per_view\":\"6\",\"thumbs_ratio\":\"43\",\"centered_slides\":\"yes\",\"autoplay_speed\":100},\"elements\":[],\"widgetType\":\"media-carousel\"},{\"id\":\"6bf6bab\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"d0a8d7e\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b45b58e\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":542,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Pets_HomeEnt_FrntP.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":4.9,\"sizes\":[]},\"layout\":\"full_width\",\"column_position\":\"top\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":68}},\"_title\":\"Section - HOME ENT HERO\",\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_translateY_direction\":\"negative\",\"background_xpos\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"background_motion_fx_range\":\"viewport\"},\"elements\":[{\"id\":\"b6af657\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_title\":\"secret life of pets\"},\"elements\":[{\"id\":\"8065946\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"70\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"121e9ec\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"3e5b110\",\"elType\":\"widget\",\"settings\":{\"title\":\"HOME ENTERTAINMENT\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"c4a68e0\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"0e38833\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"3f83c61\",\"elType\":\"widget\",\"settings\":{\"title\":\"THE SECRET LIFE OF PETS\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f43ab31\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"_title\":\"Section - HOME ENTERTAINMENT\"},\"elements\":[{\"id\":\"4398224\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"bd762d2\",\"elType\":\"widget\",\"settings\":{\"title\":\"HOME ENTERTAINMENT\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d49b5e2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>OnDisplay Creative works extensively with many major studios to provide the most effective marketing and merchandising materials. We have a vast understanding of the creative and production needs unique to the Entertainment Industry.<\\/p>\",\"align\":\"center\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f998468\",\"elType\":\"widget\",\"settings\":{\"skin\":\"slideshow\",\"slides\":[{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/SING-WOW_01.jpg\",\"id\":558},\"_id\":\"fb38f36\",\"type\":\"image\",\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/PETS_WOW_02.jpg\",\"id\":556},\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"cf0a445\"},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/BOURNE-WM-HC_01.jpg\",\"id\":555},\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"db277a6\"},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Barbie_01.jpg\",\"id\":554},\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"5e15e1d\"},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/PREPACKS_02.jpg\",\"id\":557},\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"ba3882b\"}],\"slideshow_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"slideshow_slides_per_view\":\"6\",\"thumbs_ratio\":\"43\",\"centered_slides\":\"yes\",\"autoplay_speed\":100},\"elements\":[],\"widgetType\":\"media-carousel\"},{\"id\":\"db06005\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"926e5d0\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b747fda\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":700},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":900},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"_title\":\"our company bitches\"},\"elements\":[{\"id\":\"7eab781\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"43661634\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our company is a collective of amazing people striving to build delightful products.\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.4},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70cc6d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.<\\/p>\",\"align\":\"center\",\"text_color\":\"#686868\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"615dfb3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1000},\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"6414755f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3bb26eed\",\"elType\":\"widget\",\"settings\":{\"text\":\"Read More\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3},\"button_text_color\":\"#ffffff\",\"background_color\":\"rgba(0,0,0,0)\",\"hover_color\":\"#00ce1b\",\"button_hover_border_color\":\"#00ce1b\",\"hover_animation\":\"grow\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"123f6d1\",\"elType\":\"section\",\"settings\":{\"_title\":\"blank at bottom\"},\"elements\":[{\"id\":\"25fcf2e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"64f593f\",\"elType\":\"section\",\"settings\":{\"_title\":\"blank at bottom\"},\"elements\":[{\"id\":\"596f429\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(3628,554,'_wp_attached_file','2019/09/Barbie_01.jpg'),(3629,554,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2500;s:6:\"height\";i:1630;s:4:\"file\";s:21:\"2019/09/Barbie_01.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"Barbie_01-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"Barbie_01-300x196.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:196;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:21:\"Barbie_01-768x501.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:501;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:22:\"Barbie_01-1024x668.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:668;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3630,555,'_wp_attached_file','2019/09/BOURNE-WM-HC_01.jpg'),(3631,555,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2500;s:6:\"height\";i:1630;s:4:\"file\";s:27:\"2019/09/BOURNE-WM-HC_01.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"BOURNE-WM-HC_01-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"BOURNE-WM-HC_01-300x196.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:196;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:27:\"BOURNE-WM-HC_01-768x501.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:501;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:28:\"BOURNE-WM-HC_01-1024x668.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:668;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3632,556,'_wp_attached_file','2019/09/PETS_WOW_02.jpg'),(3633,556,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2500;s:6:\"height\";i:1630;s:4:\"file\";s:23:\"2019/09/PETS_WOW_02.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"PETS_WOW_02-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"PETS_WOW_02-300x196.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:196;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:23:\"PETS_WOW_02-768x501.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:501;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:24:\"PETS_WOW_02-1024x668.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:668;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3634,557,'_wp_attached_file','2019/09/PREPACKS_02.jpg'),(3635,557,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2500;s:6:\"height\";i:1630;s:4:\"file\";s:23:\"2019/09/PREPACKS_02.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"PREPACKS_02-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"PREPACKS_02-300x196.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:196;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:23:\"PREPACKS_02-768x501.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:501;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:24:\"PREPACKS_02-1024x668.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:668;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3636,558,'_wp_attached_file','2019/09/SING-WOW_01.jpg'),(3637,558,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2500;s:6:\"height\";i:1630;s:4:\"file\";s:23:\"2019/09/SING-WOW_01.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"SING-WOW_01-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"SING-WOW_01-300x196.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:196;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:23:\"SING-WOW_01-768x501.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:501;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:24:\"SING-WOW_01-1024x668.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:668;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3638,559,'_wp_attached_file','2019/09/XMEN_APOC.jpg'),(3639,559,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2500;s:6:\"height\";i:1630;s:4:\"file\";s:21:\"2019/09/XMEN_APOC.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"XMEN_APOC-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"XMEN_APOC-300x196.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:196;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:21:\"XMEN_APOC-768x501.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:501;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:22:\"XMEN_APOC-1024x668.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:668;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3645,560,'_elementor_edit_mode','builder'),(3646,560,'_elementor_elements_usage','a:10:{s:7:\"heading\";i:18;s:6:\"column\";i:31;s:7:\"section\";i:26;s:7:\"divider\";i:8;s:11:\"text-editor\";i:7;s:5:\"image\";i:12;s:5:\"video\";i:2;s:6:\"spacer\";i:4;s:14:\"media-carousel\";i:2;s:6:\"button\";i:1;}'),(3647,561,'_wp_attached_file','2019/09/XMEN_APOC-1.jpg'),(3648,561,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2500;s:6:\"height\";i:1630;s:4:\"file\";s:23:\"2019/09/XMEN_APOC-1.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"XMEN_APOC-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"XMEN_APOC-1-300x196.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:196;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:23:\"XMEN_APOC-1-768x501.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:501;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:24:\"XMEN_APOC-1-1024x668.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:668;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3649,562,'_elementor_template_type','post'),(3650,562,'_elementor_version','2.6.8'),(3651,562,'_elementor_pro_version','2.6.5'),(3652,562,'_wp_page_template','default'),(3653,562,'_elementor_data','[{\"id\":\"55396f27\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":50,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Theatrical_Display_V003C.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"motion_fx_range\":\"viewport\",\"layout\":\"full_width\",\"column_position\":\"top\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"_title\":\"Section - INSIDIOUS HERO\",\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"background_motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_range\":\"viewport\"},\"elements\":[{\"id\":\"905a97c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ad7f3f6\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"162\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2489c07\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"c0bbe21\",\"elType\":\"widget\",\"settings\":{\"title\":\"#WHAT\'S COOL\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"dc881ae\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"18630a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"870a9ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"INNOVATIONS FROM ONDISPLAY CREATIVE\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7df48509\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"_title\":\"Section - LIVING STANDEES\"},\"elements\":[{\"id\":\"1147078d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"23bbc68\",\"elType\":\"widget\",\"settings\":{\"title\":\"LIVING STANDEES HAUNTING THEATERS\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b40d155\",\"elType\":\"widget\",\"settings\":{\"title\":\"ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"700\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86cff8b\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"225341d\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS \\u2013 THE LAST KEY\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a680ae8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"be59fa3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e36fe5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"d4d2039\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2.jpg\",\"id\":88},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3c9b758\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"79e122a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2-1.jpg\",\"id\":87},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3dc9df5\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"start\":0},\"elements\":[],\"widgetType\":\"video\"},{\"id\":\"b61a90b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"8f63560\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"08c588a\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS CHAPTER 3\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0e612c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>OnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7e77f5a\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"gap\":\"wide\"},\"elements\":[{\"id\":\"7eb5a21\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.332},\"elements\":[{\"id\":\"ae25867\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/image-asset.jpeg\",\"id\":196},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"24c773b\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":58},\"elements\":[{\"id\":\"93ad602\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/130807026\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"cb5dad6\",\"elType\":\"section\",\"settings\":{\"_title\":\"Inner Sedtion\"},\"elements\":[{\"id\":\"25cd114\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_title\":\"virtual reality experience\"},\"elements\":[{\"id\":\"15643ab\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"8ec2d0f\",\"elType\":\"widget\",\"settings\":{\"title\":\"VIRTUAL REALITY EXPERIENCE\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4e004ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"SPIDER-MAN HOMECOMING DISPLAY\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"73a2406\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Submerse yourself in the world of your friendly neighborhood Spider-Man in this fun and thrilling VR Theatrical Display.\\u00a0\\u00a0Based on the all-new 2017 film, the Spider-Man Homecoming VR Experience is a first-person look through the eyes of Spidey himself.<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"04b03b4\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7f4ffcc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"7f85dc5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":76,\"_title\":\"spiderman homecoming\"},\"elements\":[{\"id\":\"9a5a392\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Spidey_Home_V4_002.jpg\",\"id\":230},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"css_filters_css_filter\":\"custom\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"c16541a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":24,\"_title\":\"spiderman 2 vertical pics\"},\"elements\":[{\"id\":\"95b0eed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/IMG_3834.jpg\",\"id\":231},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8ea51a8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/IMG_3788.jpg\",\"id\":233}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"12d34c8\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"00\",\"bottom\":\"00\",\"left\":\"00\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"95003e6\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":435,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/TheStrangers_V01.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":4.9,\"sizes\":[]},\"layout\":\"full_width\",\"column_position\":\"top\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":68}},\"_title\":\"Section - STRANGERS HERO\",\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_translateY_direction\":\"negative\",\"background_xpos\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"background_motion_fx_range\":\"viewport\"},\"elements\":[{\"id\":\"b6deb1a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_title\":\"strangers prey at night\"},\"elements\":[{\"id\":\"7a350ee\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"70\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"ecd0cbe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"d684039\",\"elType\":\"widget\",\"settings\":{\"title\":\"THE STRANGERS PREY AT NIGHT\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"003eb99\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5fd9452\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"93ad64e\",\"elType\":\"widget\",\"settings\":{\"title\":\"GRAND FORMAT PHOTO-OP STANDEE\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"247aafb\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"_title\":\"Section - MARKETING AT ITS FINEST\"},\"elements\":[{\"id\":\"f002e93\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"d1321ed\",\"elType\":\"widget\",\"settings\":{\"title\":\"MARKETING AT ITS FINEST, TAILORED FOR SOCIAL MEDIA\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a16ef4e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>This theatrical display allows fans to take photos with Dollface, Pin-up Girl, the Man in the Mask and share their photos on social media.<\\/p>\",\"align\":\"center\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b58ab88\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"00ca412\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58},\"elements\":[{\"id\":\"032d3df\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/003.jpg\",\"id\":446},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"672c1f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42},\"elements\":[{\"id\":\"623f6d1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/26222472_170774200201231_6120473304701599744_n.jpg\",\"id\":447},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a641f07\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/VIDEO_COMING_SOON_01.jpg\",\"id\":449}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cf9e008\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"677b52c\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"31ae5e7\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":515,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/FREEBIRDS_V1B.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":4.9,\"sizes\":[]},\"layout\":\"full_width\",\"column_position\":\"top\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":68}},\"_title\":\"Section - THEATRICAL HERO\",\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_translateY_direction\":\"negative\",\"background_xpos\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"background_motion_fx_range\":\"viewport\"},\"elements\":[{\"id\":\"e45e9b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_title\":\"free birds\"},\"elements\":[{\"id\":\"68717d0\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"70\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"144d01b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"27b94bb\",\"elType\":\"widget\",\"settings\":{\"title\":\"THEATRICAL DISPLAYS\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"672b55e\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"16fbcce\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"ab6e6b7\",\"elType\":\"widget\",\"settings\":{\"title\":\"FREE BIRDS \\u2013 RESIN DISPLAY\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"42b76c7\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"_title\":\"Section - THEATRICAL DISPLAYS\"},\"elements\":[{\"id\":\"9fef846\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"9e16c55\",\"elType\":\"widget\",\"settings\":{\"title\":\"THEATRICAL DISPLAYS\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4a9d8d2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>OnDisplay Creative takes pride in its long history of leading the Entertainment Industry in creating and producing eye catching displays.<\\/p>\",\"align\":\"center\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"263fb63\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"42ecb50\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":69,\"_title\":\"spiderman homecoming\"},\"elements\":[{\"id\":\"fbd93cf\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/47Meters_02_cropped.jpg.jpg\",\"id\":549},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"align\":\"center\",\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2a3ff66\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":31,\"_title\":\"spiderman 2 vertical pics\"},\"elements\":[{\"id\":\"afb6c5e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/DFCV6gdXgAAoGDM.jpeg\",\"id\":520},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ad92bda\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/DEI2HYnW0AEERBl.jpeg\",\"id\":519}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"946f91d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"slideshow\",\"slides\":[{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Spidey_Home_V3.jpg\",\"id\":521},\"_id\":\"fb38f36\",\"type\":\"image\",\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/WarRoom_V1_002.jpg\",\"id\":524},\"_id\":\"a26cba3\",\"type\":\"image\",\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Mada3_01A_002.jpg\",\"id\":525},\"_id\":\"c815938\",\"type\":\"image\",\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/LOOZ_Standee_InTheater_2.jpg\",\"id\":526},\"_id\":\"4e65d42\",\"type\":\"image\",\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Thor-2.jpg\",\"id\":527},\"_id\":\"03a5179\",\"type\":\"image\",\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Echo_01A.jpg\",\"id\":528},\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"3604fe3\"},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Spidey_Home_V4_002-1.jpg\",\"id\":529},\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"f621837\"},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Hurricane-H_V1.jpg\",\"id\":530},\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"9f1174a\"},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Friend_Request.jpg\",\"id\":531},\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"2bec012\"},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/TheStrangers_V02_002.jpg\",\"id\":532},\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"8342d3b\"},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Kidnap2.jpg\",\"id\":533},\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"5ae447b\"},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/RfNight_01A_002.jpg\",\"id\":535},\"image_link_to_type\":\"file\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"56c21c6\"},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/AllSaints2_002.jpg\",\"id\":536},\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"dca9a78\"}],\"slideshow_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"slideshow_slides_per_view\":\"6\",\"thumbs_ratio\":\"43\",\"centered_slides\":\"yes\",\"autoplay_speed\":100},\"elements\":[],\"widgetType\":\"media-carousel\"},{\"id\":\"6bf6bab\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"d0a8d7e\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b45b58e\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":542,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Pets_HomeEnt_FrntP.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":4.9,\"sizes\":[]},\"layout\":\"full_width\",\"column_position\":\"top\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":68}},\"_title\":\"Section - HOME ENT HERO\",\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_translateY_direction\":\"negative\",\"background_xpos\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"background_motion_fx_range\":\"viewport\"},\"elements\":[{\"id\":\"b6af657\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_title\":\"secret life of pets\"},\"elements\":[{\"id\":\"8065946\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"70\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"121e9ec\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"3e5b110\",\"elType\":\"widget\",\"settings\":{\"title\":\"HOME ENTERTAINMENT\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"c4a68e0\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"0e38833\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"3f83c61\",\"elType\":\"widget\",\"settings\":{\"title\":\"THE SECRET LIFE OF PETS\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f43ab31\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"_title\":\"Section - HOME ENTERTAINMENT\"},\"elements\":[{\"id\":\"4398224\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"bd762d2\",\"elType\":\"widget\",\"settings\":{\"title\":\"HOME ENTERTAINMENT\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d49b5e2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>OnDisplay Creative works extensively with many major studios to provide the most effective marketing and merchandising materials. We have a vast understanding of the creative and production needs unique to the Entertainment Industry.<\\/p>\",\"align\":\"center\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f998468\",\"elType\":\"widget\",\"settings\":{\"skin\":\"slideshow\",\"slides\":[{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/SING-WOW_01.jpg\",\"id\":558},\"_id\":\"5601e8a\",\"type\":\"image\",\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/PETS_WOW_02.jpg\",\"id\":556},\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"cf0a445\"},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/BOURNE-WM-HC_01.jpg\",\"id\":555},\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"db277a6\"},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/XMEN_APOC-1.jpg\",\"id\":561},\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"8ee8473\"},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Barbie_01.jpg\",\"id\":554},\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"5e15e1d\"},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/PREPACKS_02.jpg\",\"id\":557},\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"76684ed\"}],\"slideshow_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"slideshow_slides_per_view\":\"6\",\"thumbs_ratio\":\"43\",\"centered_slides\":\"yes\",\"autoplay_speed\":100},\"elements\":[],\"widgetType\":\"media-carousel\"},{\"id\":\"db06005\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"926e5d0\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b747fda\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":700},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":900},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"_title\":\"our company bitches\"},\"elements\":[{\"id\":\"7eab781\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"43661634\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our company is a collective of amazing people striving to build delightful products.\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.4},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70cc6d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.<\\/p>\",\"align\":\"center\",\"text_color\":\"#686868\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"615dfb3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1000},\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"6414755f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3bb26eed\",\"elType\":\"widget\",\"settings\":{\"text\":\"Read More\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3},\"button_text_color\":\"#ffffff\",\"background_color\":\"rgba(0,0,0,0)\",\"hover_color\":\"#00ce1b\",\"button_hover_border_color\":\"#00ce1b\",\"hover_animation\":\"grow\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"123f6d1\",\"elType\":\"section\",\"settings\":{\"_title\":\"blank at bottom\"},\"elements\":[{\"id\":\"25fcf2e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"64f593f\",\"elType\":\"section\",\"settings\":{\"_title\":\"blank at bottom\"},\"elements\":[{\"id\":\"596f429\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(3654,562,'_elementor_edit_mode','builder'),(3655,562,'_elementor_elements_usage','a:10:{s:7:\"heading\";i:18;s:6:\"column\";i:31;s:7:\"section\";i:26;s:7:\"divider\";i:8;s:11:\"text-editor\";i:7;s:5:\"image\";i:12;s:5:\"video\";i:2;s:6:\"spacer\";i:4;s:14:\"media-carousel\";i:2;s:6:\"button\";i:1;}'),(3669,565,'_elementor_data','[{\"id\":\"55396f27\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":50,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Theatrical_Display_V003C.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"motion_fx_range\":\"viewport\",\"layout\":\"full_width\",\"column_position\":\"top\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"_title\":\"Section - INSIDIOUS HERO\",\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"background_motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_range\":\"viewport\"},\"elements\":[{\"id\":\"905a97c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ad7f3f6\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"162\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2489c07\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"c0bbe21\",\"elType\":\"widget\",\"settings\":{\"title\":\"#WHAT\'S COOL\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"dc881ae\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"18630a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"870a9ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"INNOVATIONS FROM ONDISPLAY CREATIVE\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7df48509\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"_title\":\"Section - LIVING STANDEES\"},\"elements\":[{\"id\":\"1147078d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"23bbc68\",\"elType\":\"widget\",\"settings\":{\"title\":\"LIVING STANDEES HAUNTING THEATERS\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b40d155\",\"elType\":\"widget\",\"settings\":{\"title\":\"ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"700\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86cff8b\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"225341d\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS \\u2013 THE LAST KEY\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a680ae8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"be59fa3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e36fe5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"d4d2039\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2.jpg\",\"id\":88},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3c9b758\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"79e122a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2-1.jpg\",\"id\":87},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3dc9df5\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"start\":0},\"elements\":[],\"widgetType\":\"video\"},{\"id\":\"b61a90b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"8f63560\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"08c588a\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS CHAPTER 3\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0e612c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>OnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7e77f5a\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"gap\":\"wide\"},\"elements\":[{\"id\":\"7eb5a21\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.332},\"elements\":[{\"id\":\"ae25867\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/image-asset.jpeg\",\"id\":196},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"24c773b\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":58},\"elements\":[{\"id\":\"93ad602\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/130807026\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"cb5dad6\",\"elType\":\"section\",\"settings\":{\"_title\":\"Inner Sedtion\"},\"elements\":[{\"id\":\"25cd114\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_title\":\"virtual reality experience\"},\"elements\":[{\"id\":\"15643ab\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"8ec2d0f\",\"elType\":\"widget\",\"settings\":{\"title\":\"VIRTUAL REALITY EXPERIENCE\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4e004ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"SPIDER-MAN HOMECOMING DISPLAY\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"73a2406\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Submerse yourself in the world of your friendly neighborhood Spider-Man in this fun and thrilling VR Theatrical Display.\\u00a0\\u00a0Based on the all-new 2017 film, the Spider-Man Homecoming VR Experience is a first-person look through the eyes of Spidey himself.<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"04b03b4\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7f4ffcc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"7f85dc5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":76,\"_title\":\"spiderman homecoming\"},\"elements\":[{\"id\":\"9a5a392\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Spidey_Home_V4_002.jpg\",\"id\":230},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"css_filters_css_filter\":\"custom\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"c16541a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":24,\"_title\":\"spiderman 2 vertical pics\"},\"elements\":[{\"id\":\"95b0eed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/IMG_3834.jpg\",\"id\":231},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8ea51a8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/IMG_3788.jpg\",\"id\":233}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"12d34c8\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"00\",\"bottom\":\"00\",\"left\":\"00\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"95003e6\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":435,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/TheStrangers_V01.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":4.9,\"sizes\":[]},\"layout\":\"full_width\",\"column_position\":\"top\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":68}},\"_title\":\"Section - STRANGERS HERO\",\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_translateY_direction\":\"negative\",\"background_xpos\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"background_motion_fx_range\":\"viewport\"},\"elements\":[{\"id\":\"b6deb1a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_title\":\"strangers prey at night\"},\"elements\":[{\"id\":\"7a350ee\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"70\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"ecd0cbe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"d684039\",\"elType\":\"widget\",\"settings\":{\"title\":\"THE STRANGERS PREY AT NIGHT\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"003eb99\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5fd9452\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"93ad64e\",\"elType\":\"widget\",\"settings\":{\"title\":\"GRAND FORMAT PHOTO-OP STANDEE\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"247aafb\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"_title\":\"Section - MARKETING AT ITS FINEST\"},\"elements\":[{\"id\":\"f002e93\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"d1321ed\",\"elType\":\"widget\",\"settings\":{\"title\":\"MARKETING AT ITS FINEST, TAILORED FOR SOCIAL MEDIA\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a16ef4e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>This theatrical display allows fans to take photos with Dollface, Pin-up Girl, the Man in the Mask and share their photos on social media.<\\/p>\",\"align\":\"center\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b58ab88\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"00ca412\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58},\"elements\":[{\"id\":\"032d3df\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/003.jpg\",\"id\":446},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"672c1f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42},\"elements\":[{\"id\":\"623f6d1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/26222472_170774200201231_6120473304701599744_n.jpg\",\"id\":447},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a641f07\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/VIDEO_COMING_SOON_01.jpg\",\"id\":449}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cf9e008\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"677b52c\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"31ae5e7\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":515,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/FREEBIRDS_V1B.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":4.9,\"sizes\":[]},\"layout\":\"full_width\",\"column_position\":\"top\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":68}},\"_title\":\"Section - THEATRICAL HERO\",\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_translateY_direction\":\"negative\",\"background_xpos\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"background_motion_fx_range\":\"viewport\"},\"elements\":[{\"id\":\"e45e9b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_title\":\"free birds\"},\"elements\":[{\"id\":\"68717d0\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"70\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"144d01b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"27b94bb\",\"elType\":\"widget\",\"settings\":{\"title\":\"THEATRICAL DISPLAYS\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"672b55e\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"16fbcce\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"ab6e6b7\",\"elType\":\"widget\",\"settings\":{\"title\":\"FREE BIRDS \\u2013 RESIN DISPLAY\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"42b76c7\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"_title\":\"Section - THEATRICAL DISPLAYS\"},\"elements\":[{\"id\":\"9fef846\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"9e16c55\",\"elType\":\"widget\",\"settings\":{\"title\":\"THEATRICAL DISPLAYS\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4a9d8d2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>OnDisplay Creative takes pride in its long history of leading the Entertainment Industry in creating and producing eye catching displays.<\\/p>\",\"align\":\"center\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"263fb63\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"42ecb50\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":69,\"_title\":\"spiderman homecoming\"},\"elements\":[{\"id\":\"fbd93cf\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/47Meters_02_cropped.jpg.jpg\",\"id\":549},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"align\":\"center\",\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2a3ff66\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":31,\"_title\":\"spiderman 2 vertical pics\"},\"elements\":[{\"id\":\"afb6c5e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/DFCV6gdXgAAoGDM.jpeg\",\"id\":520},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ad92bda\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/DEI2HYnW0AEERBl.jpeg\",\"id\":519}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"946f91d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"slideshow\",\"slides\":[{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Spidey_Home_V3.jpg\",\"id\":521},\"_id\":\"fb38f36\",\"type\":\"image\",\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/WarRoom_V1_002.jpg\",\"id\":524},\"_id\":\"a26cba3\",\"type\":\"image\",\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Mada3_01A_002.jpg\",\"id\":525},\"_id\":\"c815938\",\"type\":\"image\",\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/LOOZ_Standee_InTheater_2.jpg\",\"id\":526},\"_id\":\"4e65d42\",\"type\":\"image\",\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Thor-2.jpg\",\"id\":527},\"_id\":\"03a5179\",\"type\":\"image\",\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Echo_01A.jpg\",\"id\":528},\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"3604fe3\"},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Spidey_Home_V4_002-1.jpg\",\"id\":529},\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"f621837\"},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Hurricane-H_V1.jpg\",\"id\":530},\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"9f1174a\"},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Friend_Request.jpg\",\"id\":531},\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"2bec012\"},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/TheStrangers_V02_002.jpg\",\"id\":532},\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"8342d3b\"},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Kidnap2.jpg\",\"id\":533},\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"5ae447b\"},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/RfNight_01A_002.jpg\",\"id\":535},\"image_link_to_type\":\"file\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"56c21c6\"},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/AllSaints2_002.jpg\",\"id\":536},\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"dca9a78\"}],\"slideshow_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"slideshow_slides_per_view\":\"6\",\"thumbs_ratio\":\"43\",\"centered_slides\":\"yes\",\"autoplay_speed\":100},\"elements\":[],\"widgetType\":\"media-carousel\"},{\"id\":\"6bf6bab\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"d0a8d7e\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b45b58e\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":542,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Pets_HomeEnt_FrntP.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":4.9,\"sizes\":[]},\"layout\":\"full_width\",\"column_position\":\"top\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":68}},\"_title\":\"Section - HOME ENT HERO\",\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_translateY_direction\":\"negative\",\"background_xpos\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"background_motion_fx_range\":\"viewport\"},\"elements\":[{\"id\":\"b6af657\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_title\":\"secret life of pets\"},\"elements\":[{\"id\":\"8065946\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"70\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"121e9ec\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"3e5b110\",\"elType\":\"widget\",\"settings\":{\"title\":\"HOME ENTERTAINMENT\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"c4a68e0\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"0e38833\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"3f83c61\",\"elType\":\"widget\",\"settings\":{\"title\":\"THE SECRET LIFE OF PETS\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f43ab31\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"_title\":\"Section - HOME ENTERTAINMENT\"},\"elements\":[{\"id\":\"4398224\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"bd762d2\",\"elType\":\"widget\",\"settings\":{\"title\":\"HOME ENTERTAINMENT\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d49b5e2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>OnDisplay Creative works extensively with many major studios to provide the most effective marketing and merchandising materials. We have a vast understanding of the creative and production needs unique to the Entertainment Industry.<\\/p>\",\"align\":\"center\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f998468\",\"elType\":\"widget\",\"settings\":{\"skin\":\"slideshow\",\"slides\":[{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/SING-WOW_01.jpg\",\"id\":558},\"_id\":\"5601e8a\",\"type\":\"image\",\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/PETS_WOW_02.jpg\",\"id\":556},\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"cf0a445\"},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/BOURNE-WM-HC_01.jpg\",\"id\":555},\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"db277a6\"},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/XMEN_APOC-1.jpg\",\"id\":561},\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"8ee8473\"},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Barbie_01.jpg\",\"id\":554},\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"5e15e1d\"},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/PREPACKS_02.jpg\",\"id\":557},\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"76684ed\"}],\"slideshow_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"slideshow_slides_per_view\":\"6\",\"thumbs_ratio\":\"43\",\"centered_slides\":\"yes\",\"autoplay_speed\":100},\"elements\":[],\"widgetType\":\"media-carousel\"},{\"id\":\"db06005\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"926e5d0\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"81a9415\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":564,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Summer_1.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":4.9,\"sizes\":[]},\"layout\":\"full_width\",\"column_position\":\"top\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":68}},\"_title\":\"Section - RETAIL HERO\",\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_translateY_direction\":\"negative\",\"background_xpos\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"background_motion_fx_range\":\"viewport\"},\"elements\":[{\"id\":\"db3fd34\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_title\":\"secret life of pets\"},\"elements\":[{\"id\":\"e57b2ef\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"70\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"6ba3ffc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"ed64037\",\"elType\":\"widget\",\"settings\":{\"title\":\"RETAIL\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9ea645d\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f6d6d26\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"46aa82e\",\"elType\":\"widget\",\"settings\":{\"title\":\"SUMMER SALE EVENT - OLD NAVY\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b747fda\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":700},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":900},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"_title\":\"our company bitches\"},\"elements\":[{\"id\":\"7eab781\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"43661634\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our company is a collective of amazing people striving to build delightful products.\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.4},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70cc6d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.<\\/p>\",\"align\":\"center\",\"text_color\":\"#686868\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"615dfb3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1000},\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"6414755f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3bb26eed\",\"elType\":\"widget\",\"settings\":{\"text\":\"Read More\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3},\"button_text_color\":\"#ffffff\",\"background_color\":\"rgba(0,0,0,0)\",\"hover_color\":\"#00ce1b\",\"button_hover_border_color\":\"#00ce1b\",\"hover_animation\":\"grow\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"123f6d1\",\"elType\":\"section\",\"settings\":{\"_title\":\"blank at bottom\"},\"elements\":[{\"id\":\"25fcf2e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"64f593f\",\"elType\":\"section\",\"settings\":{\"_title\":\"blank at bottom\"},\"elements\":[{\"id\":\"596f429\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(3665,565,'_elementor_template_type','post'),(3666,565,'_elementor_version','2.6.8'),(3667,565,'_elementor_pro_version','2.6.5'),(3668,565,'_wp_page_template','default'),(3663,564,'_wp_attached_file','2019/09/Summer_1.jpg'),(3664,564,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2500;s:6:\"height\";i:1875;s:4:\"file\";s:20:\"2019/09/Summer_1.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"Summer_1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"Summer_1-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:20:\"Summer_1-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"Summer_1-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3670,565,'_elementor_edit_mode','builder'),(3671,565,'_elementor_elements_usage','a:10:{s:7:\"heading\";i:20;s:6:\"column\";i:34;s:7:\"section\";i:29;s:7:\"divider\";i:8;s:11:\"text-editor\";i:7;s:5:\"image\";i:12;s:5:\"video\";i:2;s:6:\"spacer\";i:4;s:14:\"media-carousel\";i:2;s:6:\"button\";i:1;}'),(3679,567,'_elementor_template_type','post'),(3680,567,'_elementor_version','2.6.8'),(3681,567,'_elementor_pro_version','2.6.5'),(3682,567,'_wp_page_template','default'),(3683,567,'_elementor_data','[{\"id\":\"55396f27\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":50,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Theatrical_Display_V003C.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"motion_fx_range\":\"viewport\",\"layout\":\"full_width\",\"column_position\":\"top\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"_title\":\"Section - INSIDIOUS HERO\",\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"background_motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_range\":\"viewport\"},\"elements\":[{\"id\":\"905a97c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ad7f3f6\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"162\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2489c07\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"c0bbe21\",\"elType\":\"widget\",\"settings\":{\"title\":\"#WHAT\'S COOL\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"dc881ae\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"18630a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"870a9ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"INNOVATIONS FROM ONDISPLAY CREATIVE\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7df48509\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"_title\":\"Section - LIVING STANDEES\"},\"elements\":[{\"id\":\"1147078d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"23bbc68\",\"elType\":\"widget\",\"settings\":{\"title\":\"LIVING STANDEES HAUNTING THEATERS\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b40d155\",\"elType\":\"widget\",\"settings\":{\"title\":\"ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"700\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86cff8b\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"225341d\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS \\u2013 THE LAST KEY\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a680ae8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"be59fa3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e36fe5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"d4d2039\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2.jpg\",\"id\":88},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3c9b758\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"79e122a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2-1.jpg\",\"id\":87},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3dc9df5\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"start\":0},\"elements\":[],\"widgetType\":\"video\"},{\"id\":\"b61a90b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"8f63560\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"08c588a\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS CHAPTER 3\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0e612c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>OnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7e77f5a\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"gap\":\"wide\"},\"elements\":[{\"id\":\"7eb5a21\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.332},\"elements\":[{\"id\":\"ae25867\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/image-asset.jpeg\",\"id\":196},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"24c773b\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":58},\"elements\":[{\"id\":\"93ad602\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/130807026\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"cb5dad6\",\"elType\":\"section\",\"settings\":{\"_title\":\"Inner Sedtion\"},\"elements\":[{\"id\":\"25cd114\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_title\":\"virtual reality experience\"},\"elements\":[{\"id\":\"15643ab\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"8ec2d0f\",\"elType\":\"widget\",\"settings\":{\"title\":\"VIRTUAL REALITY EXPERIENCE\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4e004ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"SPIDER-MAN HOMECOMING DISPLAY\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"73a2406\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Submerse yourself in the world of your friendly neighborhood Spider-Man in this fun and thrilling VR Theatrical Display.\\u00a0\\u00a0Based on the all-new 2017 film, the Spider-Man Homecoming VR Experience is a first-person look through the eyes of Spidey himself.<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"04b03b4\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7f4ffcc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"7f85dc5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":76,\"_title\":\"spiderman homecoming\"},\"elements\":[{\"id\":\"9a5a392\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Spidey_Home_V4_002.jpg\",\"id\":230},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"css_filters_css_filter\":\"custom\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"c16541a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":24,\"_title\":\"spiderman 2 vertical pics\"},\"elements\":[{\"id\":\"95b0eed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/IMG_3834.jpg\",\"id\":231},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8ea51a8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/IMG_3788.jpg\",\"id\":233}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"12d34c8\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"00\",\"bottom\":\"00\",\"left\":\"00\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"95003e6\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":435,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/TheStrangers_V01.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":4.9,\"sizes\":[]},\"layout\":\"full_width\",\"column_position\":\"top\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":68}},\"_title\":\"Section - STRANGERS HERO\",\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_translateY_direction\":\"negative\",\"background_xpos\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"background_motion_fx_range\":\"viewport\"},\"elements\":[{\"id\":\"b6deb1a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_title\":\"strangers prey at night\"},\"elements\":[{\"id\":\"7a350ee\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"70\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"ecd0cbe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"d684039\",\"elType\":\"widget\",\"settings\":{\"title\":\"THE STRANGERS PREY AT NIGHT\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"003eb99\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5fd9452\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"93ad64e\",\"elType\":\"widget\",\"settings\":{\"title\":\"GRAND FORMAT PHOTO-OP STANDEE\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"247aafb\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"_title\":\"Section - MARKETING AT ITS FINEST\"},\"elements\":[{\"id\":\"f002e93\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"d1321ed\",\"elType\":\"widget\",\"settings\":{\"title\":\"MARKETING AT ITS FINEST, TAILORED FOR SOCIAL MEDIA\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a16ef4e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>This theatrical display allows fans to take photos with Dollface, Pin-up Girl, the Man in the Mask and share their photos on social media.<\\/p>\",\"align\":\"center\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b58ab88\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"00ca412\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58},\"elements\":[{\"id\":\"032d3df\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/003.jpg\",\"id\":446},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"672c1f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42},\"elements\":[{\"id\":\"623f6d1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/26222472_170774200201231_6120473304701599744_n.jpg\",\"id\":447},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a641f07\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/VIDEO_COMING_SOON_01.jpg\",\"id\":449}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cf9e008\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"677b52c\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"31ae5e7\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":515,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/FREEBIRDS_V1B.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":4.9,\"sizes\":[]},\"layout\":\"full_width\",\"column_position\":\"top\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":68}},\"_title\":\"Section - THEATRICAL HERO\",\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_translateY_direction\":\"negative\",\"background_xpos\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"background_motion_fx_range\":\"viewport\"},\"elements\":[{\"id\":\"e45e9b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_title\":\"free birds\"},\"elements\":[{\"id\":\"68717d0\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"70\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"144d01b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"27b94bb\",\"elType\":\"widget\",\"settings\":{\"title\":\"THEATRICAL DISPLAYS\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"672b55e\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"16fbcce\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"ab6e6b7\",\"elType\":\"widget\",\"settings\":{\"title\":\"FREE BIRDS \\u2013 RESIN DISPLAY\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"42b76c7\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"_title\":\"Section - THEATRICAL DISPLAYS\"},\"elements\":[{\"id\":\"9fef846\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"9e16c55\",\"elType\":\"widget\",\"settings\":{\"title\":\"THEATRICAL DISPLAYS\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4a9d8d2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>OnDisplay Creative takes pride in its long history of leading the Entertainment Industry in creating and producing eye catching displays.<\\/p>\",\"align\":\"center\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"263fb63\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"42ecb50\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":69,\"_title\":\"spiderman homecoming\"},\"elements\":[{\"id\":\"fbd93cf\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/47Meters_02_cropped.jpg.jpg\",\"id\":549},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"align\":\"center\",\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2a3ff66\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":31,\"_title\":\"spiderman 2 vertical pics\"},\"elements\":[{\"id\":\"afb6c5e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/DFCV6gdXgAAoGDM.jpeg\",\"id\":520},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ad92bda\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/DEI2HYnW0AEERBl.jpeg\",\"id\":519}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"946f91d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"slideshow\",\"slides\":[{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Spidey_Home_V3.jpg\",\"id\":521},\"_id\":\"fb38f36\",\"type\":\"image\",\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/WarRoom_V1_002.jpg\",\"id\":524},\"_id\":\"a26cba3\",\"type\":\"image\",\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Mada3_01A_002.jpg\",\"id\":525},\"_id\":\"c815938\",\"type\":\"image\",\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/LOOZ_Standee_InTheater_2.jpg\",\"id\":526},\"_id\":\"4e65d42\",\"type\":\"image\",\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Thor-2.jpg\",\"id\":527},\"_id\":\"03a5179\",\"type\":\"image\",\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Echo_01A.jpg\",\"id\":528},\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"3604fe3\"},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Spidey_Home_V4_002-1.jpg\",\"id\":529},\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"f621837\"},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Hurricane-H_V1.jpg\",\"id\":530},\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"9f1174a\"},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Friend_Request.jpg\",\"id\":531},\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"2bec012\"},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/TheStrangers_V02_002.jpg\",\"id\":532},\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"8342d3b\"},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Kidnap2.jpg\",\"id\":533},\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"5ae447b\"},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/RfNight_01A_002.jpg\",\"id\":535},\"image_link_to_type\":\"file\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"56c21c6\"},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/AllSaints2_002.jpg\",\"id\":536},\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"dca9a78\"}],\"slideshow_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"slideshow_slides_per_view\":\"6\",\"thumbs_ratio\":\"43\",\"centered_slides\":\"yes\",\"autoplay_speed\":100},\"elements\":[],\"widgetType\":\"media-carousel\"},{\"id\":\"6bf6bab\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"d0a8d7e\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b45b58e\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":542,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Pets_HomeEnt_FrntP.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":4.9,\"sizes\":[]},\"layout\":\"full_width\",\"column_position\":\"top\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":68}},\"_title\":\"Section - HOME ENT HERO\",\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_translateY_direction\":\"negative\",\"background_xpos\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"background_motion_fx_range\":\"viewport\"},\"elements\":[{\"id\":\"b6af657\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_title\":\"secret life of pets\"},\"elements\":[{\"id\":\"8065946\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"70\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"121e9ec\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"3e5b110\",\"elType\":\"widget\",\"settings\":{\"title\":\"HOME ENTERTAINMENT\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"c4a68e0\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"0e38833\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"3f83c61\",\"elType\":\"widget\",\"settings\":{\"title\":\"THE SECRET LIFE OF PETS\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f43ab31\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"_title\":\"Section - HOME ENTERTAINMENT\"},\"elements\":[{\"id\":\"4398224\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"bd762d2\",\"elType\":\"widget\",\"settings\":{\"title\":\"HOME ENTERTAINMENT\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d49b5e2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>OnDisplay Creative works extensively with many major studios to provide the most effective marketing and merchandising materials. We have a vast understanding of the creative and production needs unique to the Entertainment Industry.<\\/p>\",\"align\":\"center\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f998468\",\"elType\":\"widget\",\"settings\":{\"skin\":\"slideshow\",\"slides\":[{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/SING-WOW_01.jpg\",\"id\":558},\"_id\":\"5601e8a\",\"type\":\"image\",\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/PETS_WOW_02.jpg\",\"id\":556},\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"cf0a445\"},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/BOURNE-WM-HC_01.jpg\",\"id\":555},\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"db277a6\"},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/XMEN_APOC-1.jpg\",\"id\":561},\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"8ee8473\"},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Barbie_01.jpg\",\"id\":554},\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"5e15e1d\"},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/PREPACKS_02.jpg\",\"id\":557},\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"76684ed\"}],\"slideshow_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"slideshow_slides_per_view\":\"6\",\"thumbs_ratio\":\"43\",\"centered_slides\":\"yes\",\"autoplay_speed\":100},\"elements\":[],\"widgetType\":\"media-carousel\"},{\"id\":\"db06005\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"926e5d0\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"81a9415\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":564,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Summer_1.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":4.9,\"sizes\":[]},\"layout\":\"full_width\",\"column_position\":\"top\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":68}},\"_title\":\"Section - RETAIL HERO\",\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_translateY_direction\":\"negative\",\"background_xpos\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"background_motion_fx_range\":\"viewport\"},\"elements\":[{\"id\":\"db3fd34\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_title\":\"old navy summer\"},\"elements\":[{\"id\":\"e57b2ef\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"70\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"6ba3ffc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"ed64037\",\"elType\":\"widget\",\"settings\":{\"title\":\"RETAIL\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9ea645d\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f6d6d26\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"46aa82e\",\"elType\":\"widget\",\"settings\":{\"title\":\"SUMMER SALE EVENT - OLD NAVY\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e636f9f\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"_title\":\"Section - RETAIL\"},\"elements\":[{\"id\":\"186370d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"32f2afd\",\"elType\":\"widget\",\"settings\":{\"title\":\"HOME ENTERTAINMENT\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c6a65b2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>OnDisplay Creative works extensively with many major studios to provide the most effective marketing and merchandising materials. We have a vast understanding of the creative and production needs unique to the Entertainment Industry.<\\/p>\",\"align\":\"center\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0a28eef\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"f2f232a\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"c41c583\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"34456bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8036819\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"SURF BOARD\",\"description_text\":\"Swappable Poster<BR>\\n\\nThis Semi-Permanent display had interchangeable graphics to promote sale items throughout the Summer campaign. \"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"7d3c615\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"d204c46\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b747fda\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":700},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":900},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"_title\":\"our company bitches\"},\"elements\":[{\"id\":\"7eab781\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"43661634\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our company is a collective of amazing people striving to build delightful products.\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.4},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70cc6d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.<\\/p>\",\"align\":\"center\",\"text_color\":\"#686868\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"615dfb3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1000},\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"6414755f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3bb26eed\",\"elType\":\"widget\",\"settings\":{\"text\":\"Read More\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3},\"button_text_color\":\"#ffffff\",\"background_color\":\"rgba(0,0,0,0)\",\"hover_color\":\"#00ce1b\",\"button_hover_border_color\":\"#00ce1b\",\"hover_animation\":\"grow\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"123f6d1\",\"elType\":\"section\",\"settings\":{\"_title\":\"blank at bottom\"},\"elements\":[{\"id\":\"25fcf2e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"64f593f\",\"elType\":\"section\",\"settings\":{\"_title\":\"blank at bottom\"},\"elements\":[{\"id\":\"596f429\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(3684,567,'_elementor_edit_mode','builder'),(3685,567,'_elementor_elements_usage','a:11:{s:7:\"heading\";i:21;s:6:\"column\";i:38;s:7:\"section\";i:31;s:7:\"divider\";i:9;s:11:\"text-editor\";i:8;s:5:\"image\";i:12;s:5:\"video\";i:2;s:6:\"spacer\";i:5;s:14:\"media-carousel\";i:2;s:9:\"image-box\";i:1;s:6:\"button\";i:1;}'),(3736,578,'_elementor_template_type','post'),(3737,578,'_elementor_version','2.6.8'),(3738,578,'_elementor_pro_version','2.6.5'),(3739,578,'_wp_page_template','default'),(3740,578,'_elementor_data','[{\"id\":\"55396f27\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":50,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Theatrical_Display_V003C.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"motion_fx_range\":\"viewport\",\"layout\":\"full_width\",\"column_position\":\"top\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"_title\":\"Section - INSIDIOUS HERO\",\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"background_motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_range\":\"viewport\"},\"elements\":[{\"id\":\"905a97c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ad7f3f6\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"162\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2489c07\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"c0bbe21\",\"elType\":\"widget\",\"settings\":{\"title\":\"#WHAT\'S COOL\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"dc881ae\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"18630a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"870a9ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"INNOVATIONS FROM ONDISPLAY CREATIVE\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7df48509\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"_title\":\"Section - LIVING STANDEES\"},\"elements\":[{\"id\":\"1147078d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"23bbc68\",\"elType\":\"widget\",\"settings\":{\"title\":\"LIVING STANDEES HAUNTING THEATERS\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b40d155\",\"elType\":\"widget\",\"settings\":{\"title\":\"ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"700\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86cff8b\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"225341d\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS \\u2013 THE LAST KEY\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a680ae8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"be59fa3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e36fe5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"d4d2039\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2.jpg\",\"id\":88},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3c9b758\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"79e122a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2-1.jpg\",\"id\":87},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3dc9df5\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"start\":0},\"elements\":[],\"widgetType\":\"video\"},{\"id\":\"b61a90b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"8f63560\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"08c588a\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS CHAPTER 3\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0e612c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>OnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7e77f5a\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"gap\":\"wide\"},\"elements\":[{\"id\":\"7eb5a21\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.332},\"elements\":[{\"id\":\"ae25867\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/image-asset.jpeg\",\"id\":196},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"24c773b\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":58},\"elements\":[{\"id\":\"93ad602\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/130807026\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"cb5dad6\",\"elType\":\"section\",\"settings\":{\"_title\":\"Inner Sedtion\"},\"elements\":[{\"id\":\"25cd114\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_title\":\"virtual reality experience\"},\"elements\":[{\"id\":\"15643ab\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"8ec2d0f\",\"elType\":\"widget\",\"settings\":{\"title\":\"VIRTUAL REALITY EXPERIENCE\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4e004ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"SPIDER-MAN HOMECOMING DISPLAY\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"73a2406\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Submerse yourself in the world of your friendly neighborhood Spider-Man in this fun and thrilling VR Theatrical Display.\\u00a0\\u00a0Based on the all-new 2017 film, the Spider-Man Homecoming VR Experience is a first-person look through the eyes of Spidey himself.<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"04b03b4\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7f4ffcc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"7f85dc5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":76,\"_title\":\"spiderman homecoming\"},\"elements\":[{\"id\":\"9a5a392\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Spidey_Home_V4_002.jpg\",\"id\":230},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"css_filters_css_filter\":\"custom\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"c16541a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":24,\"_title\":\"spiderman 2 vertical pics\"},\"elements\":[{\"id\":\"95b0eed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/IMG_3834.jpg\",\"id\":231},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8ea51a8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/IMG_3788.jpg\",\"id\":233}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"12d34c8\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"00\",\"bottom\":\"00\",\"left\":\"00\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"95003e6\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":435,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/TheStrangers_V01.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":4.9,\"sizes\":[]},\"layout\":\"full_width\",\"column_position\":\"top\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":68}},\"_title\":\"Section - STRANGERS HERO\",\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_translateY_direction\":\"negative\",\"background_xpos\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"background_motion_fx_range\":\"viewport\"},\"elements\":[{\"id\":\"b6deb1a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_title\":\"strangers prey at night\"},\"elements\":[{\"id\":\"7a350ee\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"70\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"ecd0cbe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"d684039\",\"elType\":\"widget\",\"settings\":{\"title\":\"THE STRANGERS PREY AT NIGHT\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"003eb99\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5fd9452\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"93ad64e\",\"elType\":\"widget\",\"settings\":{\"title\":\"GRAND FORMAT PHOTO-OP STANDEE\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"247aafb\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"_title\":\"Section - MARKETING AT ITS FINEST\"},\"elements\":[{\"id\":\"f002e93\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"d1321ed\",\"elType\":\"widget\",\"settings\":{\"title\":\"MARKETING AT ITS FINEST, TAILORED FOR SOCIAL MEDIA\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a16ef4e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>This theatrical display allows fans to take photos with Dollface, Pin-up Girl, the Man in the Mask and share their photos on social media.<\\/p>\",\"align\":\"center\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b58ab88\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"00ca412\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58},\"elements\":[{\"id\":\"032d3df\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/003.jpg\",\"id\":446},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"672c1f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42},\"elements\":[{\"id\":\"623f6d1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/26222472_170774200201231_6120473304701599744_n.jpg\",\"id\":447},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a641f07\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/VIDEO_COMING_SOON_01.jpg\",\"id\":449}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cf9e008\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"677b52c\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"31ae5e7\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":515,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/FREEBIRDS_V1B.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":4.9,\"sizes\":[]},\"layout\":\"full_width\",\"column_position\":\"top\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":68}},\"_title\":\"Section - THEATRICAL HERO\",\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_translateY_direction\":\"negative\",\"background_xpos\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"background_motion_fx_range\":\"viewport\"},\"elements\":[{\"id\":\"e45e9b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_title\":\"free birds\"},\"elements\":[{\"id\":\"68717d0\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"70\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"144d01b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"27b94bb\",\"elType\":\"widget\",\"settings\":{\"title\":\"THEATRICAL DISPLAYS\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"672b55e\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"16fbcce\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"ab6e6b7\",\"elType\":\"widget\",\"settings\":{\"title\":\"FREE BIRDS \\u2013 RESIN DISPLAY\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"42b76c7\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"_title\":\"Section - THEATRICAL DISPLAYS\"},\"elements\":[{\"id\":\"9fef846\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"9e16c55\",\"elType\":\"widget\",\"settings\":{\"title\":\"THEATRICAL DISPLAYS\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4a9d8d2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>OnDisplay Creative takes pride in its long history of leading the Entertainment Industry in creating and producing eye catching displays.<\\/p>\",\"align\":\"center\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"263fb63\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"42ecb50\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":69,\"_title\":\"spiderman homecoming\"},\"elements\":[{\"id\":\"fbd93cf\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/47Meters_02_cropped.jpg.jpg\",\"id\":549},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"align\":\"center\",\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2a3ff66\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":31,\"_title\":\"spiderman 2 vertical pics\"},\"elements\":[{\"id\":\"afb6c5e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/DFCV6gdXgAAoGDM.jpeg\",\"id\":520},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ad92bda\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/DEI2HYnW0AEERBl.jpeg\",\"id\":519}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"946f91d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"slideshow\",\"slides\":[{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Spidey_Home_V3.jpg\",\"id\":521},\"_id\":\"fb38f36\",\"type\":\"image\",\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/WarRoom_V1_002.jpg\",\"id\":524},\"_id\":\"a26cba3\",\"type\":\"image\",\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Mada3_01A_002.jpg\",\"id\":525},\"_id\":\"c815938\",\"type\":\"image\",\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/LOOZ_Standee_InTheater_2.jpg\",\"id\":526},\"_id\":\"4e65d42\",\"type\":\"image\",\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Thor-2.jpg\",\"id\":527},\"_id\":\"03a5179\",\"type\":\"image\",\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Echo_01A.jpg\",\"id\":528},\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"3604fe3\"},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Spidey_Home_V4_002-1.jpg\",\"id\":529},\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"f621837\"},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Hurricane-H_V1.jpg\",\"id\":530},\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"9f1174a\"},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Friend_Request.jpg\",\"id\":531},\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"2bec012\"},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/TheStrangers_V02_002.jpg\",\"id\":532},\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"8342d3b\"},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Kidnap2.jpg\",\"id\":533},\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"5ae447b\"},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/RfNight_01A_002.jpg\",\"id\":535},\"image_link_to_type\":\"file\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"56c21c6\"},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/AllSaints2_002.jpg\",\"id\":536},\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"dca9a78\"}],\"slideshow_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"slideshow_slides_per_view\":\"6\",\"thumbs_ratio\":\"43\",\"centered_slides\":\"yes\",\"autoplay_speed\":100},\"elements\":[],\"widgetType\":\"media-carousel\"},{\"id\":\"6bf6bab\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"d0a8d7e\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b45b58e\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":542,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Pets_HomeEnt_FrntP.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":4.9,\"sizes\":[]},\"layout\":\"full_width\",\"column_position\":\"top\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":68}},\"_title\":\"Section - HOME ENT HERO\",\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_translateY_direction\":\"negative\",\"background_xpos\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"background_motion_fx_range\":\"viewport\"},\"elements\":[{\"id\":\"b6af657\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_title\":\"secret life of pets\"},\"elements\":[{\"id\":\"8065946\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"70\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"121e9ec\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"3e5b110\",\"elType\":\"widget\",\"settings\":{\"title\":\"HOME ENTERTAINMENT\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"c4a68e0\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"0e38833\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"3f83c61\",\"elType\":\"widget\",\"settings\":{\"title\":\"THE SECRET LIFE OF PETS\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f43ab31\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"_title\":\"Section - HOME ENTERTAINMENT\"},\"elements\":[{\"id\":\"4398224\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"bd762d2\",\"elType\":\"widget\",\"settings\":{\"title\":\"HOME ENTERTAINMENT\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d49b5e2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>OnDisplay Creative works extensively with many major studios to provide the most effective marketing and merchandising materials. We have a vast understanding of the creative and production needs unique to the Entertainment Industry.<\\/p>\",\"align\":\"center\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f998468\",\"elType\":\"widget\",\"settings\":{\"skin\":\"slideshow\",\"slides\":[{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/SING-WOW_01.jpg\",\"id\":558},\"_id\":\"5601e8a\",\"type\":\"image\",\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/PETS_WOW_02.jpg\",\"id\":556},\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"cf0a445\"},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/BOURNE-WM-HC_01.jpg\",\"id\":555},\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"db277a6\"},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/XMEN_APOC-1.jpg\",\"id\":561},\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"8ee8473\"},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Barbie_01.jpg\",\"id\":554},\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"5e15e1d\"},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/PREPACKS_02.jpg\",\"id\":557},\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"76684ed\"}],\"slideshow_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"slideshow_slides_per_view\":\"6\",\"thumbs_ratio\":\"43\",\"centered_slides\":\"yes\",\"autoplay_speed\":100},\"elements\":[],\"widgetType\":\"media-carousel\"},{\"id\":\"db06005\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"926e5d0\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"81a9415\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":564,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Summer_1.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":4.9,\"sizes\":[]},\"layout\":\"full_width\",\"column_position\":\"top\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":68}},\"_title\":\"Section - RETAIL HERO\",\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_translateY_direction\":\"negative\",\"background_xpos\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"background_motion_fx_range\":\"viewport\"},\"elements\":[{\"id\":\"db3fd34\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_title\":\"old navy summer\"},\"elements\":[{\"id\":\"e57b2ef\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"70\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"6ba3ffc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"ed64037\",\"elType\":\"widget\",\"settings\":{\"title\":\"RETAIL\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9ea645d\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f6d6d26\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"46aa82e\",\"elType\":\"widget\",\"settings\":{\"title\":\"SUMMER SALE EVENT - OLD NAVY\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e636f9f\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"_title\":\"Section - RETAIL\"},\"elements\":[{\"id\":\"186370d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"c41c583\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"34456bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"c34d439\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/SUMMER_2_cropped.jpg\",\"id\":576}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"f0450d4\",\"elType\":\"widget\",\"settings\":{\"title\":\"SURF BOARD\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4feec62\",\"elType\":\"widget\",\"settings\":{\"title\":\"SWAPPABLE POSTER\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ddf5cb6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>This Semi-Permanent display had interchangeable graphics to promote sale items throughout the Summer campaign.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7d3c615\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"fc91cd2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Hodilay_1_cropped.jpg\",\"id\":575}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6c579e0\",\"elType\":\"widget\",\"settings\":{\"title\":\"HOLIDAY STAGE\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"d204c46\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"82f943c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/image-asset-1.jpeg\",\"id\":577}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"414b4e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"LOVE GAP\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b747fda\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":700},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":900},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"_title\":\"our company bitches\"},\"elements\":[{\"id\":\"7eab781\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"43661634\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our company is a collective of amazing people striving to build delightful products.\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.4},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70cc6d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.<\\/p>\",\"align\":\"center\",\"text_color\":\"#686868\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"615dfb3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1000},\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"6414755f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3bb26eed\",\"elType\":\"widget\",\"settings\":{\"text\":\"Read More\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3},\"button_text_color\":\"#ffffff\",\"background_color\":\"rgba(0,0,0,0)\",\"hover_color\":\"#00ce1b\",\"button_hover_border_color\":\"#00ce1b\",\"hover_animation\":\"grow\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"123f6d1\",\"elType\":\"section\",\"settings\":{\"_title\":\"blank at bottom\"},\"elements\":[{\"id\":\"25fcf2e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"64f593f\",\"elType\":\"section\",\"settings\":{\"_title\":\"blank at bottom\"},\"elements\":[{\"id\":\"596f429\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(3700,570,'_elementor_edit_mode','builder'),(3699,570,'_elementor_data','[{\"id\":\"55396f27\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":50,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Theatrical_Display_V003C.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"motion_fx_range\":\"viewport\",\"layout\":\"full_width\",\"column_position\":\"top\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"_title\":\"Section - INSIDIOUS HERO\",\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"background_motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_range\":\"viewport\"},\"elements\":[{\"id\":\"905a97c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ad7f3f6\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"162\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2489c07\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"c0bbe21\",\"elType\":\"widget\",\"settings\":{\"title\":\"#WHAT\'S COOL\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"dc881ae\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"18630a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"870a9ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"INNOVATIONS FROM ONDISPLAY CREATIVE\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7df48509\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"_title\":\"Section - LIVING STANDEES\"},\"elements\":[{\"id\":\"1147078d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"23bbc68\",\"elType\":\"widget\",\"settings\":{\"title\":\"LIVING STANDEES HAUNTING THEATERS\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b40d155\",\"elType\":\"widget\",\"settings\":{\"title\":\"ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"700\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86cff8b\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"225341d\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS \\u2013 THE LAST KEY\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a680ae8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"be59fa3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e36fe5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"d4d2039\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2.jpg\",\"id\":88},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3c9b758\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"79e122a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2-1.jpg\",\"id\":87},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3dc9df5\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"start\":0},\"elements\":[],\"widgetType\":\"video\"},{\"id\":\"b61a90b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"8f63560\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"08c588a\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS CHAPTER 3\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0e612c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>OnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7e77f5a\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"gap\":\"wide\"},\"elements\":[{\"id\":\"7eb5a21\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.332},\"elements\":[{\"id\":\"ae25867\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/image-asset.jpeg\",\"id\":196},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"24c773b\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":58},\"elements\":[{\"id\":\"93ad602\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/130807026\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"cb5dad6\",\"elType\":\"section\",\"settings\":{\"_title\":\"Inner Sedtion\"},\"elements\":[{\"id\":\"25cd114\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_title\":\"virtual reality experience\"},\"elements\":[{\"id\":\"15643ab\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"8ec2d0f\",\"elType\":\"widget\",\"settings\":{\"title\":\"VIRTUAL REALITY EXPERIENCE\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4e004ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"SPIDER-MAN HOMECOMING DISPLAY\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"73a2406\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Submerse yourself in the world of your friendly neighborhood Spider-Man in this fun and thrilling VR Theatrical Display.\\u00a0\\u00a0Based on the all-new 2017 film, the Spider-Man Homecoming VR Experience is a first-person look through the eyes of Spidey himself.<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"04b03b4\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7f4ffcc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"7f85dc5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":76,\"_title\":\"spiderman homecoming\"},\"elements\":[{\"id\":\"9a5a392\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Spidey_Home_V4_002.jpg\",\"id\":230},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"css_filters_css_filter\":\"custom\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"c16541a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":24,\"_title\":\"spiderman 2 vertical pics\"},\"elements\":[{\"id\":\"95b0eed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/IMG_3834.jpg\",\"id\":231},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8ea51a8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/IMG_3788.jpg\",\"id\":233}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"12d34c8\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"00\",\"bottom\":\"00\",\"left\":\"00\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"95003e6\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":435,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/TheStrangers_V01.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":4.9,\"sizes\":[]},\"layout\":\"full_width\",\"column_position\":\"top\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":68}},\"_title\":\"Section - STRANGERS HERO\",\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_translateY_direction\":\"negative\",\"background_xpos\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"background_motion_fx_range\":\"viewport\"},\"elements\":[{\"id\":\"b6deb1a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_title\":\"strangers prey at night\"},\"elements\":[{\"id\":\"7a350ee\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"70\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"ecd0cbe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"d684039\",\"elType\":\"widget\",\"settings\":{\"title\":\"THE STRANGERS PREY AT NIGHT\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"003eb99\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5fd9452\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"93ad64e\",\"elType\":\"widget\",\"settings\":{\"title\":\"GRAND FORMAT PHOTO-OP STANDEE\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"247aafb\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"_title\":\"Section - MARKETING AT ITS FINEST\"},\"elements\":[{\"id\":\"f002e93\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"d1321ed\",\"elType\":\"widget\",\"settings\":{\"title\":\"MARKETING AT ITS FINEST, TAILORED FOR SOCIAL MEDIA\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a16ef4e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>This theatrical display allows fans to take photos with Dollface, Pin-up Girl, the Man in the Mask and share their photos on social media.<\\/p>\",\"align\":\"center\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b58ab88\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"00ca412\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58},\"elements\":[{\"id\":\"032d3df\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/003.jpg\",\"id\":446},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"672c1f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42},\"elements\":[{\"id\":\"623f6d1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/26222472_170774200201231_6120473304701599744_n.jpg\",\"id\":447},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a641f07\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/VIDEO_COMING_SOON_01.jpg\",\"id\":449}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cf9e008\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"677b52c\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"31ae5e7\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":515,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/FREEBIRDS_V1B.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":4.9,\"sizes\":[]},\"layout\":\"full_width\",\"column_position\":\"top\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":68}},\"_title\":\"Section - THEATRICAL HERO\",\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_translateY_direction\":\"negative\",\"background_xpos\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"background_motion_fx_range\":\"viewport\"},\"elements\":[{\"id\":\"e45e9b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_title\":\"free birds\"},\"elements\":[{\"id\":\"68717d0\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"70\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"144d01b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"27b94bb\",\"elType\":\"widget\",\"settings\":{\"title\":\"THEATRICAL DISPLAYS\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"672b55e\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"16fbcce\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"ab6e6b7\",\"elType\":\"widget\",\"settings\":{\"title\":\"FREE BIRDS \\u2013 RESIN DISPLAY\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"42b76c7\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"_title\":\"Section - THEATRICAL DISPLAYS\"},\"elements\":[{\"id\":\"9fef846\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"9e16c55\",\"elType\":\"widget\",\"settings\":{\"title\":\"THEATRICAL DISPLAYS\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4a9d8d2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>OnDisplay Creative takes pride in its long history of leading the Entertainment Industry in creating and producing eye catching displays.<\\/p>\",\"align\":\"center\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"263fb63\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"42ecb50\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":69,\"_title\":\"spiderman homecoming\"},\"elements\":[{\"id\":\"fbd93cf\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/47Meters_02_cropped.jpg.jpg\",\"id\":549},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"align\":\"center\",\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2a3ff66\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":31,\"_title\":\"spiderman 2 vertical pics\"},\"elements\":[{\"id\":\"afb6c5e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/DFCV6gdXgAAoGDM.jpeg\",\"id\":520},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ad92bda\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/DEI2HYnW0AEERBl.jpeg\",\"id\":519}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"946f91d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"slideshow\",\"slides\":[{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Spidey_Home_V3.jpg\",\"id\":521},\"_id\":\"fb38f36\",\"type\":\"image\",\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/WarRoom_V1_002.jpg\",\"id\":524},\"_id\":\"a26cba3\",\"type\":\"image\",\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Mada3_01A_002.jpg\",\"id\":525},\"_id\":\"c815938\",\"type\":\"image\",\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/LOOZ_Standee_InTheater_2.jpg\",\"id\":526},\"_id\":\"4e65d42\",\"type\":\"image\",\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Thor-2.jpg\",\"id\":527},\"_id\":\"03a5179\",\"type\":\"image\",\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Echo_01A.jpg\",\"id\":528},\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"3604fe3\"},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Spidey_Home_V4_002-1.jpg\",\"id\":529},\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"f621837\"},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Hurricane-H_V1.jpg\",\"id\":530},\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"9f1174a\"},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Friend_Request.jpg\",\"id\":531},\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"2bec012\"},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/TheStrangers_V02_002.jpg\",\"id\":532},\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"8342d3b\"},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Kidnap2.jpg\",\"id\":533},\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"5ae447b\"},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/RfNight_01A_002.jpg\",\"id\":535},\"image_link_to_type\":\"file\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"56c21c6\"},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/AllSaints2_002.jpg\",\"id\":536},\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"dca9a78\"}],\"slideshow_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"slideshow_slides_per_view\":\"6\",\"thumbs_ratio\":\"43\",\"centered_slides\":\"yes\",\"autoplay_speed\":100},\"elements\":[],\"widgetType\":\"media-carousel\"},{\"id\":\"6bf6bab\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"d0a8d7e\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b45b58e\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":542,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Pets_HomeEnt_FrntP.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":4.9,\"sizes\":[]},\"layout\":\"full_width\",\"column_position\":\"top\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":68}},\"_title\":\"Section - HOME ENT HERO\",\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_translateY_direction\":\"negative\",\"background_xpos\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"background_motion_fx_range\":\"viewport\"},\"elements\":[{\"id\":\"b6af657\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_title\":\"secret life of pets\"},\"elements\":[{\"id\":\"8065946\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"70\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"121e9ec\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"3e5b110\",\"elType\":\"widget\",\"settings\":{\"title\":\"HOME ENTERTAINMENT\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"c4a68e0\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"0e38833\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"3f83c61\",\"elType\":\"widget\",\"settings\":{\"title\":\"THE SECRET LIFE OF PETS\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f43ab31\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"_title\":\"Section - HOME ENTERTAINMENT\"},\"elements\":[{\"id\":\"4398224\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"bd762d2\",\"elType\":\"widget\",\"settings\":{\"title\":\"HOME ENTERTAINMENT\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d49b5e2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>OnDisplay Creative works extensively with many major studios to provide the most effective marketing and merchandising materials. We have a vast understanding of the creative and production needs unique to the Entertainment Industry.<\\/p>\",\"align\":\"center\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f998468\",\"elType\":\"widget\",\"settings\":{\"skin\":\"slideshow\",\"slides\":[{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/SING-WOW_01.jpg\",\"id\":558},\"_id\":\"5601e8a\",\"type\":\"image\",\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/PETS_WOW_02.jpg\",\"id\":556},\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"cf0a445\"},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/BOURNE-WM-HC_01.jpg\",\"id\":555},\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"db277a6\"},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/XMEN_APOC-1.jpg\",\"id\":561},\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"8ee8473\"},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Barbie_01.jpg\",\"id\":554},\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"5e15e1d\"},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/PREPACKS_02.jpg\",\"id\":557},\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"76684ed\"}],\"slideshow_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"slideshow_slides_per_view\":\"6\",\"thumbs_ratio\":\"43\",\"centered_slides\":\"yes\",\"autoplay_speed\":100},\"elements\":[],\"widgetType\":\"media-carousel\"},{\"id\":\"db06005\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"926e5d0\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"81a9415\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":564,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Summer_1.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":4.9,\"sizes\":[]},\"layout\":\"full_width\",\"column_position\":\"top\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":68}},\"_title\":\"Section - RETAIL HERO\",\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_translateY_direction\":\"negative\",\"background_xpos\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"background_motion_fx_range\":\"viewport\"},\"elements\":[{\"id\":\"db3fd34\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_title\":\"old navy summer\"},\"elements\":[{\"id\":\"e57b2ef\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"70\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"6ba3ffc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"ed64037\",\"elType\":\"widget\",\"settings\":{\"title\":\"RETAIL\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9ea645d\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f6d6d26\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"46aa82e\",\"elType\":\"widget\",\"settings\":{\"title\":\"SUMMER SALE EVENT - OLD NAVY\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e636f9f\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"_title\":\"Section - RETAIL\"},\"elements\":[{\"id\":\"186370d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"32f2afd\",\"elType\":\"widget\",\"settings\":{\"title\":\"HOME ENTERTAINMENT\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c6a65b2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>OnDisplay Creative works extensively with many major studios to provide the most effective marketing and merchandising materials. We have a vast understanding of the creative and production needs unique to the Entertainment Industry.<\\/p>\",\"align\":\"center\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0a28eef\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"f2f232a\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"c41c583\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"34456bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8036819\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/SUMMER_2.jpg\",\"id\":568},\"title_text\":\"SURF BOARD\",\"description_text\":\"Swappable Poster<BR>\\n\\nThis Semi-Permanent display had interchangeable graphics to promote sale items throughout the Summer campaign. \"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"7d3c615\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"d204c46\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b747fda\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":700},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":900},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"_title\":\"our company bitches\"},\"elements\":[{\"id\":\"7eab781\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"43661634\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our company is a collective of amazing people striving to build delightful products.\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.4},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70cc6d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.<\\/p>\",\"align\":\"center\",\"text_color\":\"#686868\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"615dfb3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1000},\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"6414755f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3bb26eed\",\"elType\":\"widget\",\"settings\":{\"text\":\"Read More\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3},\"button_text_color\":\"#ffffff\",\"background_color\":\"rgba(0,0,0,0)\",\"hover_color\":\"#00ce1b\",\"button_hover_border_color\":\"#00ce1b\",\"hover_animation\":\"grow\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"123f6d1\",\"elType\":\"section\",\"settings\":{\"_title\":\"blank at bottom\"},\"elements\":[{\"id\":\"25fcf2e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"64f593f\",\"elType\":\"section\",\"settings\":{\"_title\":\"blank at bottom\"},\"elements\":[{\"id\":\"596f429\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(3695,570,'_elementor_template_type','post'),(3696,570,'_elementor_version','2.6.8'),(3697,570,'_elementor_pro_version','2.6.5'),(3698,570,'_wp_page_template','default'),(3701,570,'_elementor_elements_usage','a:11:{s:7:\"heading\";i:21;s:6:\"column\";i:38;s:7:\"section\";i:31;s:7:\"divider\";i:9;s:11:\"text-editor\";i:8;s:5:\"image\";i:12;s:5:\"video\";i:2;s:6:\"spacer\";i:5;s:14:\"media-carousel\";i:2;s:9:\"image-box\";i:1;s:6:\"button\";i:1;}'),(3716,573,'_elementor_template_type','post'),(3717,573,'_elementor_version','2.6.8'),(3718,573,'_elementor_pro_version','2.6.5'),(3719,573,'_wp_page_template','default'),(3720,573,'_elementor_data','[{\"id\":\"55396f27\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":50,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Theatrical_Display_V003C.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"motion_fx_range\":\"viewport\",\"layout\":\"full_width\",\"column_position\":\"top\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"_title\":\"Section - INSIDIOUS HERO\",\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"background_motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_range\":\"viewport\"},\"elements\":[{\"id\":\"905a97c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ad7f3f6\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"162\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2489c07\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"c0bbe21\",\"elType\":\"widget\",\"settings\":{\"title\":\"#WHAT\'S COOL\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"dc881ae\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"18630a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"870a9ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"INNOVATIONS FROM ONDISPLAY CREATIVE\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7df48509\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"_title\":\"Section - LIVING STANDEES\"},\"elements\":[{\"id\":\"1147078d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"23bbc68\",\"elType\":\"widget\",\"settings\":{\"title\":\"LIVING STANDEES HAUNTING THEATERS\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b40d155\",\"elType\":\"widget\",\"settings\":{\"title\":\"ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"700\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86cff8b\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"225341d\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS \\u2013 THE LAST KEY\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a680ae8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"be59fa3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e36fe5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"d4d2039\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2.jpg\",\"id\":88},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3c9b758\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"79e122a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2-1.jpg\",\"id\":87},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3dc9df5\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"start\":0},\"elements\":[],\"widgetType\":\"video\"},{\"id\":\"b61a90b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"8f63560\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"08c588a\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS CHAPTER 3\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0e612c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>OnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7e77f5a\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"gap\":\"wide\"},\"elements\":[{\"id\":\"7eb5a21\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.332},\"elements\":[{\"id\":\"ae25867\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/image-asset.jpeg\",\"id\":196},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"24c773b\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":58},\"elements\":[{\"id\":\"93ad602\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/130807026\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"cb5dad6\",\"elType\":\"section\",\"settings\":{\"_title\":\"Inner Sedtion\"},\"elements\":[{\"id\":\"25cd114\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_title\":\"virtual reality experience\"},\"elements\":[{\"id\":\"15643ab\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"8ec2d0f\",\"elType\":\"widget\",\"settings\":{\"title\":\"VIRTUAL REALITY EXPERIENCE\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4e004ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"SPIDER-MAN HOMECOMING DISPLAY\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"73a2406\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Submerse yourself in the world of your friendly neighborhood Spider-Man in this fun and thrilling VR Theatrical Display.\\u00a0\\u00a0Based on the all-new 2017 film, the Spider-Man Homecoming VR Experience is a first-person look through the eyes of Spidey himself.<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"04b03b4\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7f4ffcc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"7f85dc5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":76,\"_title\":\"spiderman homecoming\"},\"elements\":[{\"id\":\"9a5a392\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Spidey_Home_V4_002.jpg\",\"id\":230},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"css_filters_css_filter\":\"custom\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"c16541a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":24,\"_title\":\"spiderman 2 vertical pics\"},\"elements\":[{\"id\":\"95b0eed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/IMG_3834.jpg\",\"id\":231},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8ea51a8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/IMG_3788.jpg\",\"id\":233}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"12d34c8\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"00\",\"bottom\":\"00\",\"left\":\"00\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"95003e6\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":435,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/TheStrangers_V01.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":4.9,\"sizes\":[]},\"layout\":\"full_width\",\"column_position\":\"top\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":68}},\"_title\":\"Section - STRANGERS HERO\",\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_translateY_direction\":\"negative\",\"background_xpos\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"background_motion_fx_range\":\"viewport\"},\"elements\":[{\"id\":\"b6deb1a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_title\":\"strangers prey at night\"},\"elements\":[{\"id\":\"7a350ee\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"70\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"ecd0cbe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"d684039\",\"elType\":\"widget\",\"settings\":{\"title\":\"THE STRANGERS PREY AT NIGHT\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"003eb99\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5fd9452\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"93ad64e\",\"elType\":\"widget\",\"settings\":{\"title\":\"GRAND FORMAT PHOTO-OP STANDEE\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"247aafb\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"_title\":\"Section - MARKETING AT ITS FINEST\"},\"elements\":[{\"id\":\"f002e93\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"d1321ed\",\"elType\":\"widget\",\"settings\":{\"title\":\"MARKETING AT ITS FINEST, TAILORED FOR SOCIAL MEDIA\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a16ef4e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>This theatrical display allows fans to take photos with Dollface, Pin-up Girl, the Man in the Mask and share their photos on social media.<\\/p>\",\"align\":\"center\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b58ab88\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"00ca412\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58},\"elements\":[{\"id\":\"032d3df\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/003.jpg\",\"id\":446},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"672c1f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42},\"elements\":[{\"id\":\"623f6d1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/26222472_170774200201231_6120473304701599744_n.jpg\",\"id\":447},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a641f07\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/VIDEO_COMING_SOON_01.jpg\",\"id\":449}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cf9e008\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"677b52c\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"31ae5e7\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":515,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/FREEBIRDS_V1B.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":4.9,\"sizes\":[]},\"layout\":\"full_width\",\"column_position\":\"top\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":68}},\"_title\":\"Section - THEATRICAL HERO\",\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_translateY_direction\":\"negative\",\"background_xpos\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"background_motion_fx_range\":\"viewport\"},\"elements\":[{\"id\":\"e45e9b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_title\":\"free birds\"},\"elements\":[{\"id\":\"68717d0\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"70\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"144d01b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"27b94bb\",\"elType\":\"widget\",\"settings\":{\"title\":\"THEATRICAL DISPLAYS\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"672b55e\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"16fbcce\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"ab6e6b7\",\"elType\":\"widget\",\"settings\":{\"title\":\"FREE BIRDS \\u2013 RESIN DISPLAY\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"42b76c7\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"_title\":\"Section - THEATRICAL DISPLAYS\"},\"elements\":[{\"id\":\"9fef846\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"9e16c55\",\"elType\":\"widget\",\"settings\":{\"title\":\"THEATRICAL DISPLAYS\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4a9d8d2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>OnDisplay Creative takes pride in its long history of leading the Entertainment Industry in creating and producing eye catching displays.<\\/p>\",\"align\":\"center\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"263fb63\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"42ecb50\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":69,\"_title\":\"spiderman homecoming\"},\"elements\":[{\"id\":\"fbd93cf\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/47Meters_02_cropped.jpg.jpg\",\"id\":549},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"align\":\"center\",\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2a3ff66\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":31,\"_title\":\"spiderman 2 vertical pics\"},\"elements\":[{\"id\":\"afb6c5e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/DFCV6gdXgAAoGDM.jpeg\",\"id\":520},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ad92bda\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/DEI2HYnW0AEERBl.jpeg\",\"id\":519}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"946f91d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"slideshow\",\"slides\":[{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Spidey_Home_V3.jpg\",\"id\":521},\"_id\":\"fb38f36\",\"type\":\"image\",\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/WarRoom_V1_002.jpg\",\"id\":524},\"_id\":\"a26cba3\",\"type\":\"image\",\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Mada3_01A_002.jpg\",\"id\":525},\"_id\":\"c815938\",\"type\":\"image\",\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/LOOZ_Standee_InTheater_2.jpg\",\"id\":526},\"_id\":\"4e65d42\",\"type\":\"image\",\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Thor-2.jpg\",\"id\":527},\"_id\":\"03a5179\",\"type\":\"image\",\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Echo_01A.jpg\",\"id\":528},\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"3604fe3\"},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Spidey_Home_V4_002-1.jpg\",\"id\":529},\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"f621837\"},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Hurricane-H_V1.jpg\",\"id\":530},\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"9f1174a\"},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Friend_Request.jpg\",\"id\":531},\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"2bec012\"},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/TheStrangers_V02_002.jpg\",\"id\":532},\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"8342d3b\"},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Kidnap2.jpg\",\"id\":533},\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"5ae447b\"},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/RfNight_01A_002.jpg\",\"id\":535},\"image_link_to_type\":\"file\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"56c21c6\"},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/AllSaints2_002.jpg\",\"id\":536},\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"dca9a78\"}],\"slideshow_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"slideshow_slides_per_view\":\"6\",\"thumbs_ratio\":\"43\",\"centered_slides\":\"yes\",\"autoplay_speed\":100},\"elements\":[],\"widgetType\":\"media-carousel\"},{\"id\":\"6bf6bab\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"d0a8d7e\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b45b58e\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":542,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Pets_HomeEnt_FrntP.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":4.9,\"sizes\":[]},\"layout\":\"full_width\",\"column_position\":\"top\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":68}},\"_title\":\"Section - HOME ENT HERO\",\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_translateY_direction\":\"negative\",\"background_xpos\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"background_motion_fx_range\":\"viewport\"},\"elements\":[{\"id\":\"b6af657\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_title\":\"secret life of pets\"},\"elements\":[{\"id\":\"8065946\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"70\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"121e9ec\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"3e5b110\",\"elType\":\"widget\",\"settings\":{\"title\":\"HOME ENTERTAINMENT\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"c4a68e0\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"0e38833\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"3f83c61\",\"elType\":\"widget\",\"settings\":{\"title\":\"THE SECRET LIFE OF PETS\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f43ab31\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"_title\":\"Section - HOME ENTERTAINMENT\"},\"elements\":[{\"id\":\"4398224\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"bd762d2\",\"elType\":\"widget\",\"settings\":{\"title\":\"HOME ENTERTAINMENT\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d49b5e2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>OnDisplay Creative works extensively with many major studios to provide the most effective marketing and merchandising materials. We have a vast understanding of the creative and production needs unique to the Entertainment Industry.<\\/p>\",\"align\":\"center\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f998468\",\"elType\":\"widget\",\"settings\":{\"skin\":\"slideshow\",\"slides\":[{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/SING-WOW_01.jpg\",\"id\":558},\"_id\":\"5601e8a\",\"type\":\"image\",\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/PETS_WOW_02.jpg\",\"id\":556},\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"cf0a445\"},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/BOURNE-WM-HC_01.jpg\",\"id\":555},\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"db277a6\"},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/XMEN_APOC-1.jpg\",\"id\":561},\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"8ee8473\"},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Barbie_01.jpg\",\"id\":554},\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"5e15e1d\"},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/PREPACKS_02.jpg\",\"id\":557},\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"76684ed\"}],\"slideshow_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"slideshow_slides_per_view\":\"6\",\"thumbs_ratio\":\"43\",\"centered_slides\":\"yes\",\"autoplay_speed\":100},\"elements\":[],\"widgetType\":\"media-carousel\"},{\"id\":\"db06005\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"926e5d0\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"81a9415\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":564,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Summer_1.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":4.9,\"sizes\":[]},\"layout\":\"full_width\",\"column_position\":\"top\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":68}},\"_title\":\"Section - RETAIL HERO\",\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_translateY_direction\":\"negative\",\"background_xpos\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"background_motion_fx_range\":\"viewport\"},\"elements\":[{\"id\":\"db3fd34\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_title\":\"old navy summer\"},\"elements\":[{\"id\":\"e57b2ef\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"70\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"6ba3ffc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"ed64037\",\"elType\":\"widget\",\"settings\":{\"title\":\"RETAIL\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9ea645d\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f6d6d26\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"46aa82e\",\"elType\":\"widget\",\"settings\":{\"title\":\"SUMMER SALE EVENT - OLD NAVY\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e636f9f\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"_title\":\"Section - RETAIL\"},\"elements\":[{\"id\":\"186370d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"c41c583\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"34456bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"c34d439\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/SUMMER_2.jpg\",\"id\":568}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"f0450d4\",\"elType\":\"widget\",\"settings\":{\"title\":\"SURF BOARD\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"7d3c615\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"fc91cd2\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6c579e0\",\"elType\":\"widget\",\"settings\":{\"title\":\"HOLIDAY STAGE\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"d204c46\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"82f943c\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"414b4e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"LOVE GAP\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b747fda\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":700},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":900},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"_title\":\"our company bitches\"},\"elements\":[{\"id\":\"7eab781\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"43661634\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our company is a collective of amazing people striving to build delightful products.\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.4},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70cc6d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.<\\/p>\",\"align\":\"center\",\"text_color\":\"#686868\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"615dfb3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1000},\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"6414755f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3bb26eed\",\"elType\":\"widget\",\"settings\":{\"text\":\"Read More\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3},\"button_text_color\":\"#ffffff\",\"background_color\":\"rgba(0,0,0,0)\",\"hover_color\":\"#00ce1b\",\"button_hover_border_color\":\"#00ce1b\",\"hover_animation\":\"grow\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"123f6d1\",\"elType\":\"section\",\"settings\":{\"_title\":\"blank at bottom\"},\"elements\":[{\"id\":\"25fcf2e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"64f593f\",\"elType\":\"section\",\"settings\":{\"_title\":\"blank at bottom\"},\"elements\":[{\"id\":\"596f429\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(3709,572,'_elementor_template_type','post'),(3702,571,'_elementor_template_type','post'),(3703,571,'_elementor_version','2.6.8'),(3704,571,'_elementor_pro_version','2.6.5'),(3705,571,'_wp_page_template','default'),(3706,571,'_elementor_data','[{\"id\":\"55396f27\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":50,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Theatrical_Display_V003C.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"motion_fx_range\":\"viewport\",\"layout\":\"full_width\",\"column_position\":\"top\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"_title\":\"Section - INSIDIOUS HERO\",\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"background_motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_range\":\"viewport\"},\"elements\":[{\"id\":\"905a97c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ad7f3f6\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"162\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2489c07\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"c0bbe21\",\"elType\":\"widget\",\"settings\":{\"title\":\"#WHAT\'S COOL\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"dc881ae\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"18630a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"870a9ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"INNOVATIONS FROM ONDISPLAY CREATIVE\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7df48509\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"_title\":\"Section - LIVING STANDEES\"},\"elements\":[{\"id\":\"1147078d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"23bbc68\",\"elType\":\"widget\",\"settings\":{\"title\":\"LIVING STANDEES HAUNTING THEATERS\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b40d155\",\"elType\":\"widget\",\"settings\":{\"title\":\"ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"700\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86cff8b\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"225341d\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS \\u2013 THE LAST KEY\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a680ae8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"be59fa3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e36fe5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"d4d2039\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2.jpg\",\"id\":88},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3c9b758\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"79e122a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2-1.jpg\",\"id\":87},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3dc9df5\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"start\":0},\"elements\":[],\"widgetType\":\"video\"},{\"id\":\"b61a90b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"8f63560\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"08c588a\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS CHAPTER 3\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0e612c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>OnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7e77f5a\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"gap\":\"wide\"},\"elements\":[{\"id\":\"7eb5a21\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.332},\"elements\":[{\"id\":\"ae25867\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/image-asset.jpeg\",\"id\":196},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"24c773b\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":58},\"elements\":[{\"id\":\"93ad602\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/130807026\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"cb5dad6\",\"elType\":\"section\",\"settings\":{\"_title\":\"Inner Sedtion\"},\"elements\":[{\"id\":\"25cd114\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_title\":\"virtual reality experience\"},\"elements\":[{\"id\":\"15643ab\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"8ec2d0f\",\"elType\":\"widget\",\"settings\":{\"title\":\"VIRTUAL REALITY EXPERIENCE\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4e004ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"SPIDER-MAN HOMECOMING DISPLAY\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"73a2406\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Submerse yourself in the world of your friendly neighborhood Spider-Man in this fun and thrilling VR Theatrical Display.\\u00a0\\u00a0Based on the all-new 2017 film, the Spider-Man Homecoming VR Experience is a first-person look through the eyes of Spidey himself.<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"04b03b4\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7f4ffcc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"7f85dc5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":76,\"_title\":\"spiderman homecoming\"},\"elements\":[{\"id\":\"9a5a392\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Spidey_Home_V4_002.jpg\",\"id\":230},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"css_filters_css_filter\":\"custom\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"c16541a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":24,\"_title\":\"spiderman 2 vertical pics\"},\"elements\":[{\"id\":\"95b0eed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/IMG_3834.jpg\",\"id\":231},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8ea51a8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/IMG_3788.jpg\",\"id\":233}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"12d34c8\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"00\",\"bottom\":\"00\",\"left\":\"00\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"95003e6\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":435,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/TheStrangers_V01.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":4.9,\"sizes\":[]},\"layout\":\"full_width\",\"column_position\":\"top\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":68}},\"_title\":\"Section - STRANGERS HERO\",\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_translateY_direction\":\"negative\",\"background_xpos\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"background_motion_fx_range\":\"viewport\"},\"elements\":[{\"id\":\"b6deb1a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_title\":\"strangers prey at night\"},\"elements\":[{\"id\":\"7a350ee\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"70\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"ecd0cbe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"d684039\",\"elType\":\"widget\",\"settings\":{\"title\":\"THE STRANGERS PREY AT NIGHT\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"003eb99\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5fd9452\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"93ad64e\",\"elType\":\"widget\",\"settings\":{\"title\":\"GRAND FORMAT PHOTO-OP STANDEE\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"247aafb\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"_title\":\"Section - MARKETING AT ITS FINEST\"},\"elements\":[{\"id\":\"f002e93\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"d1321ed\",\"elType\":\"widget\",\"settings\":{\"title\":\"MARKETING AT ITS FINEST, TAILORED FOR SOCIAL MEDIA\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a16ef4e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>This theatrical display allows fans to take photos with Dollface, Pin-up Girl, the Man in the Mask and share their photos on social media.<\\/p>\",\"align\":\"center\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b58ab88\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"00ca412\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58},\"elements\":[{\"id\":\"032d3df\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/003.jpg\",\"id\":446},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"672c1f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42},\"elements\":[{\"id\":\"623f6d1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/26222472_170774200201231_6120473304701599744_n.jpg\",\"id\":447},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a641f07\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/VIDEO_COMING_SOON_01.jpg\",\"id\":449}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cf9e008\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"677b52c\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"31ae5e7\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":515,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/FREEBIRDS_V1B.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":4.9,\"sizes\":[]},\"layout\":\"full_width\",\"column_position\":\"top\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":68}},\"_title\":\"Section - THEATRICAL HERO\",\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_translateY_direction\":\"negative\",\"background_xpos\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"background_motion_fx_range\":\"viewport\"},\"elements\":[{\"id\":\"e45e9b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_title\":\"free birds\"},\"elements\":[{\"id\":\"68717d0\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"70\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"144d01b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"27b94bb\",\"elType\":\"widget\",\"settings\":{\"title\":\"THEATRICAL DISPLAYS\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"672b55e\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"16fbcce\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"ab6e6b7\",\"elType\":\"widget\",\"settings\":{\"title\":\"FREE BIRDS \\u2013 RESIN DISPLAY\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"42b76c7\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"_title\":\"Section - THEATRICAL DISPLAYS\"},\"elements\":[{\"id\":\"9fef846\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"9e16c55\",\"elType\":\"widget\",\"settings\":{\"title\":\"THEATRICAL DISPLAYS\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4a9d8d2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>OnDisplay Creative takes pride in its long history of leading the Entertainment Industry in creating and producing eye catching displays.<\\/p>\",\"align\":\"center\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"263fb63\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"42ecb50\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":69,\"_title\":\"spiderman homecoming\"},\"elements\":[{\"id\":\"fbd93cf\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/47Meters_02_cropped.jpg.jpg\",\"id\":549},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"align\":\"center\",\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2a3ff66\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":31,\"_title\":\"spiderman 2 vertical pics\"},\"elements\":[{\"id\":\"afb6c5e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/DFCV6gdXgAAoGDM.jpeg\",\"id\":520},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ad92bda\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/DEI2HYnW0AEERBl.jpeg\",\"id\":519}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"946f91d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"slideshow\",\"slides\":[{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Spidey_Home_V3.jpg\",\"id\":521},\"_id\":\"fb38f36\",\"type\":\"image\",\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/WarRoom_V1_002.jpg\",\"id\":524},\"_id\":\"a26cba3\",\"type\":\"image\",\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Mada3_01A_002.jpg\",\"id\":525},\"_id\":\"c815938\",\"type\":\"image\",\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/LOOZ_Standee_InTheater_2.jpg\",\"id\":526},\"_id\":\"4e65d42\",\"type\":\"image\",\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Thor-2.jpg\",\"id\":527},\"_id\":\"03a5179\",\"type\":\"image\",\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Echo_01A.jpg\",\"id\":528},\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"3604fe3\"},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Spidey_Home_V4_002-1.jpg\",\"id\":529},\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"f621837\"},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Hurricane-H_V1.jpg\",\"id\":530},\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"9f1174a\"},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Friend_Request.jpg\",\"id\":531},\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"2bec012\"},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/TheStrangers_V02_002.jpg\",\"id\":532},\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"8342d3b\"},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Kidnap2.jpg\",\"id\":533},\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"5ae447b\"},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/RfNight_01A_002.jpg\",\"id\":535},\"image_link_to_type\":\"file\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"56c21c6\"},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/AllSaints2_002.jpg\",\"id\":536},\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"dca9a78\"}],\"slideshow_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"slideshow_slides_per_view\":\"6\",\"thumbs_ratio\":\"43\",\"centered_slides\":\"yes\",\"autoplay_speed\":100},\"elements\":[],\"widgetType\":\"media-carousel\"},{\"id\":\"6bf6bab\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"d0a8d7e\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b45b58e\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":542,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Pets_HomeEnt_FrntP.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":4.9,\"sizes\":[]},\"layout\":\"full_width\",\"column_position\":\"top\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":68}},\"_title\":\"Section - HOME ENT HERO\",\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_translateY_direction\":\"negative\",\"background_xpos\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"background_motion_fx_range\":\"viewport\"},\"elements\":[{\"id\":\"b6af657\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_title\":\"secret life of pets\"},\"elements\":[{\"id\":\"8065946\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"70\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"121e9ec\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"3e5b110\",\"elType\":\"widget\",\"settings\":{\"title\":\"HOME ENTERTAINMENT\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"c4a68e0\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"0e38833\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"3f83c61\",\"elType\":\"widget\",\"settings\":{\"title\":\"THE SECRET LIFE OF PETS\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f43ab31\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"_title\":\"Section - HOME ENTERTAINMENT\"},\"elements\":[{\"id\":\"4398224\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"bd762d2\",\"elType\":\"widget\",\"settings\":{\"title\":\"HOME ENTERTAINMENT\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d49b5e2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>OnDisplay Creative works extensively with many major studios to provide the most effective marketing and merchandising materials. We have a vast understanding of the creative and production needs unique to the Entertainment Industry.<\\/p>\",\"align\":\"center\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f998468\",\"elType\":\"widget\",\"settings\":{\"skin\":\"slideshow\",\"slides\":[{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/SING-WOW_01.jpg\",\"id\":558},\"_id\":\"5601e8a\",\"type\":\"image\",\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/PETS_WOW_02.jpg\",\"id\":556},\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"cf0a445\"},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/BOURNE-WM-HC_01.jpg\",\"id\":555},\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"db277a6\"},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/XMEN_APOC-1.jpg\",\"id\":561},\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"8ee8473\"},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Barbie_01.jpg\",\"id\":554},\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"5e15e1d\"},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/PREPACKS_02.jpg\",\"id\":557},\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"76684ed\"}],\"slideshow_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"slideshow_slides_per_view\":\"6\",\"thumbs_ratio\":\"43\",\"centered_slides\":\"yes\",\"autoplay_speed\":100},\"elements\":[],\"widgetType\":\"media-carousel\"},{\"id\":\"db06005\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"926e5d0\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"81a9415\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":564,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Summer_1.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":4.9,\"sizes\":[]},\"layout\":\"full_width\",\"column_position\":\"top\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":68}},\"_title\":\"Section - RETAIL HERO\",\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_translateY_direction\":\"negative\",\"background_xpos\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"background_motion_fx_range\":\"viewport\"},\"elements\":[{\"id\":\"db3fd34\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_title\":\"old navy summer\"},\"elements\":[{\"id\":\"e57b2ef\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"70\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"6ba3ffc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"ed64037\",\"elType\":\"widget\",\"settings\":{\"title\":\"RETAIL\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9ea645d\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f6d6d26\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"46aa82e\",\"elType\":\"widget\",\"settings\":{\"title\":\"SUMMER SALE EVENT - OLD NAVY\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e636f9f\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"_title\":\"Section - RETAIL\"},\"elements\":[{\"id\":\"186370d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"32f2afd\",\"elType\":\"widget\",\"settings\":{\"title\":\"HOME ENTERTAINMENT\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c6a65b2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>OnDisplay Creative works extensively with many major studios to provide the most effective marketing and merchandising materials. We have a vast understanding of the creative and production needs unique to the Entertainment Industry.<\\/p>\",\"align\":\"center\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0a28eef\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"f2f232a\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"c41c583\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"34456bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"c34d439\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"f0450d4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Add Your Heading Text Here\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5028cc6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Add Your Heading Text Here\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b558194\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>This Semi-Permanent display had interchangeable graphics to promote sale items throughout the Summer campaign.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7d3c615\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"fc91cd2\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6c579e0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Add Your Heading Text Here\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"740bb73\",\"elType\":\"widget\",\"settings\":{\"title\":\"Add Your Heading Text Here\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ad38953\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Multiple items were produced and displayed on this large storefront extravaganza.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"d204c46\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"82f943c\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"414b4e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Add Your Heading Text Here\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"45797c6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Add Your Heading Text Here\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5ced262\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>OnDisplay Creative is very adept in incorporating a variety of substrates to provide captivating Point-of-Purchase displays.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b747fda\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":700},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":900},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"_title\":\"our company bitches\"},\"elements\":[{\"id\":\"7eab781\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"43661634\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our company is a collective of amazing people striving to build delightful products.\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.4},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70cc6d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.<\\/p>\",\"align\":\"center\",\"text_color\":\"#686868\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"615dfb3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1000},\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"6414755f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3bb26eed\",\"elType\":\"widget\",\"settings\":{\"text\":\"Read More\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3},\"button_text_color\":\"#ffffff\",\"background_color\":\"rgba(0,0,0,0)\",\"hover_color\":\"#00ce1b\",\"button_hover_border_color\":\"#00ce1b\",\"hover_animation\":\"grow\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"123f6d1\",\"elType\":\"section\",\"settings\":{\"_title\":\"blank at bottom\"},\"elements\":[{\"id\":\"25fcf2e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"64f593f\",\"elType\":\"section\",\"settings\":{\"_title\":\"blank at bottom\"},\"elements\":[{\"id\":\"596f429\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(3707,571,'_elementor_edit_mode','builder'),(3708,571,'_elementor_elements_usage','a:10:{s:7:\"heading\";i:27;s:6:\"column\";i:38;s:7:\"section\";i:31;s:7:\"divider\";i:9;s:11:\"text-editor\";i:11;s:5:\"image\";i:15;s:5:\"video\";i:2;s:6:\"spacer\";i:5;s:14:\"media-carousel\";i:2;s:6:\"button\";i:1;}'),(3710,572,'_elementor_version','2.6.8'),(3711,572,'_elementor_pro_version','2.6.5'),(3712,572,'_wp_page_template','default'),(3713,572,'_elementor_data','[{\"id\":\"55396f27\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":50,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Theatrical_Display_V003C.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"motion_fx_range\":\"viewport\",\"layout\":\"full_width\",\"column_position\":\"top\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"_title\":\"Section - INSIDIOUS HERO\",\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"background_motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_range\":\"viewport\"},\"elements\":[{\"id\":\"905a97c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ad7f3f6\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"162\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2489c07\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"c0bbe21\",\"elType\":\"widget\",\"settings\":{\"title\":\"#WHAT\'S COOL\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"dc881ae\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"18630a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"870a9ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"INNOVATIONS FROM ONDISPLAY CREATIVE\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7df48509\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"_title\":\"Section - LIVING STANDEES\"},\"elements\":[{\"id\":\"1147078d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"23bbc68\",\"elType\":\"widget\",\"settings\":{\"title\":\"LIVING STANDEES HAUNTING THEATERS\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b40d155\",\"elType\":\"widget\",\"settings\":{\"title\":\"ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"700\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86cff8b\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"225341d\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS \\u2013 THE LAST KEY\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a680ae8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"be59fa3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e36fe5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"d4d2039\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2.jpg\",\"id\":88},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3c9b758\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"79e122a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2-1.jpg\",\"id\":87},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3dc9df5\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"start\":0},\"elements\":[],\"widgetType\":\"video\"},{\"id\":\"b61a90b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"8f63560\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"08c588a\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS CHAPTER 3\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0e612c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>OnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7e77f5a\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"gap\":\"wide\"},\"elements\":[{\"id\":\"7eb5a21\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.332},\"elements\":[{\"id\":\"ae25867\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/image-asset.jpeg\",\"id\":196},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"24c773b\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":58},\"elements\":[{\"id\":\"93ad602\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/130807026\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"cb5dad6\",\"elType\":\"section\",\"settings\":{\"_title\":\"Inner Sedtion\"},\"elements\":[{\"id\":\"25cd114\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_title\":\"virtual reality experience\"},\"elements\":[{\"id\":\"15643ab\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"8ec2d0f\",\"elType\":\"widget\",\"settings\":{\"title\":\"VIRTUAL REALITY EXPERIENCE\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4e004ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"SPIDER-MAN HOMECOMING DISPLAY\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"73a2406\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Submerse yourself in the world of your friendly neighborhood Spider-Man in this fun and thrilling VR Theatrical Display.\\u00a0\\u00a0Based on the all-new 2017 film, the Spider-Man Homecoming VR Experience is a first-person look through the eyes of Spidey himself.<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"04b03b4\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7f4ffcc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"7f85dc5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":76,\"_title\":\"spiderman homecoming\"},\"elements\":[{\"id\":\"9a5a392\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Spidey_Home_V4_002.jpg\",\"id\":230},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"css_filters_css_filter\":\"custom\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"c16541a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":24,\"_title\":\"spiderman 2 vertical pics\"},\"elements\":[{\"id\":\"95b0eed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/IMG_3834.jpg\",\"id\":231},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8ea51a8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/IMG_3788.jpg\",\"id\":233}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"12d34c8\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"00\",\"bottom\":\"00\",\"left\":\"00\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"95003e6\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":435,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/TheStrangers_V01.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":4.9,\"sizes\":[]},\"layout\":\"full_width\",\"column_position\":\"top\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":68}},\"_title\":\"Section - STRANGERS HERO\",\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_translateY_direction\":\"negative\",\"background_xpos\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"background_motion_fx_range\":\"viewport\"},\"elements\":[{\"id\":\"b6deb1a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_title\":\"strangers prey at night\"},\"elements\":[{\"id\":\"7a350ee\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"70\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"ecd0cbe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"d684039\",\"elType\":\"widget\",\"settings\":{\"title\":\"THE STRANGERS PREY AT NIGHT\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"003eb99\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5fd9452\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"93ad64e\",\"elType\":\"widget\",\"settings\":{\"title\":\"GRAND FORMAT PHOTO-OP STANDEE\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"247aafb\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"_title\":\"Section - MARKETING AT ITS FINEST\"},\"elements\":[{\"id\":\"f002e93\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"d1321ed\",\"elType\":\"widget\",\"settings\":{\"title\":\"MARKETING AT ITS FINEST, TAILORED FOR SOCIAL MEDIA\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a16ef4e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>This theatrical display allows fans to take photos with Dollface, Pin-up Girl, the Man in the Mask and share their photos on social media.<\\/p>\",\"align\":\"center\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b58ab88\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"00ca412\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58},\"elements\":[{\"id\":\"032d3df\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/003.jpg\",\"id\":446},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"672c1f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42},\"elements\":[{\"id\":\"623f6d1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/26222472_170774200201231_6120473304701599744_n.jpg\",\"id\":447},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a641f07\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/VIDEO_COMING_SOON_01.jpg\",\"id\":449}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cf9e008\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"677b52c\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"31ae5e7\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":515,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/FREEBIRDS_V1B.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":4.9,\"sizes\":[]},\"layout\":\"full_width\",\"column_position\":\"top\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":68}},\"_title\":\"Section - THEATRICAL HERO\",\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_translateY_direction\":\"negative\",\"background_xpos\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"background_motion_fx_range\":\"viewport\"},\"elements\":[{\"id\":\"e45e9b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_title\":\"free birds\"},\"elements\":[{\"id\":\"68717d0\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"70\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"144d01b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"27b94bb\",\"elType\":\"widget\",\"settings\":{\"title\":\"THEATRICAL DISPLAYS\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"672b55e\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"16fbcce\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"ab6e6b7\",\"elType\":\"widget\",\"settings\":{\"title\":\"FREE BIRDS \\u2013 RESIN DISPLAY\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"42b76c7\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"_title\":\"Section - THEATRICAL DISPLAYS\"},\"elements\":[{\"id\":\"9fef846\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"9e16c55\",\"elType\":\"widget\",\"settings\":{\"title\":\"THEATRICAL DISPLAYS\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4a9d8d2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>OnDisplay Creative takes pride in its long history of leading the Entertainment Industry in creating and producing eye catching displays.<\\/p>\",\"align\":\"center\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"263fb63\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"42ecb50\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":69,\"_title\":\"spiderman homecoming\"},\"elements\":[{\"id\":\"fbd93cf\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/47Meters_02_cropped.jpg.jpg\",\"id\":549},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"align\":\"center\",\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2a3ff66\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":31,\"_title\":\"spiderman 2 vertical pics\"},\"elements\":[{\"id\":\"afb6c5e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/DFCV6gdXgAAoGDM.jpeg\",\"id\":520},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ad92bda\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/DEI2HYnW0AEERBl.jpeg\",\"id\":519}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"946f91d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"slideshow\",\"slides\":[{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Spidey_Home_V3.jpg\",\"id\":521},\"_id\":\"fb38f36\",\"type\":\"image\",\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/WarRoom_V1_002.jpg\",\"id\":524},\"_id\":\"a26cba3\",\"type\":\"image\",\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Mada3_01A_002.jpg\",\"id\":525},\"_id\":\"c815938\",\"type\":\"image\",\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/LOOZ_Standee_InTheater_2.jpg\",\"id\":526},\"_id\":\"4e65d42\",\"type\":\"image\",\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Thor-2.jpg\",\"id\":527},\"_id\":\"03a5179\",\"type\":\"image\",\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Echo_01A.jpg\",\"id\":528},\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"3604fe3\"},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Spidey_Home_V4_002-1.jpg\",\"id\":529},\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"f621837\"},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Hurricane-H_V1.jpg\",\"id\":530},\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"9f1174a\"},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Friend_Request.jpg\",\"id\":531},\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"2bec012\"},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/TheStrangers_V02_002.jpg\",\"id\":532},\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"8342d3b\"},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Kidnap2.jpg\",\"id\":533},\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"5ae447b\"},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/RfNight_01A_002.jpg\",\"id\":535},\"image_link_to_type\":\"file\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"56c21c6\"},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/AllSaints2_002.jpg\",\"id\":536},\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"dca9a78\"}],\"slideshow_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"slideshow_slides_per_view\":\"6\",\"thumbs_ratio\":\"43\",\"centered_slides\":\"yes\",\"autoplay_speed\":100},\"elements\":[],\"widgetType\":\"media-carousel\"},{\"id\":\"6bf6bab\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"d0a8d7e\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b45b58e\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":542,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Pets_HomeEnt_FrntP.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":4.9,\"sizes\":[]},\"layout\":\"full_width\",\"column_position\":\"top\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":68}},\"_title\":\"Section - HOME ENT HERO\",\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_translateY_direction\":\"negative\",\"background_xpos\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"background_motion_fx_range\":\"viewport\"},\"elements\":[{\"id\":\"b6af657\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_title\":\"secret life of pets\"},\"elements\":[{\"id\":\"8065946\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"70\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"121e9ec\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"3e5b110\",\"elType\":\"widget\",\"settings\":{\"title\":\"HOME ENTERTAINMENT\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"c4a68e0\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"0e38833\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"3f83c61\",\"elType\":\"widget\",\"settings\":{\"title\":\"THE SECRET LIFE OF PETS\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f43ab31\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"_title\":\"Section - HOME ENTERTAINMENT\"},\"elements\":[{\"id\":\"4398224\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"bd762d2\",\"elType\":\"widget\",\"settings\":{\"title\":\"HOME ENTERTAINMENT\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d49b5e2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>OnDisplay Creative works extensively with many major studios to provide the most effective marketing and merchandising materials. We have a vast understanding of the creative and production needs unique to the Entertainment Industry.<\\/p>\",\"align\":\"center\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f998468\",\"elType\":\"widget\",\"settings\":{\"skin\":\"slideshow\",\"slides\":[{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/SING-WOW_01.jpg\",\"id\":558},\"_id\":\"5601e8a\",\"type\":\"image\",\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/PETS_WOW_02.jpg\",\"id\":556},\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"cf0a445\"},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/BOURNE-WM-HC_01.jpg\",\"id\":555},\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"db277a6\"},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/XMEN_APOC-1.jpg\",\"id\":561},\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"8ee8473\"},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Barbie_01.jpg\",\"id\":554},\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"5e15e1d\"},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/PREPACKS_02.jpg\",\"id\":557},\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"76684ed\"}],\"slideshow_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"slideshow_slides_per_view\":\"6\",\"thumbs_ratio\":\"43\",\"centered_slides\":\"yes\",\"autoplay_speed\":100},\"elements\":[],\"widgetType\":\"media-carousel\"},{\"id\":\"db06005\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"926e5d0\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"81a9415\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":564,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Summer_1.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":4.9,\"sizes\":[]},\"layout\":\"full_width\",\"column_position\":\"top\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":68}},\"_title\":\"Section - RETAIL HERO\",\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_translateY_direction\":\"negative\",\"background_xpos\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"background_motion_fx_range\":\"viewport\"},\"elements\":[{\"id\":\"db3fd34\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_title\":\"old navy summer\"},\"elements\":[{\"id\":\"e57b2ef\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"70\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"6ba3ffc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"ed64037\",\"elType\":\"widget\",\"settings\":{\"title\":\"RETAIL\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9ea645d\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f6d6d26\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"46aa82e\",\"elType\":\"widget\",\"settings\":{\"title\":\"SUMMER SALE EVENT - OLD NAVY\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e636f9f\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"_title\":\"Section - RETAIL\"},\"elements\":[{\"id\":\"186370d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"32f2afd\",\"elType\":\"widget\",\"settings\":{\"title\":\"HOME ENTERTAINMENT\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c6a65b2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>OnDisplay Creative works extensively with many major studios to provide the most effective marketing and merchandising materials. We have a vast understanding of the creative and production needs unique to the Entertainment Industry.<\\/p>\",\"align\":\"center\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0a28eef\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"f2f232a\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"c41c583\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"34456bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"c34d439\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"f0450d4\",\"elType\":\"widget\",\"settings\":{\"title\":\"SURF BOARD\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5028cc6\",\"elType\":\"widget\",\"settings\":{\"title\":\"SWAPPABLE POSTER\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b558194\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>This Semi-Permanent display had interchangeable graphics to promote sale items throughout the Summer campaign.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7d3c615\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"fc91cd2\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6c579e0\",\"elType\":\"widget\",\"settings\":{\"title\":\"HOLIDAY STAGE\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"740bb73\",\"elType\":\"widget\",\"settings\":{\"title\":\"STAGE CHANGE OUTS\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ad38953\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Multiple items were produced and displayed on this large storefront extravaganza.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"d204c46\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"82f943c\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"414b4e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"LOVE GAP\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"45797c6\",\"elType\":\"widget\",\"settings\":{\"title\":\"QUALITY PROTOTYPING\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5ced262\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>OnDisplay Creative is very adept in incorporating a variety of substrates to provide captivating Point-of-Purchase displays.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b747fda\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":700},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":900},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"_title\":\"our company bitches\"},\"elements\":[{\"id\":\"7eab781\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"43661634\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our company is a collective of amazing people striving to build delightful products.\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.4},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70cc6d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.<\\/p>\",\"align\":\"center\",\"text_color\":\"#686868\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"615dfb3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1000},\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"6414755f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3bb26eed\",\"elType\":\"widget\",\"settings\":{\"text\":\"Read More\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3},\"button_text_color\":\"#ffffff\",\"background_color\":\"rgba(0,0,0,0)\",\"hover_color\":\"#00ce1b\",\"button_hover_border_color\":\"#00ce1b\",\"hover_animation\":\"grow\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"123f6d1\",\"elType\":\"section\",\"settings\":{\"_title\":\"blank at bottom\"},\"elements\":[{\"id\":\"25fcf2e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"64f593f\",\"elType\":\"section\",\"settings\":{\"_title\":\"blank at bottom\"},\"elements\":[{\"id\":\"596f429\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(3714,572,'_elementor_edit_mode','builder'),(3715,572,'_elementor_elements_usage','a:10:{s:7:\"heading\";i:27;s:6:\"column\";i:38;s:7:\"section\";i:31;s:7:\"divider\";i:9;s:11:\"text-editor\";i:11;s:5:\"image\";i:15;s:5:\"video\";i:2;s:6:\"spacer\";i:5;s:14:\"media-carousel\";i:2;s:6:\"button\";i:1;}'),(3721,573,'_elementor_edit_mode','builder'),(3722,573,'_elementor_elements_usage','a:10:{s:7:\"heading\";i:23;s:6:\"column\";i:38;s:7:\"section\";i:31;s:7:\"divider\";i:8;s:11:\"text-editor\";i:7;s:5:\"image\";i:15;s:5:\"video\";i:2;s:6:\"spacer\";i:4;s:14:\"media-carousel\";i:2;s:6:\"button\";i:1;}'),(3723,574,'_elementor_template_type','post'),(3724,574,'_elementor_version','2.6.8'),(3725,574,'_elementor_pro_version','2.6.5'),(3726,574,'_wp_page_template','default'),(3727,574,'_elementor_data','[{\"id\":\"55396f27\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":50,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Theatrical_Display_V003C.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"motion_fx_range\":\"viewport\",\"layout\":\"full_width\",\"column_position\":\"top\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"_title\":\"Section - INSIDIOUS HERO\",\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"background_motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_range\":\"viewport\"},\"elements\":[{\"id\":\"905a97c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ad7f3f6\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"162\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2489c07\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"c0bbe21\",\"elType\":\"widget\",\"settings\":{\"title\":\"#WHAT\'S COOL\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"dc881ae\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"18630a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"870a9ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"INNOVATIONS FROM ONDISPLAY CREATIVE\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7df48509\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"_title\":\"Section - LIVING STANDEES\"},\"elements\":[{\"id\":\"1147078d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"23bbc68\",\"elType\":\"widget\",\"settings\":{\"title\":\"LIVING STANDEES HAUNTING THEATERS\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b40d155\",\"elType\":\"widget\",\"settings\":{\"title\":\"ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"700\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86cff8b\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"225341d\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS \\u2013 THE LAST KEY\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a680ae8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"be59fa3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e36fe5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"d4d2039\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2.jpg\",\"id\":88},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3c9b758\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"79e122a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2-1.jpg\",\"id\":87},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3dc9df5\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"start\":0},\"elements\":[],\"widgetType\":\"video\"},{\"id\":\"b61a90b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"8f63560\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"08c588a\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS CHAPTER 3\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0e612c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>OnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7e77f5a\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"gap\":\"wide\"},\"elements\":[{\"id\":\"7eb5a21\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.332},\"elements\":[{\"id\":\"ae25867\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/image-asset.jpeg\",\"id\":196},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"24c773b\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":58},\"elements\":[{\"id\":\"93ad602\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/130807026\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"cb5dad6\",\"elType\":\"section\",\"settings\":{\"_title\":\"Inner Sedtion\"},\"elements\":[{\"id\":\"25cd114\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_title\":\"virtual reality experience\"},\"elements\":[{\"id\":\"15643ab\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"8ec2d0f\",\"elType\":\"widget\",\"settings\":{\"title\":\"VIRTUAL REALITY EXPERIENCE\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4e004ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"SPIDER-MAN HOMECOMING DISPLAY\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"73a2406\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Submerse yourself in the world of your friendly neighborhood Spider-Man in this fun and thrilling VR Theatrical Display.\\u00a0\\u00a0Based on the all-new 2017 film, the Spider-Man Homecoming VR Experience is a first-person look through the eyes of Spidey himself.<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"04b03b4\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7f4ffcc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"7f85dc5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":76,\"_title\":\"spiderman homecoming\"},\"elements\":[{\"id\":\"9a5a392\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Spidey_Home_V4_002.jpg\",\"id\":230},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"css_filters_css_filter\":\"custom\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"c16541a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":24,\"_title\":\"spiderman 2 vertical pics\"},\"elements\":[{\"id\":\"95b0eed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/IMG_3834.jpg\",\"id\":231},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8ea51a8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/IMG_3788.jpg\",\"id\":233}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"12d34c8\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"00\",\"bottom\":\"00\",\"left\":\"00\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"95003e6\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":435,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/TheStrangers_V01.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":4.9,\"sizes\":[]},\"layout\":\"full_width\",\"column_position\":\"top\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":68}},\"_title\":\"Section - STRANGERS HERO\",\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_translateY_direction\":\"negative\",\"background_xpos\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"background_motion_fx_range\":\"viewport\"},\"elements\":[{\"id\":\"b6deb1a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_title\":\"strangers prey at night\"},\"elements\":[{\"id\":\"7a350ee\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"70\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"ecd0cbe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"d684039\",\"elType\":\"widget\",\"settings\":{\"title\":\"THE STRANGERS PREY AT NIGHT\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"003eb99\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5fd9452\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"93ad64e\",\"elType\":\"widget\",\"settings\":{\"title\":\"GRAND FORMAT PHOTO-OP STANDEE\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"247aafb\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"_title\":\"Section - MARKETING AT ITS FINEST\"},\"elements\":[{\"id\":\"f002e93\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"d1321ed\",\"elType\":\"widget\",\"settings\":{\"title\":\"MARKETING AT ITS FINEST, TAILORED FOR SOCIAL MEDIA\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a16ef4e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>This theatrical display allows fans to take photos with Dollface, Pin-up Girl, the Man in the Mask and share their photos on social media.<\\/p>\",\"align\":\"center\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b58ab88\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"00ca412\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58},\"elements\":[{\"id\":\"032d3df\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/003.jpg\",\"id\":446},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"672c1f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42},\"elements\":[{\"id\":\"623f6d1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/26222472_170774200201231_6120473304701599744_n.jpg\",\"id\":447},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a641f07\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/VIDEO_COMING_SOON_01.jpg\",\"id\":449}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cf9e008\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"677b52c\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"31ae5e7\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":515,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/FREEBIRDS_V1B.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":4.9,\"sizes\":[]},\"layout\":\"full_width\",\"column_position\":\"top\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":68}},\"_title\":\"Section - THEATRICAL HERO\",\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_translateY_direction\":\"negative\",\"background_xpos\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"background_motion_fx_range\":\"viewport\"},\"elements\":[{\"id\":\"e45e9b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_title\":\"free birds\"},\"elements\":[{\"id\":\"68717d0\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"70\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"144d01b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"27b94bb\",\"elType\":\"widget\",\"settings\":{\"title\":\"THEATRICAL DISPLAYS\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"672b55e\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"16fbcce\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"ab6e6b7\",\"elType\":\"widget\",\"settings\":{\"title\":\"FREE BIRDS \\u2013 RESIN DISPLAY\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"42b76c7\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"_title\":\"Section - THEATRICAL DISPLAYS\"},\"elements\":[{\"id\":\"9fef846\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"9e16c55\",\"elType\":\"widget\",\"settings\":{\"title\":\"THEATRICAL DISPLAYS\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4a9d8d2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>OnDisplay Creative takes pride in its long history of leading the Entertainment Industry in creating and producing eye catching displays.<\\/p>\",\"align\":\"center\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"263fb63\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"42ecb50\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":69,\"_title\":\"spiderman homecoming\"},\"elements\":[{\"id\":\"fbd93cf\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/47Meters_02_cropped.jpg.jpg\",\"id\":549},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"align\":\"center\",\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2a3ff66\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":31,\"_title\":\"spiderman 2 vertical pics\"},\"elements\":[{\"id\":\"afb6c5e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/DFCV6gdXgAAoGDM.jpeg\",\"id\":520},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ad92bda\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/DEI2HYnW0AEERBl.jpeg\",\"id\":519}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"946f91d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"slideshow\",\"slides\":[{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Spidey_Home_V3.jpg\",\"id\":521},\"_id\":\"fb38f36\",\"type\":\"image\",\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/WarRoom_V1_002.jpg\",\"id\":524},\"_id\":\"a26cba3\",\"type\":\"image\",\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Mada3_01A_002.jpg\",\"id\":525},\"_id\":\"c815938\",\"type\":\"image\",\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/LOOZ_Standee_InTheater_2.jpg\",\"id\":526},\"_id\":\"4e65d42\",\"type\":\"image\",\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Thor-2.jpg\",\"id\":527},\"_id\":\"03a5179\",\"type\":\"image\",\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Echo_01A.jpg\",\"id\":528},\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"3604fe3\"},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Spidey_Home_V4_002-1.jpg\",\"id\":529},\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"f621837\"},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Hurricane-H_V1.jpg\",\"id\":530},\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"9f1174a\"},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Friend_Request.jpg\",\"id\":531},\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"2bec012\"},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/TheStrangers_V02_002.jpg\",\"id\":532},\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"8342d3b\"},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Kidnap2.jpg\",\"id\":533},\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"5ae447b\"},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/RfNight_01A_002.jpg\",\"id\":535},\"image_link_to_type\":\"file\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"56c21c6\"},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/AllSaints2_002.jpg\",\"id\":536},\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"dca9a78\"}],\"slideshow_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"slideshow_slides_per_view\":\"6\",\"thumbs_ratio\":\"43\",\"centered_slides\":\"yes\",\"autoplay_speed\":100},\"elements\":[],\"widgetType\":\"media-carousel\"},{\"id\":\"6bf6bab\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"d0a8d7e\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b45b58e\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":542,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Pets_HomeEnt_FrntP.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":4.9,\"sizes\":[]},\"layout\":\"full_width\",\"column_position\":\"top\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":68}},\"_title\":\"Section - HOME ENT HERO\",\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_translateY_direction\":\"negative\",\"background_xpos\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"background_motion_fx_range\":\"viewport\"},\"elements\":[{\"id\":\"b6af657\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_title\":\"secret life of pets\"},\"elements\":[{\"id\":\"8065946\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"70\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"121e9ec\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"3e5b110\",\"elType\":\"widget\",\"settings\":{\"title\":\"HOME ENTERTAINMENT\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"c4a68e0\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"0e38833\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"3f83c61\",\"elType\":\"widget\",\"settings\":{\"title\":\"THE SECRET LIFE OF PETS\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f43ab31\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"_title\":\"Section - HOME ENTERTAINMENT\"},\"elements\":[{\"id\":\"4398224\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"bd762d2\",\"elType\":\"widget\",\"settings\":{\"title\":\"HOME ENTERTAINMENT\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d49b5e2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>OnDisplay Creative works extensively with many major studios to provide the most effective marketing and merchandising materials. We have a vast understanding of the creative and production needs unique to the Entertainment Industry.<\\/p>\",\"align\":\"center\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f998468\",\"elType\":\"widget\",\"settings\":{\"skin\":\"slideshow\",\"slides\":[{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/SING-WOW_01.jpg\",\"id\":558},\"_id\":\"5601e8a\",\"type\":\"image\",\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/PETS_WOW_02.jpg\",\"id\":556},\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"cf0a445\"},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/BOURNE-WM-HC_01.jpg\",\"id\":555},\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"db277a6\"},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/XMEN_APOC-1.jpg\",\"id\":561},\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"8ee8473\"},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Barbie_01.jpg\",\"id\":554},\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"5e15e1d\"},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/PREPACKS_02.jpg\",\"id\":557},\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"76684ed\"}],\"slideshow_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"slideshow_slides_per_view\":\"6\",\"thumbs_ratio\":\"43\",\"centered_slides\":\"yes\",\"autoplay_speed\":100},\"elements\":[],\"widgetType\":\"media-carousel\"},{\"id\":\"db06005\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"926e5d0\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"81a9415\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":564,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Summer_1.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":4.9,\"sizes\":[]},\"layout\":\"full_width\",\"column_position\":\"top\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":68}},\"_title\":\"Section - RETAIL HERO\",\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_translateY_direction\":\"negative\",\"background_xpos\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"background_motion_fx_range\":\"viewport\"},\"elements\":[{\"id\":\"db3fd34\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_title\":\"old navy summer\"},\"elements\":[{\"id\":\"e57b2ef\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"70\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"6ba3ffc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"ed64037\",\"elType\":\"widget\",\"settings\":{\"title\":\"RETAIL\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9ea645d\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f6d6d26\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"46aa82e\",\"elType\":\"widget\",\"settings\":{\"title\":\"SUMMER SALE EVENT - OLD NAVY\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e636f9f\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"_title\":\"Section - RETAIL\"},\"elements\":[{\"id\":\"186370d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"c41c583\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"34456bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"c34d439\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/SUMMER_2.jpg\",\"id\":568}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"f0450d4\",\"elType\":\"widget\",\"settings\":{\"title\":\"SURF BOARD\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4feec62\",\"elType\":\"widget\",\"settings\":{\"title\":\"SWAPPABLE POSTER\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ddf5cb6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>This Semi-Permanent display had interchangeable graphics to promote sale items throughout the Summer campaign.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7d3c615\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"fc91cd2\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6c579e0\",\"elType\":\"widget\",\"settings\":{\"title\":\"HOLIDAY STAGE\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"d204c46\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"82f943c\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"414b4e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"LOVE GAP\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b747fda\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":700},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":900},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"_title\":\"our company bitches\"},\"elements\":[{\"id\":\"7eab781\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"43661634\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our company is a collective of amazing people striving to build delightful products.\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.4},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70cc6d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.<\\/p>\",\"align\":\"center\",\"text_color\":\"#686868\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"615dfb3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1000},\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"6414755f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3bb26eed\",\"elType\":\"widget\",\"settings\":{\"text\":\"Read More\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3},\"button_text_color\":\"#ffffff\",\"background_color\":\"rgba(0,0,0,0)\",\"hover_color\":\"#00ce1b\",\"button_hover_border_color\":\"#00ce1b\",\"hover_animation\":\"grow\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"123f6d1\",\"elType\":\"section\",\"settings\":{\"_title\":\"blank at bottom\"},\"elements\":[{\"id\":\"25fcf2e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"64f593f\",\"elType\":\"section\",\"settings\":{\"_title\":\"blank at bottom\"},\"elements\":[{\"id\":\"596f429\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false}]');
INSERT INTO `wp_postmeta` VALUES (3728,574,'_elementor_edit_mode','builder'),(3729,574,'_elementor_elements_usage','a:10:{s:7:\"heading\";i:24;s:6:\"column\";i:38;s:7:\"section\";i:31;s:7:\"divider\";i:8;s:11:\"text-editor\";i:8;s:5:\"image\";i:15;s:5:\"video\";i:2;s:6:\"spacer\";i:4;s:14:\"media-carousel\";i:2;s:6:\"button\";i:1;}'),(3730,575,'_wp_attached_file','2019/09/Hodilay_1_cropped.jpg'),(3731,575,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:750;s:6:\"height\";i:500;s:4:\"file\";s:29:\"2019/09/Hodilay_1_cropped.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"Hodilay_1_cropped-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:29:\"Hodilay_1_cropped-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:8:\"(C) 2012\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3732,576,'_wp_attached_file','2019/09/SUMMER_2_cropped.jpg'),(3733,576,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:750;s:6:\"height\";i:500;s:4:\"file\";s:28:\"2019/09/SUMMER_2_cropped.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"SUMMER_2_cropped-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"SUMMER_2_cropped-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3734,577,'_wp_attached_file','2019/09/image-asset-1.jpeg'),(3735,577,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:750;s:6:\"height\";i:500;s:4:\"file\";s:26:\"2019/09/image-asset-1.jpeg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"image-asset-1-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"image-asset-1-300x200.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:8:\"(C) 2012\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3741,578,'_elementor_edit_mode','builder'),(3742,578,'_elementor_elements_usage','a:10:{s:7:\"heading\";i:24;s:6:\"column\";i:38;s:7:\"section\";i:31;s:7:\"divider\";i:8;s:11:\"text-editor\";i:8;s:5:\"image\";i:15;s:5:\"video\";i:2;s:6:\"spacer\";i:4;s:14:\"media-carousel\";i:2;s:6:\"button\";i:1;}'),(3743,579,'_elementor_template_type','post'),(3744,579,'_elementor_version','2.6.8'),(3745,579,'_elementor_pro_version','2.6.5'),(3746,579,'_wp_page_template','default'),(3747,579,'_elementor_data','[{\"id\":\"55396f27\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":50,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Theatrical_Display_V003C.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"motion_fx_range\":\"viewport\",\"layout\":\"full_width\",\"column_position\":\"top\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"_title\":\"Section - INSIDIOUS HERO\",\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"background_motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_range\":\"viewport\"},\"elements\":[{\"id\":\"905a97c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ad7f3f6\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"162\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2489c07\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"c0bbe21\",\"elType\":\"widget\",\"settings\":{\"title\":\"#WHAT\'S COOL\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"dc881ae\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"18630a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"870a9ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"INNOVATIONS FROM ONDISPLAY CREATIVE\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7df48509\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"_title\":\"Section - LIVING STANDEES\"},\"elements\":[{\"id\":\"1147078d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"23bbc68\",\"elType\":\"widget\",\"settings\":{\"title\":\"LIVING STANDEES HAUNTING THEATERS\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b40d155\",\"elType\":\"widget\",\"settings\":{\"title\":\"ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"700\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86cff8b\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"225341d\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS \\u2013 THE LAST KEY\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a680ae8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"be59fa3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e36fe5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"d4d2039\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2.jpg\",\"id\":88},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3c9b758\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"79e122a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2-1.jpg\",\"id\":87},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3dc9df5\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"start\":0},\"elements\":[],\"widgetType\":\"video\"},{\"id\":\"b61a90b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"8f63560\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"08c588a\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS CHAPTER 3\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0e612c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>OnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7e77f5a\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"gap\":\"wide\"},\"elements\":[{\"id\":\"7eb5a21\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.332},\"elements\":[{\"id\":\"ae25867\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/image-asset.jpeg\",\"id\":196},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"24c773b\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":58},\"elements\":[{\"id\":\"93ad602\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/130807026\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"cb5dad6\",\"elType\":\"section\",\"settings\":{\"_title\":\"Inner Sedtion\"},\"elements\":[{\"id\":\"25cd114\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_title\":\"virtual reality experience\"},\"elements\":[{\"id\":\"15643ab\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"8ec2d0f\",\"elType\":\"widget\",\"settings\":{\"title\":\"VIRTUAL REALITY EXPERIENCE\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4e004ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"SPIDER-MAN HOMECOMING DISPLAY\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"73a2406\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Submerse yourself in the world of your friendly neighborhood Spider-Man in this fun and thrilling VR Theatrical Display.\\u00a0\\u00a0Based on the all-new 2017 film, the Spider-Man Homecoming VR Experience is a first-person look through the eyes of Spidey himself.<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"04b03b4\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7f4ffcc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"7f85dc5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":76,\"_title\":\"spiderman homecoming\"},\"elements\":[{\"id\":\"9a5a392\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Spidey_Home_V4_002.jpg\",\"id\":230},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"css_filters_css_filter\":\"custom\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"c16541a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":24,\"_title\":\"spiderman 2 vertical pics\"},\"elements\":[{\"id\":\"95b0eed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/IMG_3834.jpg\",\"id\":231},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8ea51a8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/IMG_3788.jpg\",\"id\":233}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"12d34c8\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"00\",\"bottom\":\"00\",\"left\":\"00\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"95003e6\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":435,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/TheStrangers_V01.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":4.9,\"sizes\":[]},\"layout\":\"full_width\",\"column_position\":\"top\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":68}},\"_title\":\"Section - STRANGERS HERO\",\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_translateY_direction\":\"negative\",\"background_xpos\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"background_motion_fx_range\":\"viewport\"},\"elements\":[{\"id\":\"b6deb1a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_title\":\"strangers prey at night\"},\"elements\":[{\"id\":\"7a350ee\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"70\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"ecd0cbe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"d684039\",\"elType\":\"widget\",\"settings\":{\"title\":\"THE STRANGERS PREY AT NIGHT\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"003eb99\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5fd9452\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"93ad64e\",\"elType\":\"widget\",\"settings\":{\"title\":\"GRAND FORMAT PHOTO-OP STANDEE\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"247aafb\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"_title\":\"Section - MARKETING AT ITS FINEST\"},\"elements\":[{\"id\":\"f002e93\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"d1321ed\",\"elType\":\"widget\",\"settings\":{\"title\":\"MARKETING AT ITS FINEST, TAILORED FOR SOCIAL MEDIA\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a16ef4e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>This theatrical display allows fans to take photos with Dollface, Pin-up Girl, the Man in the Mask and share their photos on social media.<\\/p>\",\"align\":\"center\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b58ab88\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"00ca412\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58},\"elements\":[{\"id\":\"032d3df\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/003.jpg\",\"id\":446},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"672c1f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42},\"elements\":[{\"id\":\"623f6d1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/26222472_170774200201231_6120473304701599744_n.jpg\",\"id\":447},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a641f07\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/VIDEO_COMING_SOON_01.jpg\",\"id\":449}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cf9e008\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"677b52c\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"31ae5e7\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":515,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/FREEBIRDS_V1B.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":4.9,\"sizes\":[]},\"layout\":\"full_width\",\"column_position\":\"top\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":68}},\"_title\":\"Section - THEATRICAL HERO\",\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_translateY_direction\":\"negative\",\"background_xpos\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"background_motion_fx_range\":\"viewport\"},\"elements\":[{\"id\":\"e45e9b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_title\":\"free birds\"},\"elements\":[{\"id\":\"68717d0\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"70\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"144d01b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"27b94bb\",\"elType\":\"widget\",\"settings\":{\"title\":\"THEATRICAL DISPLAYS\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"672b55e\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"16fbcce\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"ab6e6b7\",\"elType\":\"widget\",\"settings\":{\"title\":\"FREE BIRDS \\u2013 RESIN DISPLAY\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"42b76c7\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"_title\":\"Section - THEATRICAL DISPLAYS\"},\"elements\":[{\"id\":\"9fef846\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"9e16c55\",\"elType\":\"widget\",\"settings\":{\"title\":\"THEATRICAL DISPLAYS\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4a9d8d2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>OnDisplay Creative takes pride in its long history of leading the Entertainment Industry in creating and producing eye catching displays.<\\/p>\",\"align\":\"center\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"263fb63\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"42ecb50\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":69,\"_title\":\"spiderman homecoming\"},\"elements\":[{\"id\":\"fbd93cf\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/47Meters_02_cropped.jpg.jpg\",\"id\":549},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"align\":\"center\",\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2a3ff66\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":31,\"_title\":\"spiderman 2 vertical pics\"},\"elements\":[{\"id\":\"afb6c5e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/DFCV6gdXgAAoGDM.jpeg\",\"id\":520},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ad92bda\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/DEI2HYnW0AEERBl.jpeg\",\"id\":519}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"946f91d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"slideshow\",\"slides\":[{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Spidey_Home_V3.jpg\",\"id\":521},\"_id\":\"fb38f36\",\"type\":\"image\",\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/WarRoom_V1_002.jpg\",\"id\":524},\"_id\":\"a26cba3\",\"type\":\"image\",\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Mada3_01A_002.jpg\",\"id\":525},\"_id\":\"c815938\",\"type\":\"image\",\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/LOOZ_Standee_InTheater_2.jpg\",\"id\":526},\"_id\":\"4e65d42\",\"type\":\"image\",\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Thor-2.jpg\",\"id\":527},\"_id\":\"03a5179\",\"type\":\"image\",\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Echo_01A.jpg\",\"id\":528},\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"3604fe3\"},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Spidey_Home_V4_002-1.jpg\",\"id\":529},\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"f621837\"},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Hurricane-H_V1.jpg\",\"id\":530},\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"9f1174a\"},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Friend_Request.jpg\",\"id\":531},\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"2bec012\"},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/TheStrangers_V02_002.jpg\",\"id\":532},\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"8342d3b\"},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Kidnap2.jpg\",\"id\":533},\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"5ae447b\"},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/RfNight_01A_002.jpg\",\"id\":535},\"image_link_to_type\":\"file\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"56c21c6\"},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/AllSaints2_002.jpg\",\"id\":536},\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"dca9a78\"}],\"slideshow_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"slideshow_slides_per_view\":\"6\",\"thumbs_ratio\":\"43\",\"centered_slides\":\"yes\",\"autoplay_speed\":100},\"elements\":[],\"widgetType\":\"media-carousel\"},{\"id\":\"6bf6bab\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"d0a8d7e\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b45b58e\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":542,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Pets_HomeEnt_FrntP.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":4.9,\"sizes\":[]},\"layout\":\"full_width\",\"column_position\":\"top\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":68}},\"_title\":\"Section - HOME ENT HERO\",\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_translateY_direction\":\"negative\",\"background_xpos\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"background_motion_fx_range\":\"viewport\"},\"elements\":[{\"id\":\"b6af657\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_title\":\"secret life of pets\"},\"elements\":[{\"id\":\"8065946\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"70\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"121e9ec\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"3e5b110\",\"elType\":\"widget\",\"settings\":{\"title\":\"HOME ENTERTAINMENT\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"c4a68e0\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"0e38833\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"3f83c61\",\"elType\":\"widget\",\"settings\":{\"title\":\"THE SECRET LIFE OF PETS\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f43ab31\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"_title\":\"Section - HOME ENTERTAINMENT\"},\"elements\":[{\"id\":\"4398224\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"bd762d2\",\"elType\":\"widget\",\"settings\":{\"title\":\"HOME ENTERTAINMENT\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d49b5e2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>OnDisplay Creative works extensively with many major studios to provide the most effective marketing and merchandising materials. We have a vast understanding of the creative and production needs unique to the Entertainment Industry.<\\/p>\",\"align\":\"center\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f998468\",\"elType\":\"widget\",\"settings\":{\"skin\":\"slideshow\",\"slides\":[{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/SING-WOW_01.jpg\",\"id\":558},\"_id\":\"5601e8a\",\"type\":\"image\",\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/PETS_WOW_02.jpg\",\"id\":556},\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"cf0a445\"},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/BOURNE-WM-HC_01.jpg\",\"id\":555},\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"db277a6\"},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/XMEN_APOC-1.jpg\",\"id\":561},\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"8ee8473\"},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Barbie_01.jpg\",\"id\":554},\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"5e15e1d\"},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/PREPACKS_02.jpg\",\"id\":557},\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"76684ed\"}],\"slideshow_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"slideshow_slides_per_view\":\"6\",\"thumbs_ratio\":\"43\",\"centered_slides\":\"yes\",\"autoplay_speed\":100},\"elements\":[],\"widgetType\":\"media-carousel\"},{\"id\":\"db06005\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"926e5d0\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"81a9415\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":564,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Summer_1.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":4.9,\"sizes\":[]},\"layout\":\"full_width\",\"column_position\":\"top\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":68}},\"_title\":\"Section - RETAIL HERO\",\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_translateY_direction\":\"negative\",\"background_xpos\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"background_motion_fx_range\":\"viewport\"},\"elements\":[{\"id\":\"db3fd34\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_title\":\"old navy summer\"},\"elements\":[{\"id\":\"e57b2ef\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"70\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"6ba3ffc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"ed64037\",\"elType\":\"widget\",\"settings\":{\"title\":\"RETAIL\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9ea645d\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f6d6d26\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"46aa82e\",\"elType\":\"widget\",\"settings\":{\"title\":\"SUMMER SALE EVENT - OLD NAVY\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e636f9f\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"_title\":\"Section - RETAIL\"},\"elements\":[{\"id\":\"186370d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"c41c583\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"34456bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"c34d439\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/SUMMER_2_cropped.jpg\",\"id\":576}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"f0450d4\",\"elType\":\"widget\",\"settings\":{\"title\":\"SURF BOARD\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4feec62\",\"elType\":\"widget\",\"settings\":{\"title\":\"SWAPPABLE POSTER\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ddf5cb6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>This Semi-Permanent display had interchangeable graphics to promote sale items throughout the Summer campaign.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7d3c615\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"fc91cd2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Hodilay_1_cropped.jpg\",\"id\":575}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6c579e0\",\"elType\":\"widget\",\"settings\":{\"title\":\"HOLIDAY STAGE\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.4,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"d204c46\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"82f943c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/image-asset-1.jpeg\",\"id\":577}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"414b4e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"LOVE GAP\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.4,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b747fda\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":700},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":900},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"_title\":\"our company bitches\"},\"elements\":[{\"id\":\"7eab781\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"43661634\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our company is a collective of amazing people striving to build delightful products.\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.4},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70cc6d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.<\\/p>\",\"align\":\"center\",\"text_color\":\"#686868\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"615dfb3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1000},\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"6414755f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3bb26eed\",\"elType\":\"widget\",\"settings\":{\"text\":\"Read More\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3},\"button_text_color\":\"#ffffff\",\"background_color\":\"rgba(0,0,0,0)\",\"hover_color\":\"#00ce1b\",\"button_hover_border_color\":\"#00ce1b\",\"hover_animation\":\"grow\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"123f6d1\",\"elType\":\"section\",\"settings\":{\"_title\":\"blank at bottom\"},\"elements\":[{\"id\":\"25fcf2e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"64f593f\",\"elType\":\"section\",\"settings\":{\"_title\":\"blank at bottom\"},\"elements\":[{\"id\":\"596f429\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(3748,579,'_elementor_edit_mode','builder'),(3749,579,'_elementor_elements_usage','a:10:{s:7:\"heading\";i:24;s:6:\"column\";i:38;s:7:\"section\";i:31;s:7:\"divider\";i:8;s:11:\"text-editor\";i:8;s:5:\"image\";i:15;s:5:\"video\";i:2;s:6:\"spacer\";i:4;s:14:\"media-carousel\";i:2;s:6:\"button\";i:1;}'),(3750,580,'_elementor_template_type','post'),(3751,580,'_elementor_version','2.6.8'),(3752,580,'_elementor_pro_version','2.6.5'),(3753,580,'_wp_page_template','default'),(3754,580,'_elementor_data','[{\"id\":\"55396f27\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":50,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Theatrical_Display_V003C.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"motion_fx_range\":\"viewport\",\"layout\":\"full_width\",\"column_position\":\"top\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"_title\":\"Section - INSIDIOUS HERO\",\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"background_motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_range\":\"viewport\"},\"elements\":[{\"id\":\"905a97c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ad7f3f6\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"162\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2489c07\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"c0bbe21\",\"elType\":\"widget\",\"settings\":{\"title\":\"#WHAT\'S COOL\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"dc881ae\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"18630a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"870a9ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"INNOVATIONS FROM ONDISPLAY CREATIVE\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7df48509\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"_title\":\"Section - LIVING STANDEES\"},\"elements\":[{\"id\":\"1147078d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"23bbc68\",\"elType\":\"widget\",\"settings\":{\"title\":\"LIVING STANDEES HAUNTING THEATERS\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b40d155\",\"elType\":\"widget\",\"settings\":{\"title\":\"ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"700\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86cff8b\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"225341d\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS \\u2013 THE LAST KEY\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a680ae8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"be59fa3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e36fe5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"d4d2039\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2.jpg\",\"id\":88},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3c9b758\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"79e122a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2-1.jpg\",\"id\":87},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3dc9df5\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"start\":0},\"elements\":[],\"widgetType\":\"video\"},{\"id\":\"b61a90b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"8f63560\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"08c588a\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS CHAPTER 3\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0e612c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>OnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7e77f5a\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"gap\":\"wide\"},\"elements\":[{\"id\":\"7eb5a21\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.332},\"elements\":[{\"id\":\"ae25867\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/image-asset.jpeg\",\"id\":196},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"24c773b\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":58},\"elements\":[{\"id\":\"93ad602\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/130807026\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"cb5dad6\",\"elType\":\"section\",\"settings\":{\"_title\":\"Inner Sedtion\"},\"elements\":[{\"id\":\"25cd114\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_title\":\"virtual reality experience\"},\"elements\":[{\"id\":\"15643ab\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"8ec2d0f\",\"elType\":\"widget\",\"settings\":{\"title\":\"VIRTUAL REALITY EXPERIENCE\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4e004ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"SPIDER-MAN HOMECOMING DISPLAY\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"73a2406\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Submerse yourself in the world of your friendly neighborhood Spider-Man in this fun and thrilling VR Theatrical Display.\\u00a0\\u00a0Based on the all-new 2017 film, the Spider-Man Homecoming VR Experience is a first-person look through the eyes of Spidey himself.<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"04b03b4\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7f4ffcc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"7f85dc5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":76,\"_title\":\"spiderman homecoming\"},\"elements\":[{\"id\":\"9a5a392\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Spidey_Home_V4_002.jpg\",\"id\":230},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"css_filters_css_filter\":\"custom\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"c16541a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":24,\"_title\":\"spiderman 2 vertical pics\"},\"elements\":[{\"id\":\"95b0eed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/IMG_3834.jpg\",\"id\":231},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8ea51a8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/IMG_3788.jpg\",\"id\":233}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"12d34c8\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"00\",\"bottom\":\"00\",\"left\":\"00\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"95003e6\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":435,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/TheStrangers_V01.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":4.9,\"sizes\":[]},\"layout\":\"full_width\",\"column_position\":\"top\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":68}},\"_title\":\"Section - STRANGERS HERO\",\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_translateY_direction\":\"negative\",\"background_xpos\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"background_motion_fx_range\":\"viewport\"},\"elements\":[{\"id\":\"b6deb1a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_title\":\"strangers prey at night\"},\"elements\":[{\"id\":\"7a350ee\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"70\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"ecd0cbe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"d684039\",\"elType\":\"widget\",\"settings\":{\"title\":\"THE STRANGERS PREY AT NIGHT\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"003eb99\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5fd9452\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"93ad64e\",\"elType\":\"widget\",\"settings\":{\"title\":\"GRAND FORMAT PHOTO-OP STANDEE\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"247aafb\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"_title\":\"Section - MARKETING AT ITS FINEST\"},\"elements\":[{\"id\":\"f002e93\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"d1321ed\",\"elType\":\"widget\",\"settings\":{\"title\":\"MARKETING AT ITS FINEST, TAILORED FOR SOCIAL MEDIA\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a16ef4e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>This theatrical display allows fans to take photos with Dollface, Pin-up Girl, the Man in the Mask and share their photos on social media.<\\/p>\",\"align\":\"center\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b58ab88\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"00ca412\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58},\"elements\":[{\"id\":\"032d3df\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/003.jpg\",\"id\":446},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"672c1f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42},\"elements\":[{\"id\":\"623f6d1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/26222472_170774200201231_6120473304701599744_n.jpg\",\"id\":447},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a641f07\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/VIDEO_COMING_SOON_01.jpg\",\"id\":449}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cf9e008\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"677b52c\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"31ae5e7\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":515,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/FREEBIRDS_V1B.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":4.9,\"sizes\":[]},\"layout\":\"full_width\",\"column_position\":\"top\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":68}},\"_title\":\"Section - THEATRICAL HERO\",\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_translateY_direction\":\"negative\",\"background_xpos\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"background_motion_fx_range\":\"viewport\"},\"elements\":[{\"id\":\"e45e9b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_title\":\"free birds\"},\"elements\":[{\"id\":\"68717d0\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"70\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"144d01b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"27b94bb\",\"elType\":\"widget\",\"settings\":{\"title\":\"THEATRICAL DISPLAYS\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"672b55e\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"16fbcce\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"ab6e6b7\",\"elType\":\"widget\",\"settings\":{\"title\":\"FREE BIRDS \\u2013 RESIN DISPLAY\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"42b76c7\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"_title\":\"Section - THEATRICAL DISPLAYS\"},\"elements\":[{\"id\":\"9fef846\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"9e16c55\",\"elType\":\"widget\",\"settings\":{\"title\":\"THEATRICAL DISPLAYS\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4a9d8d2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>OnDisplay Creative takes pride in its long history of leading the Entertainment Industry in creating and producing eye catching displays.<\\/p>\",\"align\":\"center\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"263fb63\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"42ecb50\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":69,\"_title\":\"spiderman homecoming\"},\"elements\":[{\"id\":\"fbd93cf\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/47Meters_02_cropped.jpg.jpg\",\"id\":549},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"align\":\"center\",\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2a3ff66\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":31,\"_title\":\"spiderman 2 vertical pics\"},\"elements\":[{\"id\":\"afb6c5e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/DFCV6gdXgAAoGDM.jpeg\",\"id\":520},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ad92bda\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/DEI2HYnW0AEERBl.jpeg\",\"id\":519}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"946f91d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"slideshow\",\"slides\":[{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Spidey_Home_V3.jpg\",\"id\":521},\"_id\":\"fb38f36\",\"type\":\"image\",\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/WarRoom_V1_002.jpg\",\"id\":524},\"_id\":\"a26cba3\",\"type\":\"image\",\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Mada3_01A_002.jpg\",\"id\":525},\"_id\":\"c815938\",\"type\":\"image\",\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/LOOZ_Standee_InTheater_2.jpg\",\"id\":526},\"_id\":\"4e65d42\",\"type\":\"image\",\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Thor-2.jpg\",\"id\":527},\"_id\":\"03a5179\",\"type\":\"image\",\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Echo_01A.jpg\",\"id\":528},\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"3604fe3\"},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Spidey_Home_V4_002-1.jpg\",\"id\":529},\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"f621837\"},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Hurricane-H_V1.jpg\",\"id\":530},\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"9f1174a\"},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Friend_Request.jpg\",\"id\":531},\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"2bec012\"},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/TheStrangers_V02_002.jpg\",\"id\":532},\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"8342d3b\"},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Kidnap2.jpg\",\"id\":533},\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"5ae447b\"},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/RfNight_01A_002.jpg\",\"id\":535},\"image_link_to_type\":\"file\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"56c21c6\"},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/AllSaints2_002.jpg\",\"id\":536},\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"dca9a78\"}],\"slideshow_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"slideshow_slides_per_view\":\"6\",\"thumbs_ratio\":\"43\",\"centered_slides\":\"yes\",\"autoplay_speed\":100},\"elements\":[],\"widgetType\":\"media-carousel\"},{\"id\":\"6bf6bab\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"d0a8d7e\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b45b58e\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":542,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Pets_HomeEnt_FrntP.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":4.9,\"sizes\":[]},\"layout\":\"full_width\",\"column_position\":\"top\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":68}},\"_title\":\"Section - HOME ENT HERO\",\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_translateY_direction\":\"negative\",\"background_xpos\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"background_motion_fx_range\":\"viewport\"},\"elements\":[{\"id\":\"b6af657\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_title\":\"secret life of pets\"},\"elements\":[{\"id\":\"8065946\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"70\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"121e9ec\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"3e5b110\",\"elType\":\"widget\",\"settings\":{\"title\":\"HOME ENTERTAINMENT\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"c4a68e0\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"0e38833\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"3f83c61\",\"elType\":\"widget\",\"settings\":{\"title\":\"THE SECRET LIFE OF PETS\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f43ab31\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"_title\":\"Section - HOME ENTERTAINMENT\"},\"elements\":[{\"id\":\"4398224\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"bd762d2\",\"elType\":\"widget\",\"settings\":{\"title\":\"HOME ENTERTAINMENT\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d49b5e2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>OnDisplay Creative works extensively with many major studios to provide the most effective marketing and merchandising materials. We have a vast understanding of the creative and production needs unique to the Entertainment Industry.<\\/p>\",\"align\":\"center\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f998468\",\"elType\":\"widget\",\"settings\":{\"skin\":\"slideshow\",\"slides\":[{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/SING-WOW_01.jpg\",\"id\":558},\"_id\":\"5601e8a\",\"type\":\"image\",\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/PETS_WOW_02.jpg\",\"id\":556},\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"cf0a445\"},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/BOURNE-WM-HC_01.jpg\",\"id\":555},\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"db277a6\"},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/XMEN_APOC-1.jpg\",\"id\":561},\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"8ee8473\"},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Barbie_01.jpg\",\"id\":554},\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"5e15e1d\"},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/PREPACKS_02.jpg\",\"id\":557},\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"76684ed\"}],\"slideshow_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"slideshow_slides_per_view\":\"6\",\"thumbs_ratio\":\"43\",\"centered_slides\":\"yes\",\"autoplay_speed\":100},\"elements\":[],\"widgetType\":\"media-carousel\"},{\"id\":\"db06005\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"926e5d0\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"81a9415\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":564,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Summer_1.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":4.9,\"sizes\":[]},\"layout\":\"full_width\",\"column_position\":\"top\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":68}},\"_title\":\"Section - RETAIL HERO\",\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_translateY_direction\":\"negative\",\"background_xpos\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"background_motion_fx_range\":\"viewport\"},\"elements\":[{\"id\":\"db3fd34\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_title\":\"old navy summer\"},\"elements\":[{\"id\":\"e57b2ef\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"70\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"6ba3ffc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"ed64037\",\"elType\":\"widget\",\"settings\":{\"title\":\"RETAIL\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9ea645d\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f6d6d26\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"46aa82e\",\"elType\":\"widget\",\"settings\":{\"title\":\"SUMMER SALE EVENT - OLD NAVY\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e636f9f\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"_title\":\"Section - RETAIL\"},\"elements\":[{\"id\":\"186370d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"c41c583\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"34456bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"c34d439\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/SUMMER_2_cropped.jpg\",\"id\":576}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"f0450d4\",\"elType\":\"widget\",\"settings\":{\"title\":\"SURF BOARD\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4feec62\",\"elType\":\"widget\",\"settings\":{\"title\":\"SWAPPABLE POSTER\",\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ddf5cb6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>This Semi-Permanent display had interchangeable graphics to promote sale items throughout the Summer campaign.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7d3c615\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"fc91cd2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Hodilay_1_cropped.jpg\",\"id\":575}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6c579e0\",\"elType\":\"widget\",\"settings\":{\"title\":\"HOLIDAY STAGE\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.4,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"775b69e\",\"elType\":\"widget\",\"settings\":{\"title\":\"STAGE CHANGE OUTS\",\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e7eb55b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Multiple items were produced and displayed on this large storefront extravaganza.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"d204c46\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"82f943c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/image-asset-1.jpeg\",\"id\":577}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"414b4e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"LOVE GAP\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.4,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4bde818\",\"elType\":\"widget\",\"settings\":{\"title\":\"QUALITY PROTOTYPING\",\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"eac7069\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>OnDisplay Creative is very adept in incorporating a variety of substrates to provide captivating Point-of-Purchase displays. <\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b747fda\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":700},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":900},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"_title\":\"our company bitches\"},\"elements\":[{\"id\":\"7eab781\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"43661634\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our company is a collective of amazing people striving to build delightful products.\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.4},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70cc6d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.<\\/p>\",\"align\":\"center\",\"text_color\":\"#686868\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"615dfb3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1000},\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"6414755f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3bb26eed\",\"elType\":\"widget\",\"settings\":{\"text\":\"Read More\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3},\"button_text_color\":\"#ffffff\",\"background_color\":\"rgba(0,0,0,0)\",\"hover_color\":\"#00ce1b\",\"button_hover_border_color\":\"#00ce1b\",\"hover_animation\":\"grow\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"123f6d1\",\"elType\":\"section\",\"settings\":{\"_title\":\"blank at bottom\"},\"elements\":[{\"id\":\"25fcf2e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"64f593f\",\"elType\":\"section\",\"settings\":{\"_title\":\"blank at bottom\"},\"elements\":[{\"id\":\"596f429\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(3755,580,'_elementor_edit_mode','builder'),(3756,580,'_elementor_elements_usage','a:10:{s:7:\"heading\";i:26;s:6:\"column\";i:38;s:7:\"section\";i:31;s:7:\"divider\";i:8;s:11:\"text-editor\";i:10;s:5:\"image\";i:15;s:5:\"video\";i:2;s:6:\"spacer\";i:4;s:14:\"media-carousel\";i:2;s:6:\"button\";i:1;}'),(3766,582,'_wp_attached_file','2019/09/Sony_Touch_Wall_2.jpg'),(3767,582,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2500;s:6:\"height\";i:1736;s:4:\"file\";s:29:\"2019/09/Sony_Touch_Wall_2.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"Sony_Touch_Wall_2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:29:\"Sony_Touch_Wall_2-300x208.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:208;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:29:\"Sony_Touch_Wall_2-768x533.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:533;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:30:\"Sony_Touch_Wall_2-1024x711.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:711;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3770,583,'_elementor_pro_version','2.6.5'),(3771,583,'_wp_page_template','default'),(3772,583,'_elementor_data','[{\"id\":\"55396f27\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":50,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Theatrical_Display_V003C.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"motion_fx_range\":\"viewport\",\"layout\":\"full_width\",\"column_position\":\"top\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"_title\":\"Section - INSIDIOUS HERO\",\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"background_motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_range\":\"viewport\"},\"elements\":[{\"id\":\"905a97c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ad7f3f6\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"162\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2489c07\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"c0bbe21\",\"elType\":\"widget\",\"settings\":{\"title\":\"#WHAT\'S COOL\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"dc881ae\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"18630a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"870a9ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"INNOVATIONS FROM ONDISPLAY CREATIVE\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7df48509\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"_title\":\"Section - LIVING STANDEES\"},\"elements\":[{\"id\":\"1147078d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"23bbc68\",\"elType\":\"widget\",\"settings\":{\"title\":\"LIVING STANDEES HAUNTING THEATERS\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b40d155\",\"elType\":\"widget\",\"settings\":{\"title\":\"ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"700\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86cff8b\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"225341d\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS \\u2013 THE LAST KEY\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a680ae8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"be59fa3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e36fe5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"d4d2039\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2.jpg\",\"id\":88},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3c9b758\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"79e122a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2-1.jpg\",\"id\":87},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3dc9df5\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"start\":0},\"elements\":[],\"widgetType\":\"video\"},{\"id\":\"b61a90b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"8f63560\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"08c588a\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS CHAPTER 3\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0e612c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>OnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7e77f5a\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"gap\":\"wide\"},\"elements\":[{\"id\":\"7eb5a21\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.332},\"elements\":[{\"id\":\"ae25867\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/image-asset.jpeg\",\"id\":196},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"24c773b\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":58},\"elements\":[{\"id\":\"93ad602\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/130807026\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"cb5dad6\",\"elType\":\"section\",\"settings\":{\"_title\":\"Inner Sedtion\"},\"elements\":[{\"id\":\"25cd114\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_title\":\"virtual reality experience\"},\"elements\":[{\"id\":\"15643ab\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"8ec2d0f\",\"elType\":\"widget\",\"settings\":{\"title\":\"VIRTUAL REALITY EXPERIENCE\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4e004ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"SPIDER-MAN HOMECOMING DISPLAY\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"73a2406\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Submerse yourself in the world of your friendly neighborhood Spider-Man in this fun and thrilling VR Theatrical Display.\\u00a0\\u00a0Based on the all-new 2017 film, the Spider-Man Homecoming VR Experience is a first-person look through the eyes of Spidey himself.<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"04b03b4\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7f4ffcc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"7f85dc5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":76,\"_title\":\"spiderman homecoming\"},\"elements\":[{\"id\":\"9a5a392\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Spidey_Home_V4_002.jpg\",\"id\":230},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"css_filters_css_filter\":\"custom\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"c16541a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":24,\"_title\":\"spiderman 2 vertical pics\"},\"elements\":[{\"id\":\"95b0eed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/IMG_3834.jpg\",\"id\":231},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8ea51a8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/IMG_3788.jpg\",\"id\":233}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"12d34c8\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"00\",\"bottom\":\"00\",\"left\":\"00\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"95003e6\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":435,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/TheStrangers_V01.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":4.9,\"sizes\":[]},\"layout\":\"full_width\",\"column_position\":\"top\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":68}},\"_title\":\"Section - STRANGERS HERO\",\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_translateY_direction\":\"negative\",\"background_xpos\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"background_motion_fx_range\":\"viewport\"},\"elements\":[{\"id\":\"b6deb1a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_title\":\"strangers prey at night\"},\"elements\":[{\"id\":\"7a350ee\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"70\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"ecd0cbe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"d684039\",\"elType\":\"widget\",\"settings\":{\"title\":\"THE STRANGERS PREY AT NIGHT\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"003eb99\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5fd9452\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"93ad64e\",\"elType\":\"widget\",\"settings\":{\"title\":\"GRAND FORMAT PHOTO-OP STANDEE\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"247aafb\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"_title\":\"Section - MARKETING AT ITS FINEST\"},\"elements\":[{\"id\":\"f002e93\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"d1321ed\",\"elType\":\"widget\",\"settings\":{\"title\":\"MARKETING AT ITS FINEST, TAILORED FOR SOCIAL MEDIA\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a16ef4e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>This theatrical display allows fans to take photos with Dollface, Pin-up Girl, the Man in the Mask and share their photos on social media.<\\/p>\",\"align\":\"center\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b58ab88\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"00ca412\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58},\"elements\":[{\"id\":\"032d3df\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/003.jpg\",\"id\":446},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"672c1f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42},\"elements\":[{\"id\":\"623f6d1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/26222472_170774200201231_6120473304701599744_n.jpg\",\"id\":447},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a641f07\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/VIDEO_COMING_SOON_01.jpg\",\"id\":449}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cf9e008\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"677b52c\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"31ae5e7\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":515,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/FREEBIRDS_V1B.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":4.9,\"sizes\":[]},\"layout\":\"full_width\",\"column_position\":\"top\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":68}},\"_title\":\"Section - THEATRICAL HERO\",\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_translateY_direction\":\"negative\",\"background_xpos\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"background_motion_fx_range\":\"viewport\"},\"elements\":[{\"id\":\"e45e9b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_title\":\"free birds\"},\"elements\":[{\"id\":\"68717d0\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"70\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"144d01b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"27b94bb\",\"elType\":\"widget\",\"settings\":{\"title\":\"THEATRICAL DISPLAYS\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"672b55e\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"16fbcce\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"ab6e6b7\",\"elType\":\"widget\",\"settings\":{\"title\":\"FREE BIRDS \\u2013 RESIN DISPLAY\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"42b76c7\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"_title\":\"Section - THEATRICAL DISPLAYS\"},\"elements\":[{\"id\":\"9fef846\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"9e16c55\",\"elType\":\"widget\",\"settings\":{\"title\":\"THEATRICAL DISPLAYS\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4a9d8d2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>OnDisplay Creative takes pride in its long history of leading the Entertainment Industry in creating and producing eye catching displays.<\\/p>\",\"align\":\"center\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"263fb63\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"42ecb50\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":69,\"_title\":\"spiderman homecoming\"},\"elements\":[{\"id\":\"fbd93cf\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/47Meters_02_cropped.jpg.jpg\",\"id\":549},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"align\":\"center\",\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2a3ff66\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":31,\"_title\":\"spiderman 2 vertical pics\"},\"elements\":[{\"id\":\"afb6c5e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/DFCV6gdXgAAoGDM.jpeg\",\"id\":520},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ad92bda\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/DEI2HYnW0AEERBl.jpeg\",\"id\":519}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"946f91d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"slideshow\",\"slides\":[{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Spidey_Home_V3.jpg\",\"id\":521},\"_id\":\"fb38f36\",\"type\":\"image\",\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/WarRoom_V1_002.jpg\",\"id\":524},\"_id\":\"a26cba3\",\"type\":\"image\",\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Mada3_01A_002.jpg\",\"id\":525},\"_id\":\"c815938\",\"type\":\"image\",\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/LOOZ_Standee_InTheater_2.jpg\",\"id\":526},\"_id\":\"4e65d42\",\"type\":\"image\",\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Thor-2.jpg\",\"id\":527},\"_id\":\"03a5179\",\"type\":\"image\",\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Echo_01A.jpg\",\"id\":528},\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"3604fe3\"},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Spidey_Home_V4_002-1.jpg\",\"id\":529},\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"f621837\"},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Hurricane-H_V1.jpg\",\"id\":530},\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"9f1174a\"},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Friend_Request.jpg\",\"id\":531},\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"2bec012\"},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/TheStrangers_V02_002.jpg\",\"id\":532},\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"8342d3b\"},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Kidnap2.jpg\",\"id\":533},\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"5ae447b\"},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/RfNight_01A_002.jpg\",\"id\":535},\"image_link_to_type\":\"file\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"56c21c6\"},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/AllSaints2_002.jpg\",\"id\":536},\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"dca9a78\"}],\"slideshow_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"slideshow_slides_per_view\":\"6\",\"thumbs_ratio\":\"43\",\"centered_slides\":\"yes\",\"autoplay_speed\":100},\"elements\":[],\"widgetType\":\"media-carousel\"},{\"id\":\"6bf6bab\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"d0a8d7e\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b45b58e\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":542,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Pets_HomeEnt_FrntP.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":4.9,\"sizes\":[]},\"layout\":\"full_width\",\"column_position\":\"top\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":68}},\"_title\":\"Section - HOME ENT HERO\",\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_translateY_direction\":\"negative\",\"background_xpos\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"background_motion_fx_range\":\"viewport\"},\"elements\":[{\"id\":\"b6af657\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_title\":\"secret life of pets\"},\"elements\":[{\"id\":\"8065946\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"70\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"121e9ec\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"3e5b110\",\"elType\":\"widget\",\"settings\":{\"title\":\"HOME ENTERTAINMENT\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"c4a68e0\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"0e38833\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"3f83c61\",\"elType\":\"widget\",\"settings\":{\"title\":\"THE SECRET LIFE OF PETS\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f43ab31\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"_title\":\"Section - HOME ENTERTAINMENT\"},\"elements\":[{\"id\":\"4398224\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"bd762d2\",\"elType\":\"widget\",\"settings\":{\"title\":\"HOME ENTERTAINMENT\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d49b5e2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>OnDisplay Creative works extensively with many major studios to provide the most effective marketing and merchandising materials. We have a vast understanding of the creative and production needs unique to the Entertainment Industry.<\\/p>\",\"align\":\"center\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f998468\",\"elType\":\"widget\",\"settings\":{\"skin\":\"slideshow\",\"slides\":[{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/SING-WOW_01.jpg\",\"id\":558},\"_id\":\"5601e8a\",\"type\":\"image\",\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/PETS_WOW_02.jpg\",\"id\":556},\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"cf0a445\"},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/BOURNE-WM-HC_01.jpg\",\"id\":555},\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"db277a6\"},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/XMEN_APOC-1.jpg\",\"id\":561},\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"8ee8473\"},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Barbie_01.jpg\",\"id\":554},\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"5e15e1d\"},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/PREPACKS_02.jpg\",\"id\":557},\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"76684ed\"}],\"slideshow_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"slideshow_slides_per_view\":\"6\",\"thumbs_ratio\":\"43\",\"centered_slides\":\"yes\",\"autoplay_speed\":100},\"elements\":[],\"widgetType\":\"media-carousel\"},{\"id\":\"db06005\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"926e5d0\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"81a9415\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":564,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Summer_1.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":4.9,\"sizes\":[]},\"layout\":\"full_width\",\"column_position\":\"top\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":68}},\"_title\":\"Section - RETAIL HERO\",\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_translateY_direction\":\"negative\",\"background_xpos\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"background_motion_fx_range\":\"viewport\"},\"elements\":[{\"id\":\"db3fd34\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_title\":\"old navy summer\"},\"elements\":[{\"id\":\"e57b2ef\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"70\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"6ba3ffc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"ed64037\",\"elType\":\"widget\",\"settings\":{\"title\":\"RETAIL\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9ea645d\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f6d6d26\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"46aa82e\",\"elType\":\"widget\",\"settings\":{\"title\":\"SUMMER SALE EVENT - OLD NAVY\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e636f9f\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"_title\":\"Section - RETAIL\"},\"elements\":[{\"id\":\"186370d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"c41c583\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"34456bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"c34d439\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/SUMMER_2_cropped.jpg\",\"id\":576}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"f0450d4\",\"elType\":\"widget\",\"settings\":{\"title\":\"SURF BOARD\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4feec62\",\"elType\":\"widget\",\"settings\":{\"title\":\"SWAPPABLE POSTER\",\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ddf5cb6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>This Semi-Permanent display had interchangeable graphics to promote sale items throughout the Summer campaign.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7d3c615\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"fc91cd2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Hodilay_1_cropped.jpg\",\"id\":575}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6c579e0\",\"elType\":\"widget\",\"settings\":{\"title\":\"HOLIDAY STAGE\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.4,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"775b69e\",\"elType\":\"widget\",\"settings\":{\"title\":\"STAGE CHANGE OUTS\",\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e7eb55b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Multiple items were produced and displayed on this large storefront extravaganza.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"d204c46\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"82f943c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/image-asset-1.jpeg\",\"id\":577}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"414b4e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"LOVE GAP\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.4,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4bde818\",\"elType\":\"widget\",\"settings\":{\"title\":\"QUALITY PROTOTYPING\",\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"eac7069\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>OnDisplay Creative is very adept in incorporating a variety of substrates to provide captivating Point-of-Purchase displays. <\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bc8a262\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":582,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Sony_Touch_Wall_2.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":4.9,\"sizes\":[]},\"layout\":\"full_width\",\"column_position\":\"top\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":68}},\"_title\":\"Section - TOUCH SCREEN HERO\",\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_translateY_direction\":\"negative\",\"background_xpos\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"background_motion_fx_range\":\"viewport\"},\"elements\":[{\"id\":\"d0168aa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_title\":\"old navy summer\"},\"elements\":[{\"id\":\"de8c44a\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"70\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"f89f9af\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"b2e386a\",\"elType\":\"widget\",\"settings\":{\"title\":\"TOUCH SCREEN DISPLAYS\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3518e1e\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"be83ec9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"1010fec\",\"elType\":\"widget\",\"settings\":{\"title\":\"CINE EUROPE \\u2013 BARCELONA\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b747fda\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":700},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":900},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"_title\":\"our company bitches\"},\"elements\":[{\"id\":\"7eab781\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"43661634\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our company is a collective of amazing people striving to build delightful products.\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.4},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70cc6d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.<\\/p>\",\"align\":\"center\",\"text_color\":\"#686868\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"615dfb3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1000},\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"6414755f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3bb26eed\",\"elType\":\"widget\",\"settings\":{\"text\":\"Read More\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3},\"button_text_color\":\"#ffffff\",\"background_color\":\"rgba(0,0,0,0)\",\"hover_color\":\"#00ce1b\",\"button_hover_border_color\":\"#00ce1b\",\"hover_animation\":\"grow\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"123f6d1\",\"elType\":\"section\",\"settings\":{\"_title\":\"blank at bottom\"},\"elements\":[{\"id\":\"25fcf2e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"64f593f\",\"elType\":\"section\",\"settings\":{\"_title\":\"blank at bottom\"},\"elements\":[{\"id\":\"596f429\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(3768,583,'_elementor_template_type','post'),(3769,583,'_elementor_version','2.6.8'),(3773,583,'_elementor_edit_mode','builder'),(3774,583,'_elementor_elements_usage','a:10:{s:7:\"heading\";i:28;s:6:\"column\";i:41;s:7:\"section\";i:34;s:7:\"divider\";i:8;s:11:\"text-editor\";i:10;s:5:\"image\";i:15;s:5:\"video\";i:2;s:6:\"spacer\";i:4;s:14:\"media-carousel\";i:2;s:6:\"button\";i:1;}'),(3793,588,'_elementor_template_type','post'),(3794,588,'_elementor_version','2.6.8'),(3795,588,'_elementor_pro_version','2.6.5'),(3796,588,'_wp_page_template','default'),(3797,588,'_elementor_data','[{\"id\":\"55396f27\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":50,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Theatrical_Display_V003C.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"motion_fx_range\":\"viewport\",\"layout\":\"full_width\",\"column_position\":\"top\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"_title\":\"Section - INSIDIOUS HERO\",\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"background_motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_range\":\"viewport\"},\"elements\":[{\"id\":\"905a97c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ad7f3f6\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"162\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2489c07\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"c0bbe21\",\"elType\":\"widget\",\"settings\":{\"title\":\"#WHAT\'S COOL\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"dc881ae\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"18630a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"870a9ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"INNOVATIONS FROM ONDISPLAY CREATIVE\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7df48509\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"_title\":\"Section - LIVING STANDEES\"},\"elements\":[{\"id\":\"1147078d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"23bbc68\",\"elType\":\"widget\",\"settings\":{\"title\":\"LIVING STANDEES HAUNTING THEATERS\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b40d155\",\"elType\":\"widget\",\"settings\":{\"title\":\"ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"700\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86cff8b\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"225341d\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS \\u2013 THE LAST KEY\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a680ae8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"be59fa3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e36fe5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"d4d2039\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2.jpg\",\"id\":88},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3c9b758\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"79e122a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2-1.jpg\",\"id\":87},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3dc9df5\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"start\":0},\"elements\":[],\"widgetType\":\"video\"},{\"id\":\"b61a90b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"8f63560\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"08c588a\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS CHAPTER 3\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0e612c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>OnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7e77f5a\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"gap\":\"wide\"},\"elements\":[{\"id\":\"7eb5a21\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.332},\"elements\":[{\"id\":\"ae25867\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/image-asset.jpeg\",\"id\":196},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"24c773b\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":58},\"elements\":[{\"id\":\"93ad602\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/130807026\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"cb5dad6\",\"elType\":\"section\",\"settings\":{\"_title\":\"Inner Sedtion\"},\"elements\":[{\"id\":\"25cd114\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_title\":\"virtual reality experience\"},\"elements\":[{\"id\":\"15643ab\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"8ec2d0f\",\"elType\":\"widget\",\"settings\":{\"title\":\"VIRTUAL REALITY EXPERIENCE\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4e004ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"SPIDER-MAN HOMECOMING DISPLAY\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"73a2406\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Submerse yourself in the world of your friendly neighborhood Spider-Man in this fun and thrilling VR Theatrical Display.\\u00a0\\u00a0Based on the all-new 2017 film, the Spider-Man Homecoming VR Experience is a first-person look through the eyes of Spidey himself.<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"04b03b4\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7f4ffcc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"7f85dc5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":76,\"_title\":\"spiderman homecoming\"},\"elements\":[{\"id\":\"9a5a392\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Spidey_Home_V4_002.jpg\",\"id\":230},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"css_filters_css_filter\":\"custom\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"c16541a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":24,\"_title\":\"spiderman 2 vertical pics\"},\"elements\":[{\"id\":\"95b0eed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/IMG_3834.jpg\",\"id\":231},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8ea51a8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/IMG_3788.jpg\",\"id\":233}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"12d34c8\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"00\",\"bottom\":\"00\",\"left\":\"00\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"95003e6\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":435,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/TheStrangers_V01.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":4.9,\"sizes\":[]},\"layout\":\"full_width\",\"column_position\":\"top\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":68}},\"_title\":\"Section - STRANGERS HERO\",\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_translateY_direction\":\"negative\",\"background_xpos\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"background_motion_fx_range\":\"viewport\"},\"elements\":[{\"id\":\"b6deb1a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_title\":\"strangers prey at night\"},\"elements\":[{\"id\":\"7a350ee\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"70\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"ecd0cbe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"d684039\",\"elType\":\"widget\",\"settings\":{\"title\":\"THE STRANGERS PREY AT NIGHT\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"003eb99\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5fd9452\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"93ad64e\",\"elType\":\"widget\",\"settings\":{\"title\":\"GRAND FORMAT PHOTO-OP STANDEE\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"247aafb\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"_title\":\"Section - MARKETING AT ITS FINEST\"},\"elements\":[{\"id\":\"f002e93\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"d1321ed\",\"elType\":\"widget\",\"settings\":{\"title\":\"MARKETING AT ITS FINEST, TAILORED FOR SOCIAL MEDIA\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a16ef4e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>This theatrical display allows fans to take photos with Dollface, Pin-up Girl, the Man in the Mask and share their photos on social media.<\\/p>\",\"align\":\"center\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b58ab88\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"00ca412\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58},\"elements\":[{\"id\":\"032d3df\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/003.jpg\",\"id\":446},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"672c1f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42},\"elements\":[{\"id\":\"623f6d1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/26222472_170774200201231_6120473304701599744_n.jpg\",\"id\":447},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a641f07\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/VIDEO_COMING_SOON_01.jpg\",\"id\":449}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cf9e008\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"677b52c\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"31ae5e7\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":515,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/FREEBIRDS_V1B.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":4.9,\"sizes\":[]},\"layout\":\"full_width\",\"column_position\":\"top\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":68}},\"_title\":\"Section - THEATRICAL HERO\",\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_translateY_direction\":\"negative\",\"background_xpos\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"background_motion_fx_range\":\"viewport\"},\"elements\":[{\"id\":\"e45e9b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_title\":\"free birds\"},\"elements\":[{\"id\":\"68717d0\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"70\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"144d01b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"27b94bb\",\"elType\":\"widget\",\"settings\":{\"title\":\"THEATRICAL DISPLAYS\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"672b55e\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"16fbcce\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"ab6e6b7\",\"elType\":\"widget\",\"settings\":{\"title\":\"FREE BIRDS \\u2013 RESIN DISPLAY\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"42b76c7\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"_title\":\"Section - THEATRICAL DISPLAYS\"},\"elements\":[{\"id\":\"9fef846\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"9e16c55\",\"elType\":\"widget\",\"settings\":{\"title\":\"THEATRICAL DISPLAYS\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4a9d8d2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>OnDisplay Creative takes pride in its long history of leading the Entertainment Industry in creating and producing eye catching displays.<\\/p>\",\"align\":\"center\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"263fb63\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"42ecb50\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":69,\"_title\":\"spiderman homecoming\"},\"elements\":[{\"id\":\"fbd93cf\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/47Meters_02_cropped.jpg.jpg\",\"id\":549},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"align\":\"center\",\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2a3ff66\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":31,\"_title\":\"spiderman 2 vertical pics\"},\"elements\":[{\"id\":\"afb6c5e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/DFCV6gdXgAAoGDM.jpeg\",\"id\":520},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ad92bda\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/DEI2HYnW0AEERBl.jpeg\",\"id\":519}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"946f91d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"slideshow\",\"slides\":[{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Spidey_Home_V3.jpg\",\"id\":521},\"_id\":\"fb38f36\",\"type\":\"image\",\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/WarRoom_V1_002.jpg\",\"id\":524},\"_id\":\"a26cba3\",\"type\":\"image\",\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Mada3_01A_002.jpg\",\"id\":525},\"_id\":\"c815938\",\"type\":\"image\",\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/LOOZ_Standee_InTheater_2.jpg\",\"id\":526},\"_id\":\"4e65d42\",\"type\":\"image\",\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Thor-2.jpg\",\"id\":527},\"_id\":\"03a5179\",\"type\":\"image\",\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Echo_01A.jpg\",\"id\":528},\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"3604fe3\"},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Spidey_Home_V4_002-1.jpg\",\"id\":529},\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"f621837\"},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Hurricane-H_V1.jpg\",\"id\":530},\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"9f1174a\"},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Friend_Request.jpg\",\"id\":531},\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"2bec012\"},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/TheStrangers_V02_002.jpg\",\"id\":532},\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"8342d3b\"},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Kidnap2.jpg\",\"id\":533},\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"5ae447b\"},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/RfNight_01A_002.jpg\",\"id\":535},\"image_link_to_type\":\"file\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"56c21c6\"},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/AllSaints2_002.jpg\",\"id\":536},\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"dca9a78\"}],\"slideshow_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"slideshow_slides_per_view\":\"6\",\"thumbs_ratio\":\"43\",\"centered_slides\":\"yes\",\"autoplay_speed\":100},\"elements\":[],\"widgetType\":\"media-carousel\"},{\"id\":\"6bf6bab\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"d0a8d7e\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b45b58e\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":542,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Pets_HomeEnt_FrntP.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":4.9,\"sizes\":[]},\"layout\":\"full_width\",\"column_position\":\"top\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":68}},\"_title\":\"Section - HOME ENT HERO\",\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_translateY_direction\":\"negative\",\"background_xpos\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"background_motion_fx_range\":\"viewport\"},\"elements\":[{\"id\":\"b6af657\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_title\":\"secret life of pets\"},\"elements\":[{\"id\":\"8065946\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"70\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"121e9ec\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"3e5b110\",\"elType\":\"widget\",\"settings\":{\"title\":\"HOME ENTERTAINMENT\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"c4a68e0\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"0e38833\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"3f83c61\",\"elType\":\"widget\",\"settings\":{\"title\":\"THE SECRET LIFE OF PETS\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f43ab31\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"_title\":\"Section - HOME ENTERTAINMENT\"},\"elements\":[{\"id\":\"4398224\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"bd762d2\",\"elType\":\"widget\",\"settings\":{\"title\":\"HOME ENTERTAINMENT\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d49b5e2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>OnDisplay Creative works extensively with many major studios to provide the most effective marketing and merchandising materials. We have a vast understanding of the creative and production needs unique to the Entertainment Industry.<\\/p>\",\"align\":\"center\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f998468\",\"elType\":\"widget\",\"settings\":{\"skin\":\"slideshow\",\"slides\":[{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/SING-WOW_01.jpg\",\"id\":558},\"_id\":\"5601e8a\",\"type\":\"image\",\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/PETS_WOW_02.jpg\",\"id\":556},\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"cf0a445\"},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/BOURNE-WM-HC_01.jpg\",\"id\":555},\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"db277a6\"},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/XMEN_APOC-1.jpg\",\"id\":561},\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"8ee8473\"},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Barbie_01.jpg\",\"id\":554},\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"5e15e1d\"},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/PREPACKS_02.jpg\",\"id\":557},\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"76684ed\"}],\"slideshow_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"slideshow_slides_per_view\":\"6\",\"thumbs_ratio\":\"43\",\"centered_slides\":\"yes\",\"autoplay_speed\":100},\"elements\":[],\"widgetType\":\"media-carousel\"},{\"id\":\"db06005\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"926e5d0\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"81a9415\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":564,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Summer_1.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":4.9,\"sizes\":[]},\"layout\":\"full_width\",\"column_position\":\"top\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":68}},\"_title\":\"Section - RETAIL HERO\",\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_translateY_direction\":\"negative\",\"background_xpos\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"background_motion_fx_range\":\"viewport\"},\"elements\":[{\"id\":\"db3fd34\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_title\":\"old navy summer\"},\"elements\":[{\"id\":\"e57b2ef\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"70\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"6ba3ffc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"ed64037\",\"elType\":\"widget\",\"settings\":{\"title\":\"RETAIL\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9ea645d\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f6d6d26\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"46aa82e\",\"elType\":\"widget\",\"settings\":{\"title\":\"SUMMER SALE EVENT - OLD NAVY\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e636f9f\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"_title\":\"Section - RETAIL\"},\"elements\":[{\"id\":\"186370d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"c41c583\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"34456bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"c34d439\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/SUMMER_2_cropped.jpg\",\"id\":576}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"f0450d4\",\"elType\":\"widget\",\"settings\":{\"title\":\"SURF BOARD\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4feec62\",\"elType\":\"widget\",\"settings\":{\"title\":\"SWAPPABLE POSTER\",\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ddf5cb6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>This Semi-Permanent display had interchangeable graphics to promote sale items throughout the Summer campaign.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7d3c615\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"fc91cd2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Hodilay_1_cropped.jpg\",\"id\":575}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6c579e0\",\"elType\":\"widget\",\"settings\":{\"title\":\"HOLIDAY STAGE\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.4,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"775b69e\",\"elType\":\"widget\",\"settings\":{\"title\":\"STAGE CHANGE OUTS\",\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e7eb55b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Multiple items were produced and displayed on this large storefront extravaganza.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"d204c46\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"82f943c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/image-asset-1.jpeg\",\"id\":577}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"414b4e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"LOVE GAP\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.4,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4bde818\",\"elType\":\"widget\",\"settings\":{\"title\":\"QUALITY PROTOTYPING\",\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"eac7069\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>OnDisplay Creative is very adept in incorporating a variety of substrates to provide captivating Point-of-Purchase displays. <\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bc8a262\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":582,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Sony_Touch_Wall_2.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":4.9,\"sizes\":[]},\"layout\":\"full_width\",\"column_position\":\"top\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":68}},\"_title\":\"Section - TOUCH SCREEN HERO\",\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_translateY_direction\":\"negative\",\"background_xpos\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"background_motion_fx_range\":\"viewport\"},\"elements\":[{\"id\":\"d0168aa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_title\":\"old navy summer\"},\"elements\":[{\"id\":\"de8c44a\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"70\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"f89f9af\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"b2e386a\",\"elType\":\"widget\",\"settings\":{\"title\":\"TOUCH SCREEN DISPLAYS\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3518e1e\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"be83ec9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"1010fec\",\"elType\":\"widget\",\"settings\":{\"title\":\"CINE EUROPE \\u2013 BARCELONA\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cb88024\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"_title\":\"Section - INTERACTIVE TOUCH SCREEN\"},\"elements\":[{\"id\":\"bab84f9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"8c86956\",\"elType\":\"widget\",\"settings\":{\"title\":\"LIVING STANDEES HAUNTING THEATERS\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2fe4ed1\",\"elType\":\"widget\",\"settings\":{\"title\":\"ONDISPLAY CREATIVE HELPS GIVE SONY PICTURES A GREAT PRESENCE AT INDUSTRY CONVENTIONS WORLD WIDE.\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"700\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6850c22\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>When Sony Pictures needed to incorporate permanent fixture visibility with cutting edge A\\/V technology, they turned to OnDisplay Creative. Creating a cost effective, customized and interactive touchscreen display allowed customers an innovative alternative to traditional in-theater displays. The technology used, grants clients the ability to present pictures, videos and information in a fun, attractive way drawing attention to the brand. The monitors can be placed into any display environment (corrugate or permanent)\\u00a0which can be designed, built, and installed by OnDisplay Creative or supplied by the client.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"518c3db\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"b1c8549\",\"elType\":\"widget\",\"settings\":{\"title\":\"COMIC-CON - SAN DIEGO\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c9ee71e\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"1468158\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4338955\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/TOUCH_MASK_01C.jpg\",\"id\":586},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a0896bb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Comic-Con is a multigenre entertainment and comic convention held annually in San Diego, California. It\'s the largest convention of its kind in the world with over 130,000 attendees. It\'s dedicated to creating awareness of comics and related popular art forms that celebrate the historic and ongoing contribution to art and culture.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ed79e3c\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"0d180a6\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3ed8fca\",\"elType\":\"widget\",\"settings\":{\"title\":\"CINEMA-CON - LAS VEGAS\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"806aebf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>OnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f1da6bb\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"gap\":\"wide\"},\"elements\":[{\"id\":\"99ce817\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.332},\"elements\":[{\"id\":\"8c8d7a2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/spidey_touchscreen_02.jpg\",\"id\":587},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3176bec\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":58},\"elements\":[{\"id\":\"f272736\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Since its inception in 2011, CinemaCon, the Official convention of NATO (The National Association of Theatre Owners) has become the most important gathering of cinema owners and operators from around the world representing more than 31,000 movie screens in all 50 states, and additional cinemas in 80 countries worldwide.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"aeac881\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/130807026\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b747fda\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":700},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":900},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"_title\":\"our company bitches\"},\"elements\":[{\"id\":\"7eab781\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"43661634\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our company is a collective of amazing people striving to build delightful products.\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.4},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70cc6d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.<\\/p>\",\"align\":\"center\",\"text_color\":\"#686868\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"615dfb3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1000},\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"6414755f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3bb26eed\",\"elType\":\"widget\",\"settings\":{\"text\":\"Read More\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3},\"button_text_color\":\"#ffffff\",\"background_color\":\"rgba(0,0,0,0)\",\"hover_color\":\"#00ce1b\",\"button_hover_border_color\":\"#00ce1b\",\"hover_animation\":\"grow\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"123f6d1\",\"elType\":\"section\",\"settings\":{\"_title\":\"blank at bottom\"},\"elements\":[{\"id\":\"25fcf2e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"64f593f\",\"elType\":\"section\",\"settings\":{\"_title\":\"blank at bottom\"},\"elements\":[{\"id\":\"596f429\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(3782,585,'_elementor_template_type','post'),(3783,585,'_elementor_version','2.6.8'),(3784,585,'_elementor_pro_version','2.6.5'),(3785,585,'_wp_page_template','default'),(3786,585,'_elementor_data','[{\"id\":\"55396f27\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":50,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Theatrical_Display_V003C.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"motion_fx_range\":\"viewport\",\"layout\":\"full_width\",\"column_position\":\"top\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"_title\":\"Section - INSIDIOUS HERO\",\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"background_motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_range\":\"viewport\"},\"elements\":[{\"id\":\"905a97c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ad7f3f6\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"162\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2489c07\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"c0bbe21\",\"elType\":\"widget\",\"settings\":{\"title\":\"#WHAT\'S COOL\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"dc881ae\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"18630a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"870a9ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"INNOVATIONS FROM ONDISPLAY CREATIVE\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7df48509\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"_title\":\"Section - LIVING STANDEES\"},\"elements\":[{\"id\":\"1147078d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"23bbc68\",\"elType\":\"widget\",\"settings\":{\"title\":\"LIVING STANDEES HAUNTING THEATERS\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b40d155\",\"elType\":\"widget\",\"settings\":{\"title\":\"ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"700\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86cff8b\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"225341d\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS \\u2013 THE LAST KEY\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a680ae8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"be59fa3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e36fe5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"d4d2039\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2.jpg\",\"id\":88},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3c9b758\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"79e122a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2-1.jpg\",\"id\":87},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3dc9df5\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"start\":0},\"elements\":[],\"widgetType\":\"video\"},{\"id\":\"b61a90b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"8f63560\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"08c588a\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS CHAPTER 3\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0e612c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>OnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7e77f5a\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"gap\":\"wide\"},\"elements\":[{\"id\":\"7eb5a21\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.332},\"elements\":[{\"id\":\"ae25867\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/image-asset.jpeg\",\"id\":196},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"24c773b\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":58},\"elements\":[{\"id\":\"93ad602\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/130807026\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"cb5dad6\",\"elType\":\"section\",\"settings\":{\"_title\":\"Inner Sedtion\"},\"elements\":[{\"id\":\"25cd114\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_title\":\"virtual reality experience\"},\"elements\":[{\"id\":\"15643ab\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"8ec2d0f\",\"elType\":\"widget\",\"settings\":{\"title\":\"VIRTUAL REALITY EXPERIENCE\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4e004ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"SPIDER-MAN HOMECOMING DISPLAY\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"73a2406\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Submerse yourself in the world of your friendly neighborhood Spider-Man in this fun and thrilling VR Theatrical Display.\\u00a0\\u00a0Based on the all-new 2017 film, the Spider-Man Homecoming VR Experience is a first-person look through the eyes of Spidey himself.<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"04b03b4\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7f4ffcc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"7f85dc5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":76,\"_title\":\"spiderman homecoming\"},\"elements\":[{\"id\":\"9a5a392\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Spidey_Home_V4_002.jpg\",\"id\":230},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"css_filters_css_filter\":\"custom\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"c16541a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":24,\"_title\":\"spiderman 2 vertical pics\"},\"elements\":[{\"id\":\"95b0eed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/IMG_3834.jpg\",\"id\":231},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8ea51a8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/IMG_3788.jpg\",\"id\":233}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"12d34c8\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"00\",\"bottom\":\"00\",\"left\":\"00\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"95003e6\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":435,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/TheStrangers_V01.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":4.9,\"sizes\":[]},\"layout\":\"full_width\",\"column_position\":\"top\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":68}},\"_title\":\"Section - STRANGERS HERO\",\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_translateY_direction\":\"negative\",\"background_xpos\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"background_motion_fx_range\":\"viewport\"},\"elements\":[{\"id\":\"b6deb1a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_title\":\"strangers prey at night\"},\"elements\":[{\"id\":\"7a350ee\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"70\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"ecd0cbe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"d684039\",\"elType\":\"widget\",\"settings\":{\"title\":\"THE STRANGERS PREY AT NIGHT\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"003eb99\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5fd9452\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"93ad64e\",\"elType\":\"widget\",\"settings\":{\"title\":\"GRAND FORMAT PHOTO-OP STANDEE\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"247aafb\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"_title\":\"Section - MARKETING AT ITS FINEST\"},\"elements\":[{\"id\":\"f002e93\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"d1321ed\",\"elType\":\"widget\",\"settings\":{\"title\":\"MARKETING AT ITS FINEST, TAILORED FOR SOCIAL MEDIA\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a16ef4e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>This theatrical display allows fans to take photos with Dollface, Pin-up Girl, the Man in the Mask and share their photos on social media.<\\/p>\",\"align\":\"center\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b58ab88\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"00ca412\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58},\"elements\":[{\"id\":\"032d3df\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/003.jpg\",\"id\":446},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"672c1f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42},\"elements\":[{\"id\":\"623f6d1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/26222472_170774200201231_6120473304701599744_n.jpg\",\"id\":447},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a641f07\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/VIDEO_COMING_SOON_01.jpg\",\"id\":449}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cf9e008\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"677b52c\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"31ae5e7\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":515,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/FREEBIRDS_V1B.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":4.9,\"sizes\":[]},\"layout\":\"full_width\",\"column_position\":\"top\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":68}},\"_title\":\"Section - THEATRICAL HERO\",\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_translateY_direction\":\"negative\",\"background_xpos\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"background_motion_fx_range\":\"viewport\"},\"elements\":[{\"id\":\"e45e9b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_title\":\"free birds\"},\"elements\":[{\"id\":\"68717d0\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"70\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"144d01b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"27b94bb\",\"elType\":\"widget\",\"settings\":{\"title\":\"THEATRICAL DISPLAYS\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"672b55e\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"16fbcce\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"ab6e6b7\",\"elType\":\"widget\",\"settings\":{\"title\":\"FREE BIRDS \\u2013 RESIN DISPLAY\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"42b76c7\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"_title\":\"Section - THEATRICAL DISPLAYS\"},\"elements\":[{\"id\":\"9fef846\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"9e16c55\",\"elType\":\"widget\",\"settings\":{\"title\":\"THEATRICAL DISPLAYS\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4a9d8d2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>OnDisplay Creative takes pride in its long history of leading the Entertainment Industry in creating and producing eye catching displays.<\\/p>\",\"align\":\"center\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"263fb63\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"42ecb50\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":69,\"_title\":\"spiderman homecoming\"},\"elements\":[{\"id\":\"fbd93cf\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/47Meters_02_cropped.jpg.jpg\",\"id\":549},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"align\":\"center\",\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2a3ff66\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":31,\"_title\":\"spiderman 2 vertical pics\"},\"elements\":[{\"id\":\"afb6c5e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/DFCV6gdXgAAoGDM.jpeg\",\"id\":520},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ad92bda\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/DEI2HYnW0AEERBl.jpeg\",\"id\":519}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"946f91d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"slideshow\",\"slides\":[{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Spidey_Home_V3.jpg\",\"id\":521},\"_id\":\"fb38f36\",\"type\":\"image\",\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/WarRoom_V1_002.jpg\",\"id\":524},\"_id\":\"a26cba3\",\"type\":\"image\",\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Mada3_01A_002.jpg\",\"id\":525},\"_id\":\"c815938\",\"type\":\"image\",\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/LOOZ_Standee_InTheater_2.jpg\",\"id\":526},\"_id\":\"4e65d42\",\"type\":\"image\",\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Thor-2.jpg\",\"id\":527},\"_id\":\"03a5179\",\"type\":\"image\",\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Echo_01A.jpg\",\"id\":528},\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"3604fe3\"},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Spidey_Home_V4_002-1.jpg\",\"id\":529},\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"f621837\"},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Hurricane-H_V1.jpg\",\"id\":530},\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"9f1174a\"},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Friend_Request.jpg\",\"id\":531},\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"2bec012\"},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/TheStrangers_V02_002.jpg\",\"id\":532},\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"8342d3b\"},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Kidnap2.jpg\",\"id\":533},\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"5ae447b\"},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/RfNight_01A_002.jpg\",\"id\":535},\"image_link_to_type\":\"file\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"56c21c6\"},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/AllSaints2_002.jpg\",\"id\":536},\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"dca9a78\"}],\"slideshow_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"slideshow_slides_per_view\":\"6\",\"thumbs_ratio\":\"43\",\"centered_slides\":\"yes\",\"autoplay_speed\":100},\"elements\":[],\"widgetType\":\"media-carousel\"},{\"id\":\"6bf6bab\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"d0a8d7e\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b45b58e\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":542,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Pets_HomeEnt_FrntP.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":4.9,\"sizes\":[]},\"layout\":\"full_width\",\"column_position\":\"top\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":68}},\"_title\":\"Section - HOME ENT HERO\",\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_translateY_direction\":\"negative\",\"background_xpos\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"background_motion_fx_range\":\"viewport\"},\"elements\":[{\"id\":\"b6af657\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_title\":\"secret life of pets\"},\"elements\":[{\"id\":\"8065946\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"70\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"121e9ec\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"3e5b110\",\"elType\":\"widget\",\"settings\":{\"title\":\"HOME ENTERTAINMENT\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"c4a68e0\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"0e38833\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"3f83c61\",\"elType\":\"widget\",\"settings\":{\"title\":\"THE SECRET LIFE OF PETS\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f43ab31\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"_title\":\"Section - HOME ENTERTAINMENT\"},\"elements\":[{\"id\":\"4398224\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"bd762d2\",\"elType\":\"widget\",\"settings\":{\"title\":\"HOME ENTERTAINMENT\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d49b5e2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>OnDisplay Creative works extensively with many major studios to provide the most effective marketing and merchandising materials. We have a vast understanding of the creative and production needs unique to the Entertainment Industry.<\\/p>\",\"align\":\"center\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f998468\",\"elType\":\"widget\",\"settings\":{\"skin\":\"slideshow\",\"slides\":[{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/SING-WOW_01.jpg\",\"id\":558},\"_id\":\"5601e8a\",\"type\":\"image\",\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/PETS_WOW_02.jpg\",\"id\":556},\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"cf0a445\"},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/BOURNE-WM-HC_01.jpg\",\"id\":555},\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"db277a6\"},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/XMEN_APOC-1.jpg\",\"id\":561},\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"8ee8473\"},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Barbie_01.jpg\",\"id\":554},\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"5e15e1d\"},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/PREPACKS_02.jpg\",\"id\":557},\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"76684ed\"}],\"slideshow_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"slideshow_slides_per_view\":\"6\",\"thumbs_ratio\":\"43\",\"centered_slides\":\"yes\",\"autoplay_speed\":100},\"elements\":[],\"widgetType\":\"media-carousel\"},{\"id\":\"db06005\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"926e5d0\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"81a9415\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":564,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Summer_1.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":4.9,\"sizes\":[]},\"layout\":\"full_width\",\"column_position\":\"top\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":68}},\"_title\":\"Section - RETAIL HERO\",\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_translateY_direction\":\"negative\",\"background_xpos\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"background_motion_fx_range\":\"viewport\"},\"elements\":[{\"id\":\"db3fd34\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_title\":\"old navy summer\"},\"elements\":[{\"id\":\"e57b2ef\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"70\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"6ba3ffc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"ed64037\",\"elType\":\"widget\",\"settings\":{\"title\":\"RETAIL\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9ea645d\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f6d6d26\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"46aa82e\",\"elType\":\"widget\",\"settings\":{\"title\":\"SUMMER SALE EVENT - OLD NAVY\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e636f9f\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"_title\":\"Section - RETAIL\"},\"elements\":[{\"id\":\"186370d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"c41c583\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"34456bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"c34d439\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/SUMMER_2_cropped.jpg\",\"id\":576}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"f0450d4\",\"elType\":\"widget\",\"settings\":{\"title\":\"SURF BOARD\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4feec62\",\"elType\":\"widget\",\"settings\":{\"title\":\"SWAPPABLE POSTER\",\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ddf5cb6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>This Semi-Permanent display had interchangeable graphics to promote sale items throughout the Summer campaign.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7d3c615\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"fc91cd2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Hodilay_1_cropped.jpg\",\"id\":575}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6c579e0\",\"elType\":\"widget\",\"settings\":{\"title\":\"HOLIDAY STAGE\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.4,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"775b69e\",\"elType\":\"widget\",\"settings\":{\"title\":\"STAGE CHANGE OUTS\",\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e7eb55b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Multiple items were produced and displayed on this large storefront extravaganza.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"d204c46\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"82f943c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/image-asset-1.jpeg\",\"id\":577}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"414b4e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"LOVE GAP\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.4,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4bde818\",\"elType\":\"widget\",\"settings\":{\"title\":\"QUALITY PROTOTYPING\",\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"eac7069\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>OnDisplay Creative is very adept in incorporating a variety of substrates to provide captivating Point-of-Purchase displays. <\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bc8a262\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":582,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Sony_Touch_Wall_2.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":4.9,\"sizes\":[]},\"layout\":\"full_width\",\"column_position\":\"top\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":68}},\"_title\":\"Section - TOUCH SCREEN HERO\",\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_translateY_direction\":\"negative\",\"background_xpos\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"background_motion_fx_range\":\"viewport\"},\"elements\":[{\"id\":\"d0168aa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_title\":\"old navy summer\"},\"elements\":[{\"id\":\"de8c44a\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"70\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"f89f9af\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"b2e386a\",\"elType\":\"widget\",\"settings\":{\"title\":\"TOUCH SCREEN DISPLAYS\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3518e1e\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"be83ec9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"1010fec\",\"elType\":\"widget\",\"settings\":{\"title\":\"CINE EUROPE \\u2013 BARCELONA\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cb88024\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"_title\":\"Section - INTERACTIVE TOUCH SCREEN\"},\"elements\":[{\"id\":\"bab84f9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"8c86956\",\"elType\":\"widget\",\"settings\":{\"title\":\"LIVING STANDEES HAUNTING THEATERS\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2fe4ed1\",\"elType\":\"widget\",\"settings\":{\"title\":\"ONDISPLAY CREATIVE HELPS GIVE SONY PICTURES A GREAT PRESENCE AT INDUSTRY CONVENTIONS WORLD WIDE.\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"700\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6850c22\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>When Sony Pictures needed to incorporate permanent fixture visibility with cutting edge A\\/V technology, they turned to OnDisplay Creative. Creating a cost effective, customized and interactive touchscreen display allowed customers an innovative alternative to traditional in-theater displays. The technology used, grants clients the ability to present pictures, videos and information in a fun, attractive way drawing attention to the brand. The monitors can be placed into any display environment (corrugate or permanent)\\u00a0which can be designed, built, and installed by OnDisplay Creative or supplied by the client.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"518c3db\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"b1c8549\",\"elType\":\"widget\",\"settings\":{\"title\":\"INTERACTIVE TOUCH SCREEN DISPLAYS\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"44299b1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c9ee71e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"1468158\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"4338955\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2.jpg\",\"id\":88},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b6564db\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"41daa90\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2-1.jpg\",\"id\":87},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ac300f9\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"start\":0},\"elements\":[],\"widgetType\":\"video\"},{\"id\":\"ed79e3c\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"0d180a6\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3ed8fca\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS CHAPTER 3\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"806aebf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>OnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f1da6bb\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"gap\":\"wide\"},\"elements\":[{\"id\":\"99ce817\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.332},\"elements\":[{\"id\":\"8c8d7a2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/image-asset.jpeg\",\"id\":196},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3176bec\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":58},\"elements\":[{\"id\":\"aeac881\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/130807026\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"dff12c7\",\"elType\":\"section\",\"settings\":{\"_title\":\"Inner Sedtion\"},\"elements\":[{\"id\":\"ec6490d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_title\":\"virtual reality experience\"},\"elements\":[{\"id\":\"c96916c\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"03ca485\",\"elType\":\"widget\",\"settings\":{\"title\":\"VIRTUAL REALITY EXPERIENCE\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dcbb44a\",\"elType\":\"widget\",\"settings\":{\"title\":\"SPIDER-MAN HOMECOMING DISPLAY\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f237819\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Submerse yourself in the world of your friendly neighborhood Spider-Man in this fun and thrilling VR Theatrical Display.\\u00a0\\u00a0Based on the all-new 2017 film, the Spider-Man Homecoming VR Experience is a first-person look through the eyes of Spidey himself.<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e384863\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"abb6c3a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e78b144\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":76,\"_title\":\"spiderman homecoming\"},\"elements\":[{\"id\":\"2c26ac5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Spidey_Home_V4_002.jpg\",\"id\":230},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"css_filters_css_filter\":\"custom\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"68b73e6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":24,\"_title\":\"spiderman 2 vertical pics\"},\"elements\":[{\"id\":\"66f3f45\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/IMG_3834.jpg\",\"id\":231},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4e4a41d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/IMG_3788.jpg\",\"id\":233}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"21b2f63\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"00\",\"bottom\":\"00\",\"left\":\"00\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b747fda\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":700},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":900},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"_title\":\"our company bitches\"},\"elements\":[{\"id\":\"7eab781\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"43661634\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our company is a collective of amazing people striving to build delightful products.\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.4},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70cc6d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.<\\/p>\",\"align\":\"center\",\"text_color\":\"#686868\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"615dfb3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1000},\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"6414755f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3bb26eed\",\"elType\":\"widget\",\"settings\":{\"text\":\"Read More\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3},\"button_text_color\":\"#ffffff\",\"background_color\":\"rgba(0,0,0,0)\",\"hover_color\":\"#00ce1b\",\"button_hover_border_color\":\"#00ce1b\",\"hover_animation\":\"grow\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"123f6d1\",\"elType\":\"section\",\"settings\":{\"_title\":\"blank at bottom\"},\"elements\":[{\"id\":\"25fcf2e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"64f593f\",\"elType\":\"section\",\"settings\":{\"_title\":\"blank at bottom\"},\"elements\":[{\"id\":\"596f429\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(3787,585,'_elementor_edit_mode','builder'),(3788,585,'_elementor_elements_usage','a:10:{s:7:\"heading\";i:34;s:6:\"column\";i:49;s:7:\"section\";i:39;s:7:\"divider\";i:13;s:11:\"text-editor\";i:14;s:5:\"image\";i:21;s:5:\"video\";i:4;s:6:\"spacer\";i:5;s:14:\"media-carousel\";i:2;s:6:\"button\";i:1;}'),(3789,586,'_wp_attached_file','2019/09/TOUCH_MASK_01C.jpg'),(3790,586,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1300;s:6:\"height\";i:813;s:4:\"file\";s:26:\"2019/09/TOUCH_MASK_01C.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"TOUCH_MASK_01C-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"TOUCH_MASK_01C-300x188.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:188;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:26:\"TOUCH_MASK_01C-768x480.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:27:\"TOUCH_MASK_01C-1024x640.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:640;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3791,587,'_wp_attached_file','2019/09/spidey_touchscreen_02.jpg'),(3792,587,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:480;s:6:\"height\";i:640;s:4:\"file\";s:33:\"2019/09/spidey_touchscreen_02.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"spidey_touchscreen_02-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:33:\"spidey_touchscreen_02-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3798,588,'_elementor_edit_mode','builder'),(3799,588,'_elementor_elements_usage','a:10:{s:7:\"heading\";i:32;s:6:\"column\";i:45;s:7:\"section\";i:37;s:7:\"divider\";i:10;s:11:\"text-editor\";i:14;s:5:\"image\";i:17;s:5:\"video\";i:3;s:6:\"spacer\";i:5;s:14:\"media-carousel\";i:2;s:6:\"button\";i:1;}'),(3800,589,'_elementor_template_type','post'),(3801,589,'_elementor_version','2.6.8'),(3802,589,'_elementor_pro_version','2.6.5'),(3803,589,'_wp_page_template','default'),(3804,589,'_elementor_data','[{\"id\":\"55396f27\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":50,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Theatrical_Display_V003C.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"motion_fx_range\":\"viewport\",\"layout\":\"full_width\",\"column_position\":\"top\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"_title\":\"Section - INSIDIOUS HERO\",\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"background_motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_range\":\"viewport\"},\"elements\":[{\"id\":\"905a97c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ad7f3f6\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"162\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2489c07\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"c0bbe21\",\"elType\":\"widget\",\"settings\":{\"title\":\"#WHAT\'S COOL\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"dc881ae\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"18630a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"870a9ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"INNOVATIONS FROM ONDISPLAY CREATIVE\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7df48509\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"_title\":\"Section - LIVING STANDEES\"},\"elements\":[{\"id\":\"1147078d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"23bbc68\",\"elType\":\"widget\",\"settings\":{\"title\":\"LIVING STANDEES HAUNTING THEATERS\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b40d155\",\"elType\":\"widget\",\"settings\":{\"title\":\"ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"700\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86cff8b\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"225341d\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS \\u2013 THE LAST KEY\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a680ae8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"be59fa3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e36fe5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"d4d2039\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2.jpg\",\"id\":88},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3c9b758\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"79e122a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2-1.jpg\",\"id\":87},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3dc9df5\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"start\":0},\"elements\":[],\"widgetType\":\"video\"},{\"id\":\"b61a90b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"8f63560\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"08c588a\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS CHAPTER 3\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0e612c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>OnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7e77f5a\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"gap\":\"wide\"},\"elements\":[{\"id\":\"7eb5a21\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.332},\"elements\":[{\"id\":\"ae25867\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/image-asset.jpeg\",\"id\":196},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"24c773b\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":58},\"elements\":[{\"id\":\"93ad602\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/130807026\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"cb5dad6\",\"elType\":\"section\",\"settings\":{\"_title\":\"Inner Sedtion\"},\"elements\":[{\"id\":\"25cd114\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_title\":\"virtual reality experience\"},\"elements\":[{\"id\":\"15643ab\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"8ec2d0f\",\"elType\":\"widget\",\"settings\":{\"title\":\"VIRTUAL REALITY EXPERIENCE\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4e004ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"SPIDER-MAN HOMECOMING DISPLAY\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"73a2406\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Submerse yourself in the world of your friendly neighborhood Spider-Man in this fun and thrilling VR Theatrical Display.\\u00a0\\u00a0Based on the all-new 2017 film, the Spider-Man Homecoming VR Experience is a first-person look through the eyes of Spidey himself.<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"04b03b4\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7f4ffcc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"7f85dc5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":76,\"_title\":\"spiderman homecoming\"},\"elements\":[{\"id\":\"9a5a392\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Spidey_Home_V4_002.jpg\",\"id\":230},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"css_filters_css_filter\":\"custom\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"c16541a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":24,\"_title\":\"spiderman 2 vertical pics\"},\"elements\":[{\"id\":\"95b0eed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/IMG_3834.jpg\",\"id\":231},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8ea51a8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/IMG_3788.jpg\",\"id\":233}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"12d34c8\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"00\",\"bottom\":\"00\",\"left\":\"00\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"95003e6\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":435,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/TheStrangers_V01.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":4.9,\"sizes\":[]},\"layout\":\"full_width\",\"column_position\":\"top\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":68}},\"_title\":\"Section - STRANGERS HERO\",\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_translateY_direction\":\"negative\",\"background_xpos\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"background_motion_fx_range\":\"viewport\"},\"elements\":[{\"id\":\"b6deb1a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_title\":\"strangers prey at night\"},\"elements\":[{\"id\":\"7a350ee\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"70\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"ecd0cbe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"d684039\",\"elType\":\"widget\",\"settings\":{\"title\":\"THE STRANGERS PREY AT NIGHT\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"003eb99\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5fd9452\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"93ad64e\",\"elType\":\"widget\",\"settings\":{\"title\":\"GRAND FORMAT PHOTO-OP STANDEE\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"247aafb\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"_title\":\"Section - MARKETING AT ITS FINEST\"},\"elements\":[{\"id\":\"f002e93\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"d1321ed\",\"elType\":\"widget\",\"settings\":{\"title\":\"MARKETING AT ITS FINEST, TAILORED FOR SOCIAL MEDIA\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a16ef4e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>This theatrical display allows fans to take photos with Dollface, Pin-up Girl, the Man in the Mask and share their photos on social media.<\\/p>\",\"align\":\"center\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b58ab88\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"00ca412\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58},\"elements\":[{\"id\":\"032d3df\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/003.jpg\",\"id\":446},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"672c1f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42},\"elements\":[{\"id\":\"623f6d1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/26222472_170774200201231_6120473304701599744_n.jpg\",\"id\":447},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a641f07\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/VIDEO_COMING_SOON_01.jpg\",\"id\":449}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cf9e008\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"677b52c\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"31ae5e7\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":515,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/FREEBIRDS_V1B.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":4.9,\"sizes\":[]},\"layout\":\"full_width\",\"column_position\":\"top\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":68}},\"_title\":\"Section - THEATRICAL HERO\",\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_translateY_direction\":\"negative\",\"background_xpos\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"background_motion_fx_range\":\"viewport\"},\"elements\":[{\"id\":\"e45e9b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_title\":\"free birds\"},\"elements\":[{\"id\":\"68717d0\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"70\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"144d01b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"27b94bb\",\"elType\":\"widget\",\"settings\":{\"title\":\"THEATRICAL DISPLAYS\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"672b55e\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"16fbcce\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"ab6e6b7\",\"elType\":\"widget\",\"settings\":{\"title\":\"FREE BIRDS \\u2013 RESIN DISPLAY\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"42b76c7\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"_title\":\"Section - THEATRICAL DISPLAYS\"},\"elements\":[{\"id\":\"9fef846\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"9e16c55\",\"elType\":\"widget\",\"settings\":{\"title\":\"THEATRICAL DISPLAYS\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4a9d8d2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>OnDisplay Creative takes pride in its long history of leading the Entertainment Industry in creating and producing eye catching displays.<\\/p>\",\"align\":\"center\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"263fb63\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"42ecb50\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":69,\"_title\":\"spiderman homecoming\"},\"elements\":[{\"id\":\"fbd93cf\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/47Meters_02_cropped.jpg.jpg\",\"id\":549},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"align\":\"center\",\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2a3ff66\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":31,\"_title\":\"spiderman 2 vertical pics\"},\"elements\":[{\"id\":\"afb6c5e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/DFCV6gdXgAAoGDM.jpeg\",\"id\":520},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ad92bda\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/DEI2HYnW0AEERBl.jpeg\",\"id\":519}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"946f91d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"slideshow\",\"slides\":[{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Spidey_Home_V3.jpg\",\"id\":521},\"_id\":\"fb38f36\",\"type\":\"image\",\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/WarRoom_V1_002.jpg\",\"id\":524},\"_id\":\"a26cba3\",\"type\":\"image\",\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Mada3_01A_002.jpg\",\"id\":525},\"_id\":\"c815938\",\"type\":\"image\",\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/LOOZ_Standee_InTheater_2.jpg\",\"id\":526},\"_id\":\"4e65d42\",\"type\":\"image\",\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Thor-2.jpg\",\"id\":527},\"_id\":\"03a5179\",\"type\":\"image\",\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Echo_01A.jpg\",\"id\":528},\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"3604fe3\"},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Spidey_Home_V4_002-1.jpg\",\"id\":529},\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"f621837\"},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Hurricane-H_V1.jpg\",\"id\":530},\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"9f1174a\"},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Friend_Request.jpg\",\"id\":531},\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"2bec012\"},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/TheStrangers_V02_002.jpg\",\"id\":532},\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"8342d3b\"},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Kidnap2.jpg\",\"id\":533},\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"5ae447b\"},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/RfNight_01A_002.jpg\",\"id\":535},\"image_link_to_type\":\"file\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"56c21c6\"},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/AllSaints2_002.jpg\",\"id\":536},\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"dca9a78\"}],\"slideshow_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"slideshow_slides_per_view\":\"6\",\"thumbs_ratio\":\"43\",\"centered_slides\":\"yes\",\"autoplay_speed\":100},\"elements\":[],\"widgetType\":\"media-carousel\"},{\"id\":\"6bf6bab\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"d0a8d7e\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b45b58e\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":542,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Pets_HomeEnt_FrntP.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":4.9,\"sizes\":[]},\"layout\":\"full_width\",\"column_position\":\"top\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":68}},\"_title\":\"Section - HOME ENT HERO\",\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_translateY_direction\":\"negative\",\"background_xpos\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"background_motion_fx_range\":\"viewport\"},\"elements\":[{\"id\":\"b6af657\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_title\":\"secret life of pets\"},\"elements\":[{\"id\":\"8065946\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"70\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"121e9ec\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"3e5b110\",\"elType\":\"widget\",\"settings\":{\"title\":\"HOME ENTERTAINMENT\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"c4a68e0\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"0e38833\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"3f83c61\",\"elType\":\"widget\",\"settings\":{\"title\":\"THE SECRET LIFE OF PETS\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f43ab31\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"_title\":\"Section - HOME ENTERTAINMENT\"},\"elements\":[{\"id\":\"4398224\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"bd762d2\",\"elType\":\"widget\",\"settings\":{\"title\":\"HOME ENTERTAINMENT\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d49b5e2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>OnDisplay Creative works extensively with many major studios to provide the most effective marketing and merchandising materials. We have a vast understanding of the creative and production needs unique to the Entertainment Industry.<\\/p>\",\"align\":\"center\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f998468\",\"elType\":\"widget\",\"settings\":{\"skin\":\"slideshow\",\"slides\":[{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/SING-WOW_01.jpg\",\"id\":558},\"_id\":\"5601e8a\",\"type\":\"image\",\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/PETS_WOW_02.jpg\",\"id\":556},\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"cf0a445\"},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/BOURNE-WM-HC_01.jpg\",\"id\":555},\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"db277a6\"},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/XMEN_APOC-1.jpg\",\"id\":561},\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"8ee8473\"},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Barbie_01.jpg\",\"id\":554},\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"5e15e1d\"},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/PREPACKS_02.jpg\",\"id\":557},\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"76684ed\"}],\"slideshow_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"slideshow_slides_per_view\":\"6\",\"thumbs_ratio\":\"43\",\"centered_slides\":\"yes\",\"autoplay_speed\":100},\"elements\":[],\"widgetType\":\"media-carousel\"},{\"id\":\"db06005\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"926e5d0\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"81a9415\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":564,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Summer_1.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":4.9,\"sizes\":[]},\"layout\":\"full_width\",\"column_position\":\"top\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":68}},\"_title\":\"Section - RETAIL HERO\",\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_translateY_direction\":\"negative\",\"background_xpos\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"background_motion_fx_range\":\"viewport\"},\"elements\":[{\"id\":\"db3fd34\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_title\":\"old navy summer\"},\"elements\":[{\"id\":\"e57b2ef\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"70\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"6ba3ffc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"ed64037\",\"elType\":\"widget\",\"settings\":{\"title\":\"RETAIL\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9ea645d\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f6d6d26\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"46aa82e\",\"elType\":\"widget\",\"settings\":{\"title\":\"SUMMER SALE EVENT - OLD NAVY\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e636f9f\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"_title\":\"Section - RETAIL\"},\"elements\":[{\"id\":\"186370d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"c41c583\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"34456bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"c34d439\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/SUMMER_2_cropped.jpg\",\"id\":576}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"f0450d4\",\"elType\":\"widget\",\"settings\":{\"title\":\"SURF BOARD\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4feec62\",\"elType\":\"widget\",\"settings\":{\"title\":\"SWAPPABLE POSTER\",\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ddf5cb6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>This Semi-Permanent display had interchangeable graphics to promote sale items throughout the Summer campaign.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7d3c615\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"fc91cd2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Hodilay_1_cropped.jpg\",\"id\":575}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6c579e0\",\"elType\":\"widget\",\"settings\":{\"title\":\"HOLIDAY STAGE\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.4,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"775b69e\",\"elType\":\"widget\",\"settings\":{\"title\":\"STAGE CHANGE OUTS\",\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e7eb55b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Multiple items were produced and displayed on this large storefront extravaganza.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"d204c46\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"82f943c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/image-asset-1.jpeg\",\"id\":577}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"414b4e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"LOVE GAP\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.4,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4bde818\",\"elType\":\"widget\",\"settings\":{\"title\":\"QUALITY PROTOTYPING\",\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"eac7069\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>OnDisplay Creative is very adept in incorporating a variety of substrates to provide captivating Point-of-Purchase displays. <\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bc8a262\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":582,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Sony_Touch_Wall_2.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":4.9,\"sizes\":[]},\"layout\":\"full_width\",\"column_position\":\"top\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":68}},\"_title\":\"Section - TOUCH SCREEN HERO\",\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_translateY_direction\":\"negative\",\"background_xpos\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"background_motion_fx_range\":\"viewport\"},\"elements\":[{\"id\":\"d0168aa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_title\":\"old navy summer\"},\"elements\":[{\"id\":\"de8c44a\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"70\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"f89f9af\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"b2e386a\",\"elType\":\"widget\",\"settings\":{\"title\":\"TOUCH SCREEN DISPLAYS\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3518e1e\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"be83ec9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"1010fec\",\"elType\":\"widget\",\"settings\":{\"title\":\"CINE EUROPE \\u2013 BARCELONA\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cb88024\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"_title\":\"Section - INTERACTIVE TOUCH SCREEN\"},\"elements\":[{\"id\":\"bab84f9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"8c86956\",\"elType\":\"widget\",\"settings\":{\"title\":\"INTERACTIVE TOUCH SCREEN DISPLAYS\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2fe4ed1\",\"elType\":\"widget\",\"settings\":{\"title\":\"ONDISPLAY CREATIVE HELPS GIVE SONY PICTURES A GREAT PRESENCE AT INDUSTRY CONVENTIONS WORLD WIDE.\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"700\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6850c22\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>When Sony Pictures needed to incorporate permanent fixture visibility with cutting edge A\\/V technology, they turned to OnDisplay Creative. Creating a cost effective, customized and interactive touchscreen display allowed customers an innovative alternative to traditional in-theater displays. The technology used, grants clients the ability to present pictures, videos and information in a fun, attractive way drawing attention to the brand. The monitors can be placed into any display environment (corrugate or permanent)\\u00a0which can be designed, built, and installed by OnDisplay Creative or supplied by the client.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"518c3db\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"b1c8549\",\"elType\":\"widget\",\"settings\":{\"title\":\"COMIC-CON - SAN DIEGO\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c9ee71e\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"1468158\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4338955\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/TOUCH_MASK_01C.jpg\",\"id\":586},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a0896bb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Comic-Con is a multigenre entertainment and comic convention held annually in San Diego, California. It\'s the largest convention of its kind in the world with over 130,000 attendees. It\'s dedicated to creating awareness of comics and related popular art forms that celebrate the historic and ongoing contribution to art and culture.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ed79e3c\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"0d180a6\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3ed8fca\",\"elType\":\"widget\",\"settings\":{\"title\":\"CINEMA-CON - LAS VEGAS\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"806aebf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>OnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f1da6bb\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"gap\":\"wide\"},\"elements\":[{\"id\":\"99ce817\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.332},\"elements\":[{\"id\":\"8c8d7a2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/spidey_touchscreen_02.jpg\",\"id\":587},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3176bec\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":58},\"elements\":[{\"id\":\"f272736\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Since its inception in 2011, CinemaCon, the Official convention of NATO (The National Association of Theatre Owners) has become the most important gathering of cinema owners and operators from around the world representing more than 31,000 movie screens in all 50 states, and additional cinemas in 80 countries worldwide.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"aeac881\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/130807026\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b747fda\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":700},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":900},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"_title\":\"our company bitches\"},\"elements\":[{\"id\":\"7eab781\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"43661634\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our company is a collective of amazing people striving to build delightful products.\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.4},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70cc6d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.<\\/p>\",\"align\":\"center\",\"text_color\":\"#686868\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"615dfb3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1000},\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"6414755f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3bb26eed\",\"elType\":\"widget\",\"settings\":{\"text\":\"Read More\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3},\"button_text_color\":\"#ffffff\",\"background_color\":\"rgba(0,0,0,0)\",\"hover_color\":\"#00ce1b\",\"button_hover_border_color\":\"#00ce1b\",\"hover_animation\":\"grow\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"123f6d1\",\"elType\":\"section\",\"settings\":{\"_title\":\"blank at bottom\"},\"elements\":[{\"id\":\"25fcf2e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"64f593f\",\"elType\":\"section\",\"settings\":{\"_title\":\"blank at bottom\"},\"elements\":[{\"id\":\"596f429\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(3805,589,'_elementor_edit_mode','builder'),(3806,589,'_elementor_elements_usage','a:10:{s:7:\"heading\";i:32;s:6:\"column\";i:45;s:7:\"section\";i:37;s:7:\"divider\";i:10;s:11:\"text-editor\";i:14;s:5:\"image\";i:17;s:5:\"video\";i:3;s:6:\"spacer\";i:5;s:14:\"media-carousel\";i:2;s:6:\"button\";i:1;}'),(3807,590,'_elementor_template_type','post'),(3808,590,'_elementor_version','2.6.8'),(3809,590,'_elementor_pro_version','2.6.5'),(3810,590,'_wp_page_template','default'),(3811,590,'_elementor_data','[{\"id\":\"55396f27\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":50,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Theatrical_Display_V003C.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"motion_fx_range\":\"viewport\",\"layout\":\"full_width\",\"column_position\":\"top\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"_title\":\"Section - INSIDIOUS HERO\",\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"background_motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_range\":\"viewport\"},\"elements\":[{\"id\":\"905a97c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ad7f3f6\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"162\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2489c07\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"c0bbe21\",\"elType\":\"widget\",\"settings\":{\"title\":\"#WHAT\'S COOL\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"dc881ae\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"18630a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"870a9ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"INNOVATIONS FROM ONDISPLAY CREATIVE\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7df48509\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"_title\":\"Section - LIVING STANDEES\"},\"elements\":[{\"id\":\"1147078d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"23bbc68\",\"elType\":\"widget\",\"settings\":{\"title\":\"LIVING STANDEES HAUNTING THEATERS\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b40d155\",\"elType\":\"widget\",\"settings\":{\"title\":\"ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"700\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86cff8b\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"225341d\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS \\u2013 THE LAST KEY\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a680ae8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"be59fa3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e36fe5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"d4d2039\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2.jpg\",\"id\":88},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3c9b758\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"79e122a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2-1.jpg\",\"id\":87},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3dc9df5\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"start\":0},\"elements\":[],\"widgetType\":\"video\"},{\"id\":\"b61a90b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"8f63560\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"08c588a\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS CHAPTER 3\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0e612c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>OnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7e77f5a\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"gap\":\"wide\"},\"elements\":[{\"id\":\"7eb5a21\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.332},\"elements\":[{\"id\":\"ae25867\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/image-asset.jpeg\",\"id\":196},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"24c773b\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":58},\"elements\":[{\"id\":\"93ad602\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/130807026\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"cb5dad6\",\"elType\":\"section\",\"settings\":{\"_title\":\"Inner Sedtion\"},\"elements\":[{\"id\":\"25cd114\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_title\":\"virtual reality experience\"},\"elements\":[{\"id\":\"15643ab\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"8ec2d0f\",\"elType\":\"widget\",\"settings\":{\"title\":\"VIRTUAL REALITY EXPERIENCE\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4e004ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"SPIDER-MAN HOMECOMING DISPLAY\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"73a2406\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Submerse yourself in the world of your friendly neighborhood Spider-Man in this fun and thrilling VR Theatrical Display.\\u00a0\\u00a0Based on the all-new 2017 film, the Spider-Man Homecoming VR Experience is a first-person look through the eyes of Spidey himself.<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"04b03b4\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7f4ffcc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"7f85dc5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":76,\"_title\":\"spiderman homecoming\"},\"elements\":[{\"id\":\"9a5a392\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Spidey_Home_V4_002.jpg\",\"id\":230},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"css_filters_css_filter\":\"custom\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"c16541a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":24,\"_title\":\"spiderman 2 vertical pics\"},\"elements\":[{\"id\":\"95b0eed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/IMG_3834.jpg\",\"id\":231},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8ea51a8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/IMG_3788.jpg\",\"id\":233}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"12d34c8\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"00\",\"bottom\":\"00\",\"left\":\"00\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"95003e6\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":435,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/TheStrangers_V01.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":4.9,\"sizes\":[]},\"layout\":\"full_width\",\"column_position\":\"top\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":68}},\"_title\":\"Section - STRANGERS HERO\",\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_translateY_direction\":\"negative\",\"background_xpos\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"background_motion_fx_range\":\"viewport\"},\"elements\":[{\"id\":\"b6deb1a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_title\":\"strangers prey at night\"},\"elements\":[{\"id\":\"7a350ee\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"70\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"ecd0cbe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"d684039\",\"elType\":\"widget\",\"settings\":{\"title\":\"THE STRANGERS PREY AT NIGHT\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"003eb99\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5fd9452\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"93ad64e\",\"elType\":\"widget\",\"settings\":{\"title\":\"GRAND FORMAT PHOTO-OP STANDEE\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"247aafb\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"_title\":\"Section - MARKETING AT ITS FINEST\"},\"elements\":[{\"id\":\"f002e93\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"d1321ed\",\"elType\":\"widget\",\"settings\":{\"title\":\"MARKETING AT ITS FINEST, TAILORED FOR SOCIAL MEDIA\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a16ef4e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>This theatrical display allows fans to take photos with Dollface, Pin-up Girl, the Man in the Mask and share their photos on social media.<\\/p>\",\"align\":\"center\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b58ab88\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"00ca412\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58},\"elements\":[{\"id\":\"032d3df\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/003.jpg\",\"id\":446},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"672c1f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42},\"elements\":[{\"id\":\"623f6d1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/26222472_170774200201231_6120473304701599744_n.jpg\",\"id\":447},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a641f07\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/VIDEO_COMING_SOON_01.jpg\",\"id\":449}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cf9e008\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"677b52c\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"31ae5e7\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":515,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/FREEBIRDS_V1B.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":4.9,\"sizes\":[]},\"layout\":\"full_width\",\"column_position\":\"top\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":68}},\"_title\":\"Section - THEATRICAL HERO\",\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_translateY_direction\":\"negative\",\"background_xpos\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"background_motion_fx_range\":\"viewport\"},\"elements\":[{\"id\":\"e45e9b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_title\":\"free birds\"},\"elements\":[{\"id\":\"68717d0\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"70\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"144d01b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"27b94bb\",\"elType\":\"widget\",\"settings\":{\"title\":\"THEATRICAL DISPLAYS\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"672b55e\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"16fbcce\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"ab6e6b7\",\"elType\":\"widget\",\"settings\":{\"title\":\"FREE BIRDS \\u2013 RESIN DISPLAY\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"42b76c7\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"_title\":\"Section - THEATRICAL DISPLAYS\"},\"elements\":[{\"id\":\"9fef846\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"9e16c55\",\"elType\":\"widget\",\"settings\":{\"title\":\"THEATRICAL DISPLAYS\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4a9d8d2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>OnDisplay Creative takes pride in its long history of leading the Entertainment Industry in creating and producing eye catching displays.<\\/p>\",\"align\":\"center\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"263fb63\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"42ecb50\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":69,\"_title\":\"spiderman homecoming\"},\"elements\":[{\"id\":\"fbd93cf\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/47Meters_02_cropped.jpg.jpg\",\"id\":549},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"align\":\"center\",\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2a3ff66\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":31,\"_title\":\"spiderman 2 vertical pics\"},\"elements\":[{\"id\":\"afb6c5e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/DFCV6gdXgAAoGDM.jpeg\",\"id\":520},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ad92bda\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/DEI2HYnW0AEERBl.jpeg\",\"id\":519}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"946f91d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"slideshow\",\"slides\":[{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Spidey_Home_V3.jpg\",\"id\":521},\"_id\":\"fb38f36\",\"type\":\"image\",\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/WarRoom_V1_002.jpg\",\"id\":524},\"_id\":\"a26cba3\",\"type\":\"image\",\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Mada3_01A_002.jpg\",\"id\":525},\"_id\":\"c815938\",\"type\":\"image\",\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/LOOZ_Standee_InTheater_2.jpg\",\"id\":526},\"_id\":\"4e65d42\",\"type\":\"image\",\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Thor-2.jpg\",\"id\":527},\"_id\":\"03a5179\",\"type\":\"image\",\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Echo_01A.jpg\",\"id\":528},\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"3604fe3\"},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Spidey_Home_V4_002-1.jpg\",\"id\":529},\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"f621837\"},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Hurricane-H_V1.jpg\",\"id\":530},\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"9f1174a\"},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Friend_Request.jpg\",\"id\":531},\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"2bec012\"},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/TheStrangers_V02_002.jpg\",\"id\":532},\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"8342d3b\"},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Kidnap2.jpg\",\"id\":533},\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"5ae447b\"},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/RfNight_01A_002.jpg\",\"id\":535},\"image_link_to_type\":\"file\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"56c21c6\"},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/AllSaints2_002.jpg\",\"id\":536},\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"dca9a78\"}],\"slideshow_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"slideshow_slides_per_view\":\"6\",\"thumbs_ratio\":\"43\",\"centered_slides\":\"yes\",\"autoplay_speed\":100},\"elements\":[],\"widgetType\":\"media-carousel\"},{\"id\":\"6bf6bab\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"d0a8d7e\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b45b58e\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":542,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Pets_HomeEnt_FrntP.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":4.9,\"sizes\":[]},\"layout\":\"full_width\",\"column_position\":\"top\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":68}},\"_title\":\"Section - HOME ENT HERO\",\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_translateY_direction\":\"negative\",\"background_xpos\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"background_motion_fx_range\":\"viewport\"},\"elements\":[{\"id\":\"b6af657\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_title\":\"secret life of pets\"},\"elements\":[{\"id\":\"8065946\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"70\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"121e9ec\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"3e5b110\",\"elType\":\"widget\",\"settings\":{\"title\":\"HOME ENTERTAINMENT\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"c4a68e0\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"0e38833\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"3f83c61\",\"elType\":\"widget\",\"settings\":{\"title\":\"THE SECRET LIFE OF PETS\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f43ab31\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"_title\":\"Section - HOME ENTERTAINMENT\"},\"elements\":[{\"id\":\"4398224\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"bd762d2\",\"elType\":\"widget\",\"settings\":{\"title\":\"HOME ENTERTAINMENT\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d49b5e2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>OnDisplay Creative works extensively with many major studios to provide the most effective marketing and merchandising materials. We have a vast understanding of the creative and production needs unique to the Entertainment Industry.<\\/p>\",\"align\":\"center\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f998468\",\"elType\":\"widget\",\"settings\":{\"skin\":\"slideshow\",\"slides\":[{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/SING-WOW_01.jpg\",\"id\":558},\"_id\":\"5601e8a\",\"type\":\"image\",\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/PETS_WOW_02.jpg\",\"id\":556},\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"cf0a445\"},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/BOURNE-WM-HC_01.jpg\",\"id\":555},\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"db277a6\"},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/XMEN_APOC-1.jpg\",\"id\":561},\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"8ee8473\"},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Barbie_01.jpg\",\"id\":554},\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"5e15e1d\"},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/PREPACKS_02.jpg\",\"id\":557},\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"76684ed\"}],\"slideshow_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"slideshow_slides_per_view\":\"6\",\"thumbs_ratio\":\"43\",\"centered_slides\":\"yes\",\"autoplay_speed\":100},\"elements\":[],\"widgetType\":\"media-carousel\"},{\"id\":\"db06005\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"926e5d0\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"81a9415\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":564,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Summer_1.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":4.9,\"sizes\":[]},\"layout\":\"full_width\",\"column_position\":\"top\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":68}},\"_title\":\"Section - RETAIL HERO\",\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_translateY_direction\":\"negative\",\"background_xpos\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"background_motion_fx_range\":\"viewport\"},\"elements\":[{\"id\":\"db3fd34\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_title\":\"old navy summer\"},\"elements\":[{\"id\":\"e57b2ef\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"70\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"6ba3ffc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"ed64037\",\"elType\":\"widget\",\"settings\":{\"title\":\"RETAIL\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9ea645d\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f6d6d26\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"46aa82e\",\"elType\":\"widget\",\"settings\":{\"title\":\"SUMMER SALE EVENT - OLD NAVY\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e636f9f\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"_title\":\"Section - RETAIL\"},\"elements\":[{\"id\":\"186370d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"c41c583\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"34456bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"c34d439\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/SUMMER_2_cropped.jpg\",\"id\":576}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"f0450d4\",\"elType\":\"widget\",\"settings\":{\"title\":\"SURF BOARD\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4feec62\",\"elType\":\"widget\",\"settings\":{\"title\":\"SWAPPABLE POSTER\",\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ddf5cb6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>This Semi-Permanent display had interchangeable graphics to promote sale items throughout the Summer campaign.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7d3c615\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"fc91cd2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Hodilay_1_cropped.jpg\",\"id\":575}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6c579e0\",\"elType\":\"widget\",\"settings\":{\"title\":\"HOLIDAY STAGE\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.4,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"775b69e\",\"elType\":\"widget\",\"settings\":{\"title\":\"STAGE CHANGE OUTS\",\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e7eb55b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Multiple items were produced and displayed on this large storefront extravaganza.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"d204c46\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"82f943c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/image-asset-1.jpeg\",\"id\":577}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"414b4e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"LOVE GAP\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.4,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4bde818\",\"elType\":\"widget\",\"settings\":{\"title\":\"QUALITY PROTOTYPING\",\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"eac7069\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>OnDisplay Creative is very adept in incorporating a variety of substrates to provide captivating Point-of-Purchase displays. <\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bc8a262\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":582,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Sony_Touch_Wall_2.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":4.9,\"sizes\":[]},\"layout\":\"full_width\",\"column_position\":\"top\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":68}},\"_title\":\"Section - TOUCH SCREEN HERO\",\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_translateY_direction\":\"negative\",\"background_xpos\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"background_motion_fx_range\":\"viewport\"},\"elements\":[{\"id\":\"d0168aa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_title\":\"old navy summer\"},\"elements\":[{\"id\":\"de8c44a\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"70\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"f89f9af\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"b2e386a\",\"elType\":\"widget\",\"settings\":{\"title\":\"TOUCH SCREEN DISPLAYS\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3518e1e\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"be83ec9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"1010fec\",\"elType\":\"widget\",\"settings\":{\"title\":\"CINE EUROPE \\u2013 BARCELONA\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cb88024\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"_title\":\"Section - INTERACTIVE TOUCH SCREEN\"},\"elements\":[{\"id\":\"bab84f9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"8c86956\",\"elType\":\"widget\",\"settings\":{\"title\":\"INTERACTIVE TOUCH SCREEN DISPLAYS\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2fe4ed1\",\"elType\":\"widget\",\"settings\":{\"title\":\"ONDISPLAY CREATIVE HELPS GIVE SONY PICTURES A GREAT PRESENCE AT INDUSTRY CONVENTIONS WORLD WIDE.\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"700\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6850c22\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>When Sony Pictures needed to incorporate permanent fixture visibility with cutting edge A\\/V technology, they turned to OnDisplay Creative. Creating a cost effective, customized and interactive touchscreen display allowed customers an innovative alternative to traditional in-theater displays. The technology used, grants clients the ability to present pictures, videos and information in a fun, attractive way drawing attention to the brand. The monitors can be placed into any display environment (corrugate or permanent)\\u00a0which can be designed, built, and installed by OnDisplay Creative or supplied by the client.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"518c3db\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"b1c8549\",\"elType\":\"widget\",\"settings\":{\"title\":\"COMIC-CON - SAN DIEGO\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c9ee71e\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"1468158\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4338955\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/TOUCH_MASK_01C.jpg\",\"id\":586},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a0896bb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Comic-Con is a multigenre entertainment and comic convention held annually in San Diego, California. It\'s the largest convention of its kind in the world with over 130,000 attendees. It\'s dedicated to creating awareness of comics and related popular art forms that celebrate the historic and ongoing contribution to art and culture.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ed79e3c\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"0d180a6\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3ed8fca\",\"elType\":\"widget\",\"settings\":{\"title\":\"CINEMA-CON - LAS VEGAS\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"806aebf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>OnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f1da6bb\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"gap\":\"wide\"},\"elements\":[{\"id\":\"99ce817\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.332},\"elements\":[{\"id\":\"8c8d7a2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/spidey_touchscreen_02.jpg\",\"id\":587},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3176bec\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":58},\"elements\":[{\"id\":\"f272736\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Since its inception in 2011, CinemaCon, the Official convention of NATO (The National Association of Theatre Owners) has become the most important gathering of cinema owners and operators from around the world representing more than 31,000 movie screens in all 50 states, and additional cinemas in 80 countries worldwide.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"aeac881\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/102278147\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b747fda\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":700},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":900},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"_title\":\"our company bitches\"},\"elements\":[{\"id\":\"7eab781\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"43661634\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our company is a collective of amazing people striving to build delightful products.\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.4},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70cc6d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.<\\/p>\",\"align\":\"center\",\"text_color\":\"#686868\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"615dfb3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1000},\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"6414755f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3bb26eed\",\"elType\":\"widget\",\"settings\":{\"text\":\"Read More\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3},\"button_text_color\":\"#ffffff\",\"background_color\":\"rgba(0,0,0,0)\",\"hover_color\":\"#00ce1b\",\"button_hover_border_color\":\"#00ce1b\",\"hover_animation\":\"grow\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"123f6d1\",\"elType\":\"section\",\"settings\":{\"_title\":\"blank at bottom\"},\"elements\":[{\"id\":\"25fcf2e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"64f593f\",\"elType\":\"section\",\"settings\":{\"_title\":\"blank at bottom\"},\"elements\":[{\"id\":\"596f429\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(3812,590,'_elementor_edit_mode','builder'),(3813,590,'_elementor_elements_usage','a:10:{s:7:\"heading\";i:32;s:6:\"column\";i:45;s:7:\"section\";i:37;s:7:\"divider\";i:10;s:11:\"text-editor\";i:14;s:5:\"image\";i:17;s:5:\"video\";i:3;s:6:\"spacer\";i:5;s:14:\"media-carousel\";i:2;s:6:\"button\";i:1;}'),(3814,591,'_wp_attached_file','2019/09/HD_Render_02D.jpg'),(3815,591,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2500;s:6:\"height\";i:1595;s:4:\"file\";s:25:\"2019/09/HD_Render_02D.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"HD_Render_02D-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"HD_Render_02D-300x191.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:191;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:25:\"HD_Render_02D-768x490.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:490;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:26:\"HD_Render_02D-1024x653.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:653;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3816,592,'_elementor_template_type','post'),(3817,592,'_elementor_version','2.6.8'),(3818,592,'_elementor_pro_version','2.6.5'),(3819,592,'_wp_page_template','default'),(3820,592,'_elementor_data','[{\"id\":\"55396f27\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":50,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Theatrical_Display_V003C.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"motion_fx_range\":\"viewport\",\"layout\":\"full_width\",\"column_position\":\"top\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"_title\":\"Section - INSIDIOUS HERO\",\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"background_motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_range\":\"viewport\"},\"elements\":[{\"id\":\"905a97c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ad7f3f6\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"162\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2489c07\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"c0bbe21\",\"elType\":\"widget\",\"settings\":{\"title\":\"#WHAT\'S COOL\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"dc881ae\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"18630a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"870a9ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"INNOVATIONS FROM ONDISPLAY CREATIVE\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7df48509\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"_title\":\"Section - LIVING STANDEES\"},\"elements\":[{\"id\":\"1147078d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"23bbc68\",\"elType\":\"widget\",\"settings\":{\"title\":\"LIVING STANDEES HAUNTING THEATERS\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b40d155\",\"elType\":\"widget\",\"settings\":{\"title\":\"ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"700\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86cff8b\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"225341d\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS \\u2013 THE LAST KEY\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a680ae8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"be59fa3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e36fe5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"d4d2039\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2.jpg\",\"id\":88},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3c9b758\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"79e122a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2-1.jpg\",\"id\":87},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3dc9df5\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"start\":0},\"elements\":[],\"widgetType\":\"video\"},{\"id\":\"b61a90b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"8f63560\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"08c588a\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS CHAPTER 3\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0e612c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>OnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7e77f5a\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"gap\":\"wide\"},\"elements\":[{\"id\":\"7eb5a21\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.332},\"elements\":[{\"id\":\"ae25867\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/image-asset.jpeg\",\"id\":196},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"24c773b\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":58},\"elements\":[{\"id\":\"93ad602\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/130807026\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"cb5dad6\",\"elType\":\"section\",\"settings\":{\"_title\":\"Inner Sedtion\"},\"elements\":[{\"id\":\"25cd114\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_title\":\"virtual reality experience\"},\"elements\":[{\"id\":\"15643ab\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"8ec2d0f\",\"elType\":\"widget\",\"settings\":{\"title\":\"VIRTUAL REALITY EXPERIENCE\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4e004ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"SPIDER-MAN HOMECOMING DISPLAY\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"73a2406\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Submerse yourself in the world of your friendly neighborhood Spider-Man in this fun and thrilling VR Theatrical Display.\\u00a0\\u00a0Based on the all-new 2017 film, the Spider-Man Homecoming VR Experience is a first-person look through the eyes of Spidey himself.<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"04b03b4\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7f4ffcc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"7f85dc5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":76,\"_title\":\"spiderman homecoming\"},\"elements\":[{\"id\":\"9a5a392\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Spidey_Home_V4_002.jpg\",\"id\":230},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"css_filters_css_filter\":\"custom\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"c16541a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":24,\"_title\":\"spiderman 2 vertical pics\"},\"elements\":[{\"id\":\"95b0eed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/IMG_3834.jpg\",\"id\":231},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8ea51a8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/IMG_3788.jpg\",\"id\":233}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"12d34c8\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"00\",\"bottom\":\"00\",\"left\":\"00\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"95003e6\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":435,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/TheStrangers_V01.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":4.9,\"sizes\":[]},\"layout\":\"full_width\",\"column_position\":\"top\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":68}},\"_title\":\"Section - STRANGERS HERO\",\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_translateY_direction\":\"negative\",\"background_xpos\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"background_motion_fx_range\":\"viewport\"},\"elements\":[{\"id\":\"b6deb1a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_title\":\"strangers prey at night\"},\"elements\":[{\"id\":\"7a350ee\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"70\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"ecd0cbe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"d684039\",\"elType\":\"widget\",\"settings\":{\"title\":\"THE STRANGERS PREY AT NIGHT\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"003eb99\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5fd9452\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"93ad64e\",\"elType\":\"widget\",\"settings\":{\"title\":\"GRAND FORMAT PHOTO-OP STANDEE\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"247aafb\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"_title\":\"Section - MARKETING AT ITS FINEST\"},\"elements\":[{\"id\":\"f002e93\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"d1321ed\",\"elType\":\"widget\",\"settings\":{\"title\":\"MARKETING AT ITS FINEST, TAILORED FOR SOCIAL MEDIA\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a16ef4e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>This theatrical display allows fans to take photos with Dollface, Pin-up Girl, the Man in the Mask and share their photos on social media.<\\/p>\",\"align\":\"center\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b58ab88\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"00ca412\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58},\"elements\":[{\"id\":\"032d3df\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/003.jpg\",\"id\":446},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"672c1f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42},\"elements\":[{\"id\":\"623f6d1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/26222472_170774200201231_6120473304701599744_n.jpg\",\"id\":447},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a641f07\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/VIDEO_COMING_SOON_01.jpg\",\"id\":449}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cf9e008\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"677b52c\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"31ae5e7\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":515,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/FREEBIRDS_V1B.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":4.9,\"sizes\":[]},\"layout\":\"full_width\",\"column_position\":\"top\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":68}},\"_title\":\"Section - THEATRICAL HERO\",\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_translateY_direction\":\"negative\",\"background_xpos\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"background_motion_fx_range\":\"viewport\"},\"elements\":[{\"id\":\"e45e9b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_title\":\"free birds\"},\"elements\":[{\"id\":\"68717d0\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"70\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"144d01b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"27b94bb\",\"elType\":\"widget\",\"settings\":{\"title\":\"THEATRICAL DISPLAYS\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"672b55e\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"16fbcce\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"ab6e6b7\",\"elType\":\"widget\",\"settings\":{\"title\":\"FREE BIRDS \\u2013 RESIN DISPLAY\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"42b76c7\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"_title\":\"Section - THEATRICAL DISPLAYS\"},\"elements\":[{\"id\":\"9fef846\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"9e16c55\",\"elType\":\"widget\",\"settings\":{\"title\":\"THEATRICAL DISPLAYS\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4a9d8d2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>OnDisplay Creative takes pride in its long history of leading the Entertainment Industry in creating and producing eye catching displays.<\\/p>\",\"align\":\"center\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"263fb63\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"42ecb50\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":69,\"_title\":\"spiderman homecoming\"},\"elements\":[{\"id\":\"fbd93cf\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/47Meters_02_cropped.jpg.jpg\",\"id\":549},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"align\":\"center\",\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2a3ff66\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":31,\"_title\":\"spiderman 2 vertical pics\"},\"elements\":[{\"id\":\"afb6c5e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/DFCV6gdXgAAoGDM.jpeg\",\"id\":520},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ad92bda\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/DEI2HYnW0AEERBl.jpeg\",\"id\":519}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"946f91d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"slideshow\",\"slides\":[{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Spidey_Home_V3.jpg\",\"id\":521},\"_id\":\"fb38f36\",\"type\":\"image\",\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/WarRoom_V1_002.jpg\",\"id\":524},\"_id\":\"a26cba3\",\"type\":\"image\",\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Mada3_01A_002.jpg\",\"id\":525},\"_id\":\"c815938\",\"type\":\"image\",\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/LOOZ_Standee_InTheater_2.jpg\",\"id\":526},\"_id\":\"4e65d42\",\"type\":\"image\",\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Thor-2.jpg\",\"id\":527},\"_id\":\"03a5179\",\"type\":\"image\",\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Echo_01A.jpg\",\"id\":528},\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"3604fe3\"},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Spidey_Home_V4_002-1.jpg\",\"id\":529},\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"f621837\"},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Hurricane-H_V1.jpg\",\"id\":530},\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"9f1174a\"},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Friend_Request.jpg\",\"id\":531},\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"2bec012\"},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/TheStrangers_V02_002.jpg\",\"id\":532},\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"8342d3b\"},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Kidnap2.jpg\",\"id\":533},\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"5ae447b\"},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/RfNight_01A_002.jpg\",\"id\":535},\"image_link_to_type\":\"file\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"56c21c6\"},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/AllSaints2_002.jpg\",\"id\":536},\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"dca9a78\"}],\"slideshow_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"slideshow_slides_per_view\":\"6\",\"thumbs_ratio\":\"43\",\"centered_slides\":\"yes\",\"autoplay_speed\":100},\"elements\":[],\"widgetType\":\"media-carousel\"},{\"id\":\"6bf6bab\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"d0a8d7e\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b45b58e\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":542,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Pets_HomeEnt_FrntP.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":4.9,\"sizes\":[]},\"layout\":\"full_width\",\"column_position\":\"top\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":68}},\"_title\":\"Section - HOME ENT HERO\",\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_translateY_direction\":\"negative\",\"background_xpos\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"background_motion_fx_range\":\"viewport\"},\"elements\":[{\"id\":\"b6af657\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_title\":\"secret life of pets\"},\"elements\":[{\"id\":\"8065946\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"70\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"121e9ec\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"3e5b110\",\"elType\":\"widget\",\"settings\":{\"title\":\"HOME ENTERTAINMENT\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"c4a68e0\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"0e38833\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"3f83c61\",\"elType\":\"widget\",\"settings\":{\"title\":\"THE SECRET LIFE OF PETS\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f43ab31\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"_title\":\"Section - HOME ENTERTAINMENT\"},\"elements\":[{\"id\":\"4398224\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"bd762d2\",\"elType\":\"widget\",\"settings\":{\"title\":\"HOME ENTERTAINMENT\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d49b5e2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>OnDisplay Creative works extensively with many major studios to provide the most effective marketing and merchandising materials. We have a vast understanding of the creative and production needs unique to the Entertainment Industry.<\\/p>\",\"align\":\"center\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f998468\",\"elType\":\"widget\",\"settings\":{\"skin\":\"slideshow\",\"slides\":[{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/SING-WOW_01.jpg\",\"id\":558},\"_id\":\"5601e8a\",\"type\":\"image\",\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/PETS_WOW_02.jpg\",\"id\":556},\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"cf0a445\"},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/BOURNE-WM-HC_01.jpg\",\"id\":555},\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"db277a6\"},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/XMEN_APOC-1.jpg\",\"id\":561},\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"8ee8473\"},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Barbie_01.jpg\",\"id\":554},\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"5e15e1d\"},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/PREPACKS_02.jpg\",\"id\":557},\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"76684ed\"}],\"slideshow_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"slideshow_slides_per_view\":\"6\",\"thumbs_ratio\":\"43\",\"centered_slides\":\"yes\",\"autoplay_speed\":100},\"elements\":[],\"widgetType\":\"media-carousel\"},{\"id\":\"db06005\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"926e5d0\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"81a9415\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":564,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Summer_1.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":4.9,\"sizes\":[]},\"layout\":\"full_width\",\"column_position\":\"top\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":68}},\"_title\":\"Section - RETAIL HERO\",\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_translateY_direction\":\"negative\",\"background_xpos\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"background_motion_fx_range\":\"viewport\"},\"elements\":[{\"id\":\"db3fd34\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_title\":\"old navy summer\"},\"elements\":[{\"id\":\"e57b2ef\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"70\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"6ba3ffc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"ed64037\",\"elType\":\"widget\",\"settings\":{\"title\":\"RETAIL\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9ea645d\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f6d6d26\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"46aa82e\",\"elType\":\"widget\",\"settings\":{\"title\":\"SUMMER SALE EVENT - OLD NAVY\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e636f9f\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"_title\":\"Section - RETAIL\"},\"elements\":[{\"id\":\"186370d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"c41c583\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"34456bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"c34d439\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/SUMMER_2_cropped.jpg\",\"id\":576}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"f0450d4\",\"elType\":\"widget\",\"settings\":{\"title\":\"SURF BOARD\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4feec62\",\"elType\":\"widget\",\"settings\":{\"title\":\"SWAPPABLE POSTER\",\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ddf5cb6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>This Semi-Permanent display had interchangeable graphics to promote sale items throughout the Summer campaign.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7d3c615\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"fc91cd2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Hodilay_1_cropped.jpg\",\"id\":575}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6c579e0\",\"elType\":\"widget\",\"settings\":{\"title\":\"HOLIDAY STAGE\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.4,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"775b69e\",\"elType\":\"widget\",\"settings\":{\"title\":\"STAGE CHANGE OUTS\",\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e7eb55b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Multiple items were produced and displayed on this large storefront extravaganza.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"d204c46\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"82f943c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/image-asset-1.jpeg\",\"id\":577}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"414b4e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"LOVE GAP\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.4,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4bde818\",\"elType\":\"widget\",\"settings\":{\"title\":\"QUALITY PROTOTYPING\",\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"eac7069\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>OnDisplay Creative is very adept in incorporating a variety of substrates to provide captivating Point-of-Purchase displays. <\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bc8a262\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":582,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Sony_Touch_Wall_2.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":4.9,\"sizes\":[]},\"layout\":\"full_width\",\"column_position\":\"top\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":68}},\"_title\":\"Section - TOUCH SCREEN HERO\",\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_translateY_direction\":\"negative\",\"background_xpos\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"background_motion_fx_range\":\"viewport\"},\"elements\":[{\"id\":\"d0168aa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_title\":\"old navy summer\"},\"elements\":[{\"id\":\"de8c44a\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"70\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"f89f9af\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"b2e386a\",\"elType\":\"widget\",\"settings\":{\"title\":\"TOUCH SCREEN DISPLAYS\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3518e1e\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"be83ec9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"1010fec\",\"elType\":\"widget\",\"settings\":{\"title\":\"CINE EUROPE \\u2013 BARCELONA\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cb88024\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"_title\":\"Section - INTERACTIVE TOUCH SCREEN\"},\"elements\":[{\"id\":\"bab84f9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"8c86956\",\"elType\":\"widget\",\"settings\":{\"title\":\"INTERACTIVE TOUCH SCREEN DISPLAYS\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2fe4ed1\",\"elType\":\"widget\",\"settings\":{\"title\":\"ONDISPLAY CREATIVE HELPS GIVE SONY PICTURES A GREAT PRESENCE AT INDUSTRY CONVENTIONS WORLD WIDE.\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"700\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6850c22\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>When Sony Pictures needed to incorporate permanent fixture visibility with cutting edge A\\/V technology, they turned to OnDisplay Creative. Creating a cost effective, customized and interactive touchscreen display allowed customers an innovative alternative to traditional in-theater displays. The technology used, grants clients the ability to present pictures, videos and information in a fun, attractive way drawing attention to the brand. The monitors can be placed into any display environment (corrugate or permanent)\\u00a0which can be designed, built, and installed by OnDisplay Creative or supplied by the client.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"518c3db\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"b1c8549\",\"elType\":\"widget\",\"settings\":{\"title\":\"COMIC-CON - SAN DIEGO\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c9ee71e\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"1468158\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4338955\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/TOUCH_MASK_01C.jpg\",\"id\":586},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a0896bb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Comic-Con is a multigenre entertainment and comic convention held annually in San Diego, California. It\'s the largest convention of its kind in the world with over 130,000 attendees. It\'s dedicated to creating awareness of comics and related popular art forms that celebrate the historic and ongoing contribution to art and culture.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ed79e3c\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"0d180a6\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3ed8fca\",\"elType\":\"widget\",\"settings\":{\"title\":\"CINEMA-CON - LAS VEGAS\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"806aebf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>OnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f1da6bb\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"gap\":\"wide\"},\"elements\":[{\"id\":\"99ce817\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.332},\"elements\":[{\"id\":\"8c8d7a2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/spidey_touchscreen_02.jpg\",\"id\":587},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3176bec\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":58},\"elements\":[{\"id\":\"f272736\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Since its inception in 2011, CinemaCon, the Official convention of NATO (The National Association of Theatre Owners) has become the most important gathering of cinema owners and operators from around the world representing more than 31,000 movie screens in all 50 states, and additional cinemas in 80 countries worldwide.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"aeac881\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/102278147\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6062ccb\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":591,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/HD_Render_02D.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":4.9,\"sizes\":[]},\"layout\":\"full_width\",\"column_position\":\"top\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":68}},\"_title\":\"Section - WHO WE ARE HERO\",\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_translateY_direction\":\"negative\",\"background_xpos\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"background_motion_fx_range\":\"viewport\"},\"elements\":[{\"id\":\"958038f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_title\":\"odc logo\"},\"elements\":[{\"id\":\"ee14024\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"70\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"dac2286\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"91a26cc\",\"elType\":\"widget\",\"settings\":{\"title\":\"TOUCH SCREEN DISPLAYS\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"02ca6fe\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"0daa12d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"00f83d2\",\"elType\":\"widget\",\"settings\":{\"title\":\"CINE EUROPE \\u2013 BARCELONA\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b747fda\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":700},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":900},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"_title\":\"our company bitches\"},\"elements\":[{\"id\":\"7eab781\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"43661634\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our company is a collective of amazing people striving to build delightful products.\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.4},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70cc6d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.<\\/p>\",\"align\":\"center\",\"text_color\":\"#686868\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"615dfb3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1000},\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"6414755f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3bb26eed\",\"elType\":\"widget\",\"settings\":{\"text\":\"Read More\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3},\"button_text_color\":\"#ffffff\",\"background_color\":\"rgba(0,0,0,0)\",\"hover_color\":\"#00ce1b\",\"button_hover_border_color\":\"#00ce1b\",\"hover_animation\":\"grow\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"123f6d1\",\"elType\":\"section\",\"settings\":{\"_title\":\"blank at bottom\"},\"elements\":[{\"id\":\"25fcf2e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"64f593f\",\"elType\":\"section\",\"settings\":{\"_title\":\"blank at bottom\"},\"elements\":[{\"id\":\"596f429\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(3821,592,'_elementor_edit_mode','builder'),(3822,592,'_elementor_elements_usage','a:10:{s:7:\"heading\";i:34;s:6:\"column\";i:48;s:7:\"section\";i:40;s:7:\"divider\";i:10;s:11:\"text-editor\";i:14;s:5:\"image\";i:17;s:5:\"video\";i:3;s:6:\"spacer\";i:5;s:14:\"media-carousel\";i:2;s:6:\"button\";i:1;}'),(3823,593,'_edit_lock','1569392270:1'),(3824,593,'_edit_last','1'),(3825,593,'site-sidebar-layout','no-sidebar'),(3826,593,'site-content-layout','page-builder'),(3827,593,'theme-transparent-header-meta','default'),(3828,593,'_elementor_template_type','post'),(3829,593,'_elementor_version','2.6.8'),(3830,593,'_elementor_pro_version','2.6.5'),(3831,593,'_astra_content_layout_flag','disabled'),(3832,593,'site-post-title','disabled'),(3833,593,'ast-title-bar-display','disabled'),(3834,593,'ast-featured-img','disabled'),(3835,593,'_wp_page_template','default'),(3836,593,'_elementor_data','[{\"id\":\"55396f27\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":50,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Theatrical_Display_V003C.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"motion_fx_range\":\"viewport\",\"layout\":\"full_width\",\"column_position\":\"top\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"_title\":\"Section - INSIDIOUS HERO\",\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"background_motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_range\":\"viewport\"},\"elements\":[{\"id\":\"905a97c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ad7f3f6\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"162\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2489c07\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"c0bbe21\",\"elType\":\"widget\",\"settings\":{\"title\":\"#WHAT\'S COOL\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"dc881ae\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"18630a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"870a9ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"INNOVATIONS FROM ONDISPLAY CREATIVE\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7df48509\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"_title\":\"Section - LIVING STANDEES\"},\"elements\":[{\"id\":\"1147078d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"23bbc68\",\"elType\":\"widget\",\"settings\":{\"title\":\"LIVING STANDEES HAUNTING THEATERS\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b40d155\",\"elType\":\"widget\",\"settings\":{\"title\":\"ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"700\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86cff8b\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"225341d\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS \\u2013 THE LAST KEY\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a680ae8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"be59fa3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e36fe5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"d4d2039\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2.jpg\",\"id\":88},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3c9b758\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"79e122a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2-1.jpg\",\"id\":87},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3dc9df5\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"start\":0},\"elements\":[],\"widgetType\":\"video\"},{\"id\":\"b61a90b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"8f63560\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"08c588a\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS CHAPTER 3\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0e612c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>OnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7e77f5a\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"gap\":\"wide\"},\"elements\":[{\"id\":\"7eb5a21\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.332},\"elements\":[{\"id\":\"ae25867\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/image-asset.jpeg\",\"id\":196},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"24c773b\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":58},\"elements\":[{\"id\":\"93ad602\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/130807026\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"cb5dad6\",\"elType\":\"section\",\"settings\":{\"_title\":\"Inner Sedtion\"},\"elements\":[{\"id\":\"25cd114\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_title\":\"virtual reality experience\"},\"elements\":[{\"id\":\"15643ab\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"8ec2d0f\",\"elType\":\"widget\",\"settings\":{\"title\":\"VIRTUAL REALITY EXPERIENCE\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4e004ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"SPIDER-MAN HOMECOMING DISPLAY\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"73a2406\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Submerse yourself in the world of your friendly neighborhood Spider-Man in this fun and thrilling VR Theatrical Display.\\u00a0\\u00a0Based on the all-new 2017 film, the Spider-Man Homecoming VR Experience is a first-person look through the eyes of Spidey himself.<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"04b03b4\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7f4ffcc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"7f85dc5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":76,\"_title\":\"spiderman homecoming\"},\"elements\":[{\"id\":\"9a5a392\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Spidey_Home_V4_002.jpg\",\"id\":230},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"css_filters_css_filter\":\"custom\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"c16541a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":24,\"_title\":\"spiderman 2 vertical pics\"},\"elements\":[{\"id\":\"95b0eed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/IMG_3834.jpg\",\"id\":231},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8ea51a8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/IMG_3788.jpg\",\"id\":233}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"12d34c8\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"00\",\"bottom\":\"00\",\"left\":\"00\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"95003e6\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":435,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/TheStrangers_V01.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":4.9,\"sizes\":[]},\"layout\":\"full_width\",\"column_position\":\"top\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":68}},\"_title\":\"Section - STRANGERS HERO\",\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_translateY_direction\":\"negative\",\"background_xpos\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"background_motion_fx_range\":\"viewport\"},\"elements\":[{\"id\":\"b6deb1a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_title\":\"strangers prey at night\"},\"elements\":[{\"id\":\"7a350ee\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"70\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"ecd0cbe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"d684039\",\"elType\":\"widget\",\"settings\":{\"title\":\"THE STRANGERS PREY AT NIGHT\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"003eb99\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5fd9452\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"93ad64e\",\"elType\":\"widget\",\"settings\":{\"title\":\"GRAND FORMAT PHOTO-OP STANDEE\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"247aafb\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"_title\":\"Section - MARKETING AT ITS FINEST\"},\"elements\":[{\"id\":\"f002e93\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"d1321ed\",\"elType\":\"widget\",\"settings\":{\"title\":\"MARKETING AT ITS FINEST, TAILORED FOR SOCIAL MEDIA\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a16ef4e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>This theatrical display allows fans to take photos with Dollface, Pin-up Girl, the Man in the Mask and share their photos on social media.<\\/p>\",\"align\":\"center\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b58ab88\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"00ca412\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58},\"elements\":[{\"id\":\"032d3df\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/003.jpg\",\"id\":446},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"672c1f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42},\"elements\":[{\"id\":\"623f6d1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/26222472_170774200201231_6120473304701599744_n.jpg\",\"id\":447},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a641f07\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/VIDEO_COMING_SOON_01.jpg\",\"id\":449}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cf9e008\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"677b52c\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"31ae5e7\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":515,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/FREEBIRDS_V1B.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":4.9,\"sizes\":[]},\"layout\":\"full_width\",\"column_position\":\"top\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":68}},\"_title\":\"Section - THEATRICAL HERO\",\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_translateY_direction\":\"negative\",\"background_xpos\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"background_motion_fx_range\":\"viewport\"},\"elements\":[{\"id\":\"e45e9b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_title\":\"free birds\"},\"elements\":[{\"id\":\"68717d0\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"70\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"144d01b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"27b94bb\",\"elType\":\"widget\",\"settings\":{\"title\":\"THEATRICAL DISPLAYS\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"672b55e\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"16fbcce\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"ab6e6b7\",\"elType\":\"widget\",\"settings\":{\"title\":\"FREE BIRDS \\u2013 RESIN DISPLAY\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"42b76c7\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"_title\":\"Section - THEATRICAL DISPLAYS\"},\"elements\":[{\"id\":\"9fef846\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"9e16c55\",\"elType\":\"widget\",\"settings\":{\"title\":\"THEATRICAL DISPLAYS\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4a9d8d2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>OnDisplay Creative takes pride in its long history of leading the Entertainment Industry in creating and producing eye catching displays.<\\/p>\",\"align\":\"center\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"263fb63\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"42ecb50\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":69,\"_title\":\"spiderman homecoming\"},\"elements\":[{\"id\":\"fbd93cf\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/47Meters_02_cropped.jpg.jpg\",\"id\":549},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"align\":\"center\",\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2a3ff66\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":31,\"_title\":\"spiderman 2 vertical pics\"},\"elements\":[{\"id\":\"afb6c5e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/DFCV6gdXgAAoGDM.jpeg\",\"id\":520},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ad92bda\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/DEI2HYnW0AEERBl.jpeg\",\"id\":519}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"946f91d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"slideshow\",\"slides\":[{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Spidey_Home_V3.jpg\",\"id\":521},\"_id\":\"fb38f36\",\"type\":\"image\",\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/WarRoom_V1_002.jpg\",\"id\":524},\"_id\":\"a26cba3\",\"type\":\"image\",\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Mada3_01A_002.jpg\",\"id\":525},\"_id\":\"c815938\",\"type\":\"image\",\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/LOOZ_Standee_InTheater_2.jpg\",\"id\":526},\"_id\":\"4e65d42\",\"type\":\"image\",\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Thor-2.jpg\",\"id\":527},\"_id\":\"03a5179\",\"type\":\"image\",\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Echo_01A.jpg\",\"id\":528},\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"3604fe3\"},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Spidey_Home_V4_002-1.jpg\",\"id\":529},\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"f621837\"},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Hurricane-H_V1.jpg\",\"id\":530},\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"9f1174a\"},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Friend_Request.jpg\",\"id\":531},\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"2bec012\"},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/TheStrangers_V02_002.jpg\",\"id\":532},\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"8342d3b\"},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Kidnap2.jpg\",\"id\":533},\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"5ae447b\"},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/RfNight_01A_002.jpg\",\"id\":535},\"image_link_to_type\":\"file\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"56c21c6\"},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/AllSaints2_002.jpg\",\"id\":536},\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"dca9a78\"}],\"slideshow_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"slideshow_slides_per_view\":\"6\",\"thumbs_ratio\":\"43\",\"centered_slides\":\"yes\",\"autoplay_speed\":100},\"elements\":[],\"widgetType\":\"media-carousel\"},{\"id\":\"6bf6bab\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"d0a8d7e\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b45b58e\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":542,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Pets_HomeEnt_FrntP.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":4.9,\"sizes\":[]},\"layout\":\"full_width\",\"column_position\":\"top\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":68}},\"_title\":\"Section - HOME ENT HERO\",\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_translateY_direction\":\"negative\",\"background_xpos\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"background_motion_fx_range\":\"viewport\"},\"elements\":[{\"id\":\"b6af657\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_title\":\"secret life of pets\"},\"elements\":[{\"id\":\"8065946\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"70\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"121e9ec\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"3e5b110\",\"elType\":\"widget\",\"settings\":{\"title\":\"HOME ENTERTAINMENT\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"c4a68e0\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"0e38833\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"3f83c61\",\"elType\":\"widget\",\"settings\":{\"title\":\"THE SECRET LIFE OF PETS\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f43ab31\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"_title\":\"Section - HOME ENTERTAINMENT\"},\"elements\":[{\"id\":\"4398224\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"bd762d2\",\"elType\":\"widget\",\"settings\":{\"title\":\"HOME ENTERTAINMENT\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d49b5e2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>OnDisplay Creative works extensively with many major studios to provide the most effective marketing and merchandising materials. We have a vast understanding of the creative and production needs unique to the Entertainment Industry.<\\/p>\",\"align\":\"center\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f998468\",\"elType\":\"widget\",\"settings\":{\"skin\":\"slideshow\",\"slides\":[{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/SING-WOW_01.jpg\",\"id\":558},\"_id\":\"5601e8a\",\"type\":\"image\",\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/PETS_WOW_02.jpg\",\"id\":556},\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"cf0a445\"},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/BOURNE-WM-HC_01.jpg\",\"id\":555},\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"db277a6\"},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/XMEN_APOC-1.jpg\",\"id\":561},\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"8ee8473\"},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Barbie_01.jpg\",\"id\":554},\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"5e15e1d\"},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/PREPACKS_02.jpg\",\"id\":557},\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"76684ed\"}],\"slideshow_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"slideshow_slides_per_view\":\"6\",\"thumbs_ratio\":\"43\",\"centered_slides\":\"yes\",\"autoplay_speed\":100},\"elements\":[],\"widgetType\":\"media-carousel\"},{\"id\":\"db06005\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"926e5d0\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"81a9415\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":564,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Summer_1.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":4.9,\"sizes\":[]},\"layout\":\"full_width\",\"column_position\":\"top\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":68}},\"_title\":\"Section - RETAIL HERO\",\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_translateY_direction\":\"negative\",\"background_xpos\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"background_motion_fx_range\":\"viewport\"},\"elements\":[{\"id\":\"db3fd34\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_title\":\"old navy summer\"},\"elements\":[{\"id\":\"e57b2ef\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"70\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"6ba3ffc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"ed64037\",\"elType\":\"widget\",\"settings\":{\"title\":\"RETAIL\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9ea645d\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f6d6d26\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"46aa82e\",\"elType\":\"widget\",\"settings\":{\"title\":\"SUMMER SALE EVENT - OLD NAVY\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e636f9f\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"_title\":\"Section - RETAIL\"},\"elements\":[{\"id\":\"186370d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"c41c583\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"34456bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"c34d439\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/SUMMER_2_cropped.jpg\",\"id\":576}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"f0450d4\",\"elType\":\"widget\",\"settings\":{\"title\":\"SURF BOARD\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4feec62\",\"elType\":\"widget\",\"settings\":{\"title\":\"SWAPPABLE POSTER\",\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ddf5cb6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>This Semi-Permanent display had interchangeable graphics to promote sale items throughout the Summer campaign.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7d3c615\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"fc91cd2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Hodilay_1_cropped.jpg\",\"id\":575}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6c579e0\",\"elType\":\"widget\",\"settings\":{\"title\":\"HOLIDAY STAGE\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.4,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"775b69e\",\"elType\":\"widget\",\"settings\":{\"title\":\"STAGE CHANGE OUTS\",\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e7eb55b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Multiple items were produced and displayed on this large storefront extravaganza.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"d204c46\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"82f943c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/image-asset-1.jpeg\",\"id\":577}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"414b4e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"LOVE GAP\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.4,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4bde818\",\"elType\":\"widget\",\"settings\":{\"title\":\"QUALITY PROTOTYPING\",\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"eac7069\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>OnDisplay Creative is very adept in incorporating a variety of substrates to provide captivating Point-of-Purchase displays. <\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bc8a262\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":582,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Sony_Touch_Wall_2.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":4.9,\"sizes\":[]},\"layout\":\"full_width\",\"column_position\":\"top\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":68}},\"_title\":\"Section - TOUCH SCREEN HERO\",\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_translateY_direction\":\"negative\",\"background_xpos\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"background_motion_fx_range\":\"viewport\"},\"elements\":[{\"id\":\"d0168aa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_title\":\"old navy summer\"},\"elements\":[{\"id\":\"de8c44a\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"70\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"f89f9af\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"b2e386a\",\"elType\":\"widget\",\"settings\":{\"title\":\"TOUCH SCREEN DISPLAYS\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3518e1e\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"be83ec9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"1010fec\",\"elType\":\"widget\",\"settings\":{\"title\":\"CINE EUROPE \\u2013 BARCELONA\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cb88024\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"_title\":\"Section - INTERACTIVE TOUCH SCREEN\"},\"elements\":[{\"id\":\"bab84f9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"8c86956\",\"elType\":\"widget\",\"settings\":{\"title\":\"INTERACTIVE TOUCH SCREEN DISPLAYS\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2fe4ed1\",\"elType\":\"widget\",\"settings\":{\"title\":\"ONDISPLAY CREATIVE HELPS GIVE SONY PICTURES A GREAT PRESENCE AT INDUSTRY CONVENTIONS WORLD WIDE.\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"700\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6850c22\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>When Sony Pictures needed to incorporate permanent fixture visibility with cutting edge A\\/V technology, they turned to OnDisplay Creative. Creating a cost effective, customized and interactive touchscreen display allowed customers an innovative alternative to traditional in-theater displays. The technology used, grants clients the ability to present pictures, videos and information in a fun, attractive way drawing attention to the brand. The monitors can be placed into any display environment (corrugate or permanent)\\u00a0which can be designed, built, and installed by OnDisplay Creative or supplied by the client.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"518c3db\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"b1c8549\",\"elType\":\"widget\",\"settings\":{\"title\":\"COMIC-CON - SAN DIEGO\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c9ee71e\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"1468158\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4338955\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/TOUCH_MASK_01C.jpg\",\"id\":586},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a0896bb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Comic-Con is a multigenre entertainment and comic convention held annually in San Diego, California. It\'s the largest convention of its kind in the world with over 130,000 attendees. It\'s dedicated to creating awareness of comics and related popular art forms that celebrate the historic and ongoing contribution to art and culture.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ed79e3c\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"0d180a6\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3ed8fca\",\"elType\":\"widget\",\"settings\":{\"title\":\"CINEMA-CON - LAS VEGAS\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"806aebf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>OnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f1da6bb\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"gap\":\"wide\"},\"elements\":[{\"id\":\"99ce817\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.332},\"elements\":[{\"id\":\"8c8d7a2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/spidey_touchscreen_02.jpg\",\"id\":587},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3176bec\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":58},\"elements\":[{\"id\":\"f272736\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Since its inception in 2011, CinemaCon, the Official convention of NATO (The National Association of Theatre Owners) has become the most important gathering of cinema owners and operators from around the world representing more than 31,000 movie screens in all 50 states, and additional cinemas in 80 countries worldwide.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"aeac881\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/102278147\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6062ccb\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":591,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/HD_Render_02D.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":4.9,\"sizes\":[]},\"layout\":\"full_width\",\"column_position\":\"top\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":68}},\"_title\":\"Section - WHO WE ARE HERO\",\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_translateY_direction\":\"negative\",\"background_xpos\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"background_motion_fx_range\":\"viewport\"},\"elements\":[{\"id\":\"958038f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_title\":\"odc logo\"},\"elements\":[{\"id\":\"ee14024\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"70\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"dac2286\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"91a26cc\",\"elType\":\"widget\",\"settings\":{\"title\":\"TOUCH SCREEN DISPLAYS\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"02ca6fe\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"0daa12d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"00f83d2\",\"elType\":\"widget\",\"settings\":{\"title\":\"CINE EUROPE \\u2013 BARCELONA\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b747fda\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":700},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":900},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"_title\":\"our company bitches\"},\"elements\":[{\"id\":\"7eab781\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"43661634\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our company is a collective of amazing people striving to build delightful products.\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.4},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70cc6d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.<\\/p>\",\"align\":\"center\",\"text_color\":\"#686868\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"615dfb3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1000},\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"6414755f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3bb26eed\",\"elType\":\"widget\",\"settings\":{\"text\":\"Read More\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3},\"button_text_color\":\"#ffffff\",\"background_color\":\"rgba(0,0,0,0)\",\"hover_color\":\"#00ce1b\",\"button_hover_border_color\":\"#00ce1b\",\"hover_animation\":\"grow\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"123f6d1\",\"elType\":\"section\",\"settings\":{\"_title\":\"blank at bottom\"},\"elements\":[{\"id\":\"25fcf2e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"64f593f\",\"elType\":\"section\",\"settings\":{\"_title\":\"blank at bottom\"},\"elements\":[{\"id\":\"596f429\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(3837,593,'_elementor_edit_mode','builder'),(3838,593,'_elementor_elements_usage','a:10:{s:7:\"heading\";i:34;s:6:\"column\";i:48;s:7:\"section\";i:40;s:7:\"divider\";i:10;s:11:\"text-editor\";i:14;s:5:\"image\";i:17;s:5:\"video\";i:3;s:6:\"spacer\";i:5;s:14:\"media-carousel\";i:2;s:6:\"button\";i:1;}'),(3839,593,'_oembed_716ef4742e78124fc3af93f9a5adead9','<iframe title=\"vimeo placeholder\" src=\"https://player.vimeo.com/video/235215203?dnt=1&amp;app_id=122963\" width=\"1200\" height=\"675\" frameborder=\"0\" allow=\"autoplay; fullscreen\" allowfullscreen></iframe>'),(3840,593,'_oembed_time_716ef4742e78124fc3af93f9a5adead9','1568415948'),(3841,593,'_oembed_e6d64697975779fabdc4f171c0e483ef','<iframe title=\"THE LAST KEYS\" src=\"https://player.vimeo.com/video/257088337?dnt=1&amp;app_id=122963\" width=\"1200\" height=\"675\" frameborder=\"0\" allow=\"autoplay; fullscreen\" allowfullscreen></iframe>'),(3842,593,'_oembed_time_e6d64697975779fabdc4f171c0e483ef','1568416156'),(3843,593,'_oembed_279ad5f32a0cbffcb010fb545e057300','<iframe title=\"THE LAST KEYS\" src=\"https://player.vimeo.com/video/257088337?dnt=1&amp;app_id=122963\" width=\"500\" height=\"281\" frameborder=\"0\" allow=\"autoplay; fullscreen\" allowfullscreen></iframe>'),(3844,593,'_oembed_time_279ad5f32a0cbffcb010fb545e057300','1568417794'),(3845,593,'_oembed_e13e37e158f1a96aa51308acb0afc6e0','<iframe title=\"INSIDIOUS 3 - LIVING STANDEE\" src=\"https://player.vimeo.com/video/130807026?dnt=1&amp;app_id=122963\" width=\"640\" height=\"362\" frameborder=\"0\" allow=\"autoplay; fullscreen\" allowfullscreen></iframe>'),(3846,593,'_oembed_time_e13e37e158f1a96aa51308acb0afc6e0','1568479205'),(3847,593,'_oembed_54d24d33cdea7e3fdd01357656b94060','<iframe title=\"INSIDIOUS 3 - LIVING STANDEE\" src=\"https://player.vimeo.com/video/130807026?dnt=1&amp;app_id=122963\" width=\"500\" height=\"283\" frameborder=\"0\" allow=\"autoplay; fullscreen\" allowfullscreen></iframe>'),(3848,593,'_oembed_time_54d24d33cdea7e3fdd01357656b94060','1568480131'),(3849,594,'_elementor_template_type','post'),(3850,594,'_elementor_version','2.6.8'),(3851,594,'_elementor_pro_version','2.6.5'),(3852,594,'_wp_page_template','default'),(3853,594,'_elementor_data','[{\"id\":\"55396f27\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":50,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Theatrical_Display_V003C.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"motion_fx_range\":\"viewport\",\"layout\":\"full_width\",\"column_position\":\"top\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"_title\":\"Section - INSIDIOUS HERO\",\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"background_motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_range\":\"viewport\"},\"elements\":[{\"id\":\"905a97c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ad7f3f6\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"162\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2489c07\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"c0bbe21\",\"elType\":\"widget\",\"settings\":{\"title\":\"#WHAT\'S COOL\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"dc881ae\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"18630a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"870a9ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"INNOVATIONS FROM ONDISPLAY CREATIVE\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7df48509\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"_title\":\"Section - LIVING STANDEES\"},\"elements\":[{\"id\":\"1147078d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"23bbc68\",\"elType\":\"widget\",\"settings\":{\"title\":\"LIVING STANDEES HAUNTING THEATERS\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b40d155\",\"elType\":\"widget\",\"settings\":{\"title\":\"ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"700\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86cff8b\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"225341d\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS \\u2013 THE LAST KEY\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a680ae8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"be59fa3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e36fe5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"d4d2039\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2.jpg\",\"id\":88},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3c9b758\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"79e122a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Insidious4_pic2-1.jpg\",\"id\":87},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3dc9df5\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/257088337\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"start\":0},\"elements\":[],\"widgetType\":\"video\"},{\"id\":\"b61a90b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"8f63560\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"08c588a\",\"elType\":\"widget\",\"settings\":{\"title\":\"INSIDIOUS CHAPTER 3\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0e612c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>OnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7e77f5a\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"gap\":\"wide\"},\"elements\":[{\"id\":\"7eb5a21\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.332},\"elements\":[{\"id\":\"ae25867\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/image-asset.jpeg\",\"id\":196},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"24c773b\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":58},\"elements\":[{\"id\":\"93ad602\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/130807026\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"cb5dad6\",\"elType\":\"section\",\"settings\":{\"_title\":\"Inner Sedtion\"},\"elements\":[{\"id\":\"25cd114\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_title\":\"virtual reality experience\"},\"elements\":[{\"id\":\"15643ab\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"8ec2d0f\",\"elType\":\"widget\",\"settings\":{\"title\":\"VIRTUAL REALITY EXPERIENCE\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4e004ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"SPIDER-MAN HOMECOMING DISPLAY\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"73a2406\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Submerse yourself in the world of your friendly neighborhood Spider-Man in this fun and thrilling VR Theatrical Display.\\u00a0\\u00a0Based on the all-new 2017 film, the Spider-Man Homecoming VR Experience is a first-person look through the eyes of Spidey himself.<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"04b03b4\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7f4ffcc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"7f85dc5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":76,\"_title\":\"spiderman homecoming\"},\"elements\":[{\"id\":\"9a5a392\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Spidey_Home_V4_002.jpg\",\"id\":230},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"css_filters_css_filter\":\"custom\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"c16541a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":24,\"_title\":\"spiderman 2 vertical pics\"},\"elements\":[{\"id\":\"95b0eed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/IMG_3834.jpg\",\"id\":231},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8ea51a8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/IMG_3788.jpg\",\"id\":233}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"12d34c8\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"00\",\"bottom\":\"00\",\"left\":\"00\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"95003e6\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":435,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/TheStrangers_V01.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":4.9,\"sizes\":[]},\"layout\":\"full_width\",\"column_position\":\"top\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":68}},\"_title\":\"Section - STRANGERS HERO\",\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_translateY_direction\":\"negative\",\"background_xpos\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"background_motion_fx_range\":\"viewport\"},\"elements\":[{\"id\":\"b6deb1a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_title\":\"strangers prey at night\"},\"elements\":[{\"id\":\"7a350ee\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"70\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"ecd0cbe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"d684039\",\"elType\":\"widget\",\"settings\":{\"title\":\"THE STRANGERS PREY AT NIGHT\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"003eb99\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5fd9452\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"93ad64e\",\"elType\":\"widget\",\"settings\":{\"title\":\"GRAND FORMAT PHOTO-OP STANDEE\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"247aafb\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"_title\":\"Section - MARKETING AT ITS FINEST\"},\"elements\":[{\"id\":\"f002e93\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"d1321ed\",\"elType\":\"widget\",\"settings\":{\"title\":\"MARKETING AT ITS FINEST, TAILORED FOR SOCIAL MEDIA\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a16ef4e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>This theatrical display allows fans to take photos with Dollface, Pin-up Girl, the Man in the Mask and share their photos on social media.<\\/p>\",\"align\":\"center\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b58ab88\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"00ca412\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58},\"elements\":[{\"id\":\"032d3df\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/003.jpg\",\"id\":446},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"672c1f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42},\"elements\":[{\"id\":\"623f6d1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/26222472_170774200201231_6120473304701599744_n.jpg\",\"id\":447},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a641f07\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/VIDEO_COMING_SOON_01.jpg\",\"id\":449}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cf9e008\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"677b52c\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"31ae5e7\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":515,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/FREEBIRDS_V1B.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":4.9,\"sizes\":[]},\"layout\":\"full_width\",\"column_position\":\"top\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":68}},\"_title\":\"Section - THEATRICAL HERO\",\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_translateY_direction\":\"negative\",\"background_xpos\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"background_motion_fx_range\":\"viewport\"},\"elements\":[{\"id\":\"e45e9b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_title\":\"free birds\"},\"elements\":[{\"id\":\"68717d0\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"70\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"144d01b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"27b94bb\",\"elType\":\"widget\",\"settings\":{\"title\":\"THEATRICAL DISPLAYS\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"672b55e\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"16fbcce\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"ab6e6b7\",\"elType\":\"widget\",\"settings\":{\"title\":\"FREE BIRDS \\u2013 RESIN DISPLAY\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"42b76c7\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"_title\":\"Section - THEATRICAL DISPLAYS\"},\"elements\":[{\"id\":\"9fef846\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"9e16c55\",\"elType\":\"widget\",\"settings\":{\"title\":\"THEATRICAL DISPLAYS\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4a9d8d2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>OnDisplay Creative takes pride in its long history of leading the Entertainment Industry in creating and producing eye catching displays.<\\/p>\",\"align\":\"center\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"263fb63\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"42ecb50\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":69,\"_title\":\"spiderman homecoming\"},\"elements\":[{\"id\":\"fbd93cf\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/47Meters_02_cropped.jpg.jpg\",\"id\":549},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"align\":\"center\",\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2a3ff66\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":31,\"_title\":\"spiderman 2 vertical pics\"},\"elements\":[{\"id\":\"afb6c5e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/DFCV6gdXgAAoGDM.jpeg\",\"id\":520},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ad92bda\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/DEI2HYnW0AEERBl.jpeg\",\"id\":519}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"946f91d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"slideshow\",\"slides\":[{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Spidey_Home_V3.jpg\",\"id\":521},\"_id\":\"fb38f36\",\"type\":\"image\",\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/WarRoom_V1_002.jpg\",\"id\":524},\"_id\":\"a26cba3\",\"type\":\"image\",\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Mada3_01A_002.jpg\",\"id\":525},\"_id\":\"c815938\",\"type\":\"image\",\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/LOOZ_Standee_InTheater_2.jpg\",\"id\":526},\"_id\":\"4e65d42\",\"type\":\"image\",\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Thor-2.jpg\",\"id\":527},\"_id\":\"03a5179\",\"type\":\"image\",\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Echo_01A.jpg\",\"id\":528},\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"3604fe3\"},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Spidey_Home_V4_002-1.jpg\",\"id\":529},\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"f621837\"},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Hurricane-H_V1.jpg\",\"id\":530},\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"9f1174a\"},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Friend_Request.jpg\",\"id\":531},\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"2bec012\"},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/TheStrangers_V02_002.jpg\",\"id\":532},\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"8342d3b\"},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Kidnap2.jpg\",\"id\":533},\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"5ae447b\"},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/RfNight_01A_002.jpg\",\"id\":535},\"image_link_to_type\":\"file\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"56c21c6\"},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/AllSaints2_002.jpg\",\"id\":536},\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"dca9a78\"}],\"slideshow_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"slideshow_slides_per_view\":\"6\",\"thumbs_ratio\":\"43\",\"centered_slides\":\"yes\",\"autoplay_speed\":100},\"elements\":[],\"widgetType\":\"media-carousel\"},{\"id\":\"6bf6bab\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"d0a8d7e\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b45b58e\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":542,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Pets_HomeEnt_FrntP.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":4.9,\"sizes\":[]},\"layout\":\"full_width\",\"column_position\":\"top\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":68}},\"_title\":\"Section - HOME ENT HERO\",\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_translateY_direction\":\"negative\",\"background_xpos\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"background_motion_fx_range\":\"viewport\"},\"elements\":[{\"id\":\"b6af657\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_title\":\"secret life of pets\"},\"elements\":[{\"id\":\"8065946\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"70\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"121e9ec\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"3e5b110\",\"elType\":\"widget\",\"settings\":{\"title\":\"HOME ENTERTAINMENT\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"c4a68e0\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"0e38833\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"3f83c61\",\"elType\":\"widget\",\"settings\":{\"title\":\"THE SECRET LIFE OF PETS\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f43ab31\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"_title\":\"Section - HOME ENTERTAINMENT\"},\"elements\":[{\"id\":\"4398224\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"bd762d2\",\"elType\":\"widget\",\"settings\":{\"title\":\"HOME ENTERTAINMENT\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d49b5e2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>OnDisplay Creative works extensively with many major studios to provide the most effective marketing and merchandising materials. We have a vast understanding of the creative and production needs unique to the Entertainment Industry.<\\/p>\",\"align\":\"center\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f998468\",\"elType\":\"widget\",\"settings\":{\"skin\":\"slideshow\",\"slides\":[{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/SING-WOW_01.jpg\",\"id\":558},\"_id\":\"5601e8a\",\"type\":\"image\",\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/PETS_WOW_02.jpg\",\"id\":556},\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"cf0a445\"},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/BOURNE-WM-HC_01.jpg\",\"id\":555},\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"db277a6\"},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/XMEN_APOC-1.jpg\",\"id\":561},\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"8ee8473\"},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Barbie_01.jpg\",\"id\":554},\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"5e15e1d\"},{\"type\":\"image\",\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/PREPACKS_02.jpg\",\"id\":557},\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"76684ed\"}],\"slideshow_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"slideshow_slides_per_view\":\"6\",\"thumbs_ratio\":\"43\",\"centered_slides\":\"yes\",\"autoplay_speed\":100},\"elements\":[],\"widgetType\":\"media-carousel\"},{\"id\":\"db06005\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"926e5d0\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"81a9415\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":564,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Summer_1.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":4.9,\"sizes\":[]},\"layout\":\"full_width\",\"column_position\":\"top\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":68}},\"_title\":\"Section - RETAIL HERO\",\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_translateY_direction\":\"negative\",\"background_xpos\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"background_motion_fx_range\":\"viewport\"},\"elements\":[{\"id\":\"db3fd34\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_title\":\"old navy summer\"},\"elements\":[{\"id\":\"e57b2ef\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"70\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"6ba3ffc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"ed64037\",\"elType\":\"widget\",\"settings\":{\"title\":\"RETAIL\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9ea645d\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f6d6d26\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"46aa82e\",\"elType\":\"widget\",\"settings\":{\"title\":\"SUMMER SALE EVENT - OLD NAVY\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e636f9f\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"_title\":\"Section - RETAIL\"},\"elements\":[{\"id\":\"186370d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"c41c583\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"34456bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"c34d439\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/SUMMER_2_cropped.jpg\",\"id\":576}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"f0450d4\",\"elType\":\"widget\",\"settings\":{\"title\":\"SURF BOARD\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4feec62\",\"elType\":\"widget\",\"settings\":{\"title\":\"SWAPPABLE POSTER\",\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ddf5cb6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>This Semi-Permanent display had interchangeable graphics to promote sale items throughout the Summer campaign.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7d3c615\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"fc91cd2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Hodilay_1_cropped.jpg\",\"id\":575}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6c579e0\",\"elType\":\"widget\",\"settings\":{\"title\":\"HOLIDAY STAGE\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.4,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"775b69e\",\"elType\":\"widget\",\"settings\":{\"title\":\"STAGE CHANGE OUTS\",\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e7eb55b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Multiple items were produced and displayed on this large storefront extravaganza.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"d204c46\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"82f943c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/image-asset-1.jpeg\",\"id\":577}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"414b4e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"LOVE GAP\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.4,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4bde818\",\"elType\":\"widget\",\"settings\":{\"title\":\"QUALITY PROTOTYPING\",\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"eac7069\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>OnDisplay Creative is very adept in incorporating a variety of substrates to provide captivating Point-of-Purchase displays. <\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bc8a262\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":582,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/Sony_Touch_Wall_2.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":4.9,\"sizes\":[]},\"layout\":\"full_width\",\"column_position\":\"top\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":68}},\"_title\":\"Section - TOUCH SCREEN HERO\",\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_translateY_direction\":\"negative\",\"background_xpos\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"background_motion_fx_range\":\"viewport\"},\"elements\":[{\"id\":\"d0168aa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_title\":\"old navy summer\"},\"elements\":[{\"id\":\"de8c44a\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"70\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"f89f9af\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"b2e386a\",\"elType\":\"widget\",\"settings\":{\"title\":\"TOUCH SCREEN DISPLAYS\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3518e1e\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"be83ec9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"1010fec\",\"elType\":\"widget\",\"settings\":{\"title\":\"CINE EUROPE \\u2013 BARCELONA\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cb88024\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\"},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":50,\"end\":100}},\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"_title\":\"Section - INTERACTIVE TOUCH SCREEN\"},\"elements\":[{\"id\":\"bab84f9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"8c86956\",\"elType\":\"widget\",\"settings\":{\"title\":\"INTERACTIVE TOUCH SCREEN DISPLAYS\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2fe4ed1\",\"elType\":\"widget\",\"settings\":{\"title\":\"ONDISPLAY CREATIVE HELPS GIVE SONY PICTURES A GREAT PRESENCE AT INDUSTRY CONVENTIONS WORLD WIDE.\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"700\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6850c22\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>When Sony Pictures needed to incorporate permanent fixture visibility with cutting edge A\\/V technology, they turned to OnDisplay Creative. Creating a cost effective, customized and interactive touchscreen display allowed customers an innovative alternative to traditional in-theater displays. The technology used, grants clients the ability to present pictures, videos and information in a fun, attractive way drawing attention to the brand. The monitors can be placed into any display environment (corrugate or permanent)\\u00a0which can be designed, built, and installed by OnDisplay Creative or supplied by the client.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"518c3db\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"b1c8549\",\"elType\":\"widget\",\"settings\":{\"title\":\"COMIC-CON - SAN DIEGO\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c9ee71e\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"1468158\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4338955\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/TOUCH_MASK_01C.jpg\",\"id\":586},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a0896bb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Comic-Con is a multigenre entertainment and comic convention held annually in San Diego, California. It\'s the largest convention of its kind in the world with over 130,000 attendees. It\'s dedicated to creating awareness of comics and related popular art forms that celebrate the historic and ongoing contribution to art and culture.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ed79e3c\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"0d180a6\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3ed8fca\",\"elType\":\"widget\",\"settings\":{\"title\":\"CINEMA-CON - LAS VEGAS\",\"align\":\"left\",\"title_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"806aebf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>OnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.<\\/p>\",\"align\":\"left\",\"text_color\":\"#16161d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f1da6bb\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"gap\":\"wide\"},\"elements\":[{\"id\":\"99ce817\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.332},\"elements\":[{\"id\":\"8c8d7a2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/spidey_touchscreen_02.jpg\",\"id\":587},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3176bec\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":58},\"elements\":[{\"id\":\"f272736\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Since its inception in 2011, CinemaCon, the Official convention of NATO (The National Association of Theatre Owners) has become the most important gathering of cinema owners and operators from around the world representing more than 31,000 movie screens in all 50 states, and additional cinemas in 80 countries worldwide.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"aeac881\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/102278147\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6062ccb\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1045},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"background_background\":\"classic\",\"background_image\":{\"id\":591,\"url\":\"http:\\/\\/23.235.208.11\\/~ondisp5\\/wp\\/wp-content\\/uploads\\/2019\\/09\\/HD_Render_02D.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_timestamp_\":\"v1M0QyVzJTMk5EcFpGZlZKZ2dlMGgrZz09\",\"background_color\":\"#ffffff\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":4.9,\"sizes\":[]},\"layout\":\"full_width\",\"column_position\":\"top\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":68}},\"_title\":\"Section - WHO WE ARE HERO\",\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_translateY_direction\":\"negative\",\"background_xpos\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"background_motion_fx_range\":\"viewport\"},\"elements\":[{\"id\":\"958038f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_title\":\"odc logo\"},\"elements\":[{\"id\":\"ee14024\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"70\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"dac2286\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"91a26cc\",\"elType\":\"widget\",\"settings\":{\"title\":\"TOUCH SCREEN DISPLAYS\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"24\",\"bottom\":\"18\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"02ca6fe\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"0daa12d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[{\"id\":\"00f83d2\",\"elType\":\"widget\",\"settings\":{\"title\":\"CINE EUROPE \\u2013 BARCELONA\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"24\",\"bottom\":\"16\",\"left\":\"24\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"rgba(238,118,36,0.7)\",\"_css_classes\":\"orange-box-heading\",\"_element_width\":\"auto\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"56\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b747fda\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":700},\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":900},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"_title\":\"our company bitches\"},\"elements\":[{\"id\":\"7eab781\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"43661634\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our company is a collective of amazing people striving to build delightful products.\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.4},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70cc6d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.<\\/p>\",\"align\":\"center\",\"text_color\":\"#686868\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"615dfb3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1000},\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"6414755f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3bb26eed\",\"elType\":\"widget\",\"settings\":{\"text\":\"Read More\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3},\"button_text_color\":\"#ffffff\",\"background_color\":\"rgba(0,0,0,0)\",\"hover_color\":\"#00ce1b\",\"button_hover_border_color\":\"#00ce1b\",\"hover_animation\":\"grow\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"123f6d1\",\"elType\":\"section\",\"settings\":{\"_title\":\"blank at bottom\"},\"elements\":[{\"id\":\"25fcf2e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"64f593f\",\"elType\":\"section\",\"settings\":{\"_title\":\"blank at bottom\"},\"elements\":[{\"id\":\"596f429\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(3854,594,'_elementor_edit_mode','builder'),(3855,594,'_elementor_elements_usage','a:10:{s:7:\"heading\";i:34;s:6:\"column\";i:48;s:7:\"section\";i:40;s:7:\"divider\";i:10;s:11:\"text-editor\";i:14;s:5:\"image\";i:17;s:5:\"video\";i:3;s:6:\"spacer\";i:5;s:14:\"media-carousel\";i:2;s:6:\"button\";i:1;}'),(3856,593,'_oembed_da969582dec56505ada34785b31e7ebd','<iframe title=\"INTERACTIVE TOUCHSCREEN\" src=\"https://player.vimeo.com/video/102278147?dnt=1&amp;app_id=122963\" width=\"500\" height=\"281\" frameborder=\"0\" allow=\"autoplay; fullscreen\" allowfullscreen></iframe>'),(3857,593,'_oembed_time_da969582dec56505ada34785b31e7ebd','1569392268'),(3858,593,'_elementor_css','a:5:{s:4:\"time\";i:1569392269;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:1:{i:0;s:0:\"\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(3859,5,'_elementor_css','a:5:{s:4:\"time\";i:1569392279;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:1:{i:0;s:0:\"\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}');
/*!40000 ALTER TABLE `wp_postmeta` ENABLE KEYS */;
UNLOCK TABLES;

-- Dumped table `wp_postmeta` with 3277 row(s)
--

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

DROP TABLE IF EXISTS `wp_posts`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_posts` (
  `ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `post_author` bigint(20) unsigned NOT NULL DEFAULT 0,
  `post_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `post_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `post_content` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
  `post_title` text COLLATE utf8mb4_unicode_ci NOT NULL,
  `post_excerpt` text COLLATE utf8mb4_unicode_ci NOT NULL,
  `post_status` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'publish',
  `comment_status` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'open',
  `ping_status` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'open',
  `post_password` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `post_name` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `to_ping` text COLLATE utf8mb4_unicode_ci NOT NULL,
  `pinged` text COLLATE utf8mb4_unicode_ci NOT NULL,
  `post_modified` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `post_modified_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `post_content_filtered` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
  `post_parent` bigint(20) unsigned NOT NULL DEFAULT 0,
  `guid` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `menu_order` int(11) NOT NULL DEFAULT 0,
  `post_type` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'post',
  `post_mime_type` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `comment_count` bigint(20) NOT NULL DEFAULT 0,
  PRIMARY KEY (`ID`),
  KEY `post_name` (`post_name`(191)),
  KEY `type_status_date` (`post_type`,`post_status`,`post_date`,`ID`),
  KEY `post_parent` (`post_parent`),
  KEY `post_author` (`post_author`)
) ENGINE=MyISAM AUTO_INCREMENT=595 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

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

LOCK TABLES `wp_posts` WRITE;
/*!40000 ALTER TABLE `wp_posts` DISABLE KEYS */;
INSERT INTO `wp_posts` VALUES (1,1,'2019-09-08 00:08:38','2019-09-08 00:08:38','<!-- wp:paragraph -->\n<p>Welcome to WordPress. This is your first post. Edit or delete it, then start writing!</p>\n<!-- /wp:paragraph -->','Hello world!','','publish','open','open','','hello-world','','','2019-09-08 00:08:38','2019-09-08 00:08:38','',0,'http://23.235.208.11/~ondisp5/wp/?p=1',0,'post','',1),(2,1,'2019-09-08 00:08:38','2019-09-08 00:08:38','<!-- 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://23.235.208.11/~ondisp5/wp/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','','','2019-09-08 00:08:38','2019-09-08 00:08:38','',0,'http://23.235.208.11/~ondisp5/wp/?page_id=2',0,'page','',0),(3,1,'2019-09-08 00:08:38','2019-09-08 00:08:38','<!-- wp:heading --><h2>Who we are</h2><!-- /wp:heading --><!-- wp:paragraph --><p>Our website address is: http://23.235.208.11/~ondisp5/wp.</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','','','2019-09-08 00:08:38','2019-09-08 00:08:38','',0,'http://23.235.208.11/~ondisp5/wp/?page_id=3',0,'page','',0),(5,1,'2019-09-09 00:43:26','2019-09-09 00:43:26','<h2>#WHAT\'S COOL</h2>		\n			<h2>INNOVATIONS FROM ONDISPLAY CREATIVE</h2>		\n			<h1>LIVING STANDEES HAUNTING THEATERS</h1>		\n			<h3>ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS</h3>		\n			<h2>INSIDIOUS – THE LAST KEY</h2>		\n		<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!</p>		\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n		https://vimeo.com/257088337		\n			<h2>INSIDIOUS CHAPTER 3</h2>		\n		<p>OnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.</p>		\n										<img width=\"1000\" height=\"800\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset.jpeg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset.jpeg 1000w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-300x240.jpeg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-768x614.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />											\n		https://vimeo.com/130807026		\n			<h1>VIRTUAL REALITY EXPERIENCE</h1>		\n			<h2>SPIDER-MAN HOMECOMING DISPLAY</h2>		\n		<p>Submerse yourself in the world of your friendly neighborhood Spider-Man in this fun and thrilling VR Theatrical Display.  Based on the all-new 2017 film, the Spider-Man Homecoming VR Experience is a first-person look through the eyes of Spidey himself.</p>		\n										<img width=\"1024\" height=\"711\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-1024x711.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-1024x711.jpg 1024w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-300x208.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-768x533.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n										<img width=\"750\" height=\"1000\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834.jpg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834-225x300.jpg 225w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n										<img width=\"750\" height=\"750\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788.jpg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788-150x150.jpg 150w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788-300x300.jpg 300w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n			<h2>THE STRANGERS PREY AT NIGHT</h2>		\n			<h2>GRAND FORMAT PHOTO-OP STANDEE</h2>		\n			<h1>MARKETING AT ITS FINEST, TAILORED FOR SOCIAL MEDIA</h1>		\n		<p>This theatrical display allows fans to take photos with Dollface, Pin-up Girl, the Man in the Mask and share their photos on social media.</p>		\n										<img width=\"942\" height=\"703\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003.jpg 942w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003-300x224.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003-768x573.jpg 768w\" sizes=\"(max-width: 942px) 100vw, 942px\" />											\n										<img width=\"950\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-950x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-950x1024.jpg 950w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-278x300.jpg 278w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-768x828.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n.jpg 1000w\" sizes=\"(max-width: 950px) 100vw, 950px\" />											\n										<img width=\"1024\" height=\"576\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-1024x576.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-1024x576.jpg 1024w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-300x169.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-768x432.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01.jpg 1280w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n			<h2>THEATRICAL DISPLAYS</h2>		\n			<h2>FREE BIRDS – RESIN DISPLAY</h2>		\n			<h1>THEATRICAL DISPLAYS</h1>		\n		<p>OnDisplay Creative takes pride in its long history of leading the Entertainment Industry in creating and producing eye catching displays.</p>		\n										<img width=\"650\" height=\"751\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/47Meters_02_cropped.jpg.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/47Meters_02_cropped.jpg.jpg 650w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/47Meters_02_cropped.jpg-260x300.jpg 260w\" sizes=\"(max-width: 650px) 100vw, 650px\" />											\n										<img width=\"750\" height=\"1000\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/DFCV6gdXgAAoGDM.jpeg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/DFCV6gdXgAAoGDM.jpeg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/DFCV6gdXgAAoGDM-225x300.jpeg 225w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n										<img width=\"750\" height=\"1000\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/DEI2HYnW0AEERBl.jpeg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/DEI2HYnW0AEERBl.jpeg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/DEI2HYnW0AEERBl-225x300.jpeg 225w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n							<a href=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/RfNight_01A_002.jpg\" data-elementor-lightbox-slideshow=\"946f91d\" data-elementor-lightbox-index=\"0\">		\n		</a>						\n							Previous\n							Next\n		</a>						\n			<h2>HOME ENTERTAINMENT</h2>		\n			<h2>THE SECRET LIFE OF PETS</h2>		\n			<h1>HOME ENTERTAINMENT</h1>		\n		<p>OnDisplay Creative works extensively with many major studios to provide the most effective marketing and merchandising materials. We have a vast understanding of the creative and production needs unique to the Entertainment Industry.</p>		\n							Previous\n							Next\n			<h2>RETAIL</h2>		\n			<h2>SUMMER SALE EVENT - OLD NAVY</h2>		\n										<img width=\"750\" height=\"500\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/SUMMER_2_cropped.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/SUMMER_2_cropped.jpg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/SUMMER_2_cropped-300x200.jpg 300w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n			<h2>SURF BOARD</h2>		\n			<h3>SWAPPABLE POSTER</h3>		\n		<p>This Semi-Permanent display had interchangeable graphics to promote sale items throughout the Summer campaign.</p>		\n										<img width=\"750\" height=\"500\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Hodilay_1_cropped.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Hodilay_1_cropped.jpg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Hodilay_1_cropped-300x200.jpg 300w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n			<h2>HOLIDAY STAGE</h2>		\n			<h3>STAGE CHANGE OUTS</h3>		\n		<p>Multiple items were produced and displayed on this large storefront extravaganza.</p>		\n										<img width=\"750\" height=\"500\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-1.jpeg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-1.jpeg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-1-300x200.jpeg 300w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n			<h2>LOVE GAP</h2>		\n			<h3>QUALITY PROTOTYPING</h3>		\n		<p>OnDisplay Creative is very adept in incorporating a variety of substrates to provide captivating Point-of-Purchase displays. </p>		\n			<h2>TOUCH SCREEN DISPLAYS</h2>		\n			<h2>CINE EUROPE – BARCELONA</h2>		\n			<h1>INTERACTIVE TOUCH SCREEN DISPLAYS</h1>		\n			<h3>ONDISPLAY CREATIVE HELPS GIVE SONY PICTURES A GREAT PRESENCE AT INDUSTRY CONVENTIONS WORLD WIDE.</h3>		\n		<p>When Sony Pictures needed to incorporate permanent fixture visibility with cutting edge A/V technology, they turned to OnDisplay Creative. Creating a cost effective, customized and interactive touchscreen display allowed customers an innovative alternative to traditional in-theater displays. The technology used, grants clients the ability to present pictures, videos and information in a fun, attractive way drawing attention to the brand. The monitors can be placed into any display environment (corrugate or permanent) which can be designed, built, and installed by OnDisplay Creative or supplied by the client.</p>		\n			<h2>COMIC-CON - SAN DIEGO</h2>		\n										<img width=\"1024\" height=\"640\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/TOUCH_MASK_01C-1024x640.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/TOUCH_MASK_01C-1024x640.jpg 1024w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/TOUCH_MASK_01C-300x188.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/TOUCH_MASK_01C-768x480.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/TOUCH_MASK_01C.jpg 1300w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n		<p>Comic-Con is a multigenre entertainment and comic convention held annually in San Diego, California. It\'s the largest convention of its kind in the world with over 130,000 attendees. It\'s dedicated to creating awareness of comics and related popular art forms that celebrate the historic and ongoing contribution to art and culture.</p>		\n			<h2>CINEMA-CON - LAS VEGAS</h2>		\n		<p>OnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.</p>		\n										<img width=\"480\" height=\"640\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/spidey_touchscreen_02.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/spidey_touchscreen_02.jpg 480w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/spidey_touchscreen_02-225x300.jpg 225w\" sizes=\"(max-width: 480px) 100vw, 480px\" />											\n		<p>Since its inception in 2011, CinemaCon, the Official convention of NATO (The National Association of Theatre Owners) has become the most important gathering of cinema owners and operators from around the world representing more than 31,000 movie screens in all 50 states, and additional cinemas in 80 countries worldwide.</p>https://vimeo.com/102278147		\n			<h2>TOUCH SCREEN DISPLAYS</h2>		\n			<h2>CINE EUROPE – BARCELONA</h2>		\n			<h4>Our company is a collective of amazing people striving to build delightful products.</h4>		\n		<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.</p>		\n			<a href=\"#\" role=\"button\">\n						Read More\n					</a>','Home','','publish','closed','closed','','home','','','2019-09-25 06:16:58','2019-09-25 06:16:58','',0,'http://23.235.208.11/~ondisp5/wp/?page_id=5',0,'page','',0),(6,1,'2019-09-09 00:38:10','2019-09-09 00:38:10','','Elementor #5','','inherit','closed','closed','','5-revision-v1','','','2019-09-09 00:38:10','2019-09-09 00:38:10','',5,'http://23.235.208.11/~ondisp5/wp/2019/09/09/5-revision-v1/',0,'revision','',0),(11,1,'2019-09-09 00:44:36','2019-09-09 00:44:36','','Home','','inherit','closed','closed','','5-revision-v1','','','2019-09-09 00:44:36','2019-09-09 00:44:36','',5,'http://23.235.208.11/~ondisp5/wp/2019/09/09/5-revision-v1/',0,'revision','',0),(7,1,'2019-09-09 00:44:06','2019-09-09 00:44:06','','Gallery','','publish','closed','closed','','gallery','','','2019-09-09 00:46:26','2019-09-09 00:46:26','',0,'http://23.235.208.11/~ondisp5/wp/?page_id=7',0,'page','',0),(8,1,'2019-09-09 00:44:06','2019-09-09 00:44:06','','Gallery','','inherit','closed','closed','','7-revision-v1','','','2019-09-09 00:44:06','2019-09-09 00:44:06','',7,'http://23.235.208.11/~ondisp5/wp/2019/09/09/7-revision-v1/',0,'revision','',0),(9,1,'2019-09-09 00:44:24','2019-09-09 00:44:24','','About Us','','publish','closed','closed','','about-us','','','2019-09-09 00:46:53','2019-09-09 00:46:53','',0,'http://23.235.208.11/~ondisp5/wp/?page_id=9',0,'page','',0),(10,1,'2019-09-09 00:44:24','2019-09-09 00:44:24','','About Us','','inherit','closed','closed','','9-revision-v1','','','2019-09-09 00:44:24','2019-09-09 00:44:24','',9,'http://23.235.208.11/~ondisp5/wp/2019/09/09/9-revision-v1/',0,'revision','',0),(12,1,'2019-09-09 00:45:33','2019-09-09 00:45:33','','ABOUT US','','publish','closed','closed','','12','','','2019-09-09 00:55:30','2019-09-09 00:55:30','',0,'http://23.235.208.11/~ondisp5/wp/?p=12',3,'nav_menu_item','',0),(13,1,'2019-09-09 00:45:33','2019-09-09 00:45:33','','GALLERY','','publish','closed','closed','','13','','','2019-09-09 00:55:30','2019-09-09 00:55:30','',0,'http://23.235.208.11/~ondisp5/wp/?p=13',2,'nav_menu_item','',0),(14,1,'2019-09-09 00:45:33','2019-09-09 00:45:33','','HOME','','publish','closed','closed','','14','','','2019-09-09 00:55:30','2019-09-09 00:55:30','',0,'http://23.235.208.11/~ondisp5/wp/?p=14',1,'nav_menu_item','',0),(22,1,'2019-09-09 00:59:36','2019-09-09 00:59:36','','Home','','inherit','closed','closed','','5-revision-v1','','','2019-09-09 00:59:36','2019-09-09 00:59:36','',5,'http://23.235.208.11/~ondisp5/wp/2019/09/09/5-revision-v1/',0,'revision','',0),(16,1,'2019-09-09 00:49:34','2019-09-09 00:49:34','{\n    \"astra-settings[body-font-family]\": {\n        \"value\": \"\'Roboto\', sans-serif\",\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2019-09-09 00:49:02\"\n    },\n    \"astra-settings[body-font-weight]\": {\n        \"value\": \"400\",\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2019-09-09 00:49:02\"\n    },\n    \"astra-settings[headings-font-family]\": {\n        \"value\": \"\'Puritan\', sans-serif\",\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2019-09-09 00:49:34\"\n    },\n    \"astra-settings[headings-font-weight]\": {\n        \"value\": \"400\",\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2019-09-09 00:49:34\"\n    }\n}','','','trash','closed','closed','','7a6bb6de-cdf9-4500-9690-5df609742cc0','','','2019-09-09 00:49:34','2019-09-09 00:49:34','',0,'http://23.235.208.11/~ondisp5/wp/?p=16',0,'customize_changeset','',0),(18,1,'2019-09-09 00:57:45','2019-09-09 00:57:45','','a','','inherit','open','closed','','a','','','2019-09-09 00:57:45','2019-09-09 00:57:45','',0,'http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/a.png',0,'attachment','image/png',0),(19,1,'2019-09-09 00:58:00','2019-09-09 00:58:00','{\n    \"astra::custom_logo\": {\n        \"value\": 18,\n        \"type\": \"theme_mod\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2019-09-09 00:58:00\"\n    }\n}','','','trash','closed','closed','','25fd1b2c-3cd2-4c41-af0f-e7015ae82337','','','2019-09-09 00:58:00','2019-09-09 00:58:00','',0,'http://23.235.208.11/~ondisp5/wp/2019/09/09/25fd1b2c-3cd2-4c41-af0f-e7015ae82337/',0,'customize_changeset','',0),(20,1,'2019-09-09 00:58:22','2019-09-09 00:58:22','{\n    \"astra-settings[ast-header-responsive-logo-width]\": {\n        \"value\": {\n            \"desktop\": \"445\",\n            \"tablet\": \"\",\n            \"mobile\": \"\"\n        },\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2019-09-09 00:58:22\"\n    },\n    \"astra-settings[display-site-title]\": {\n        \"value\": false,\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2019-09-09 00:58:22\"\n    }\n}','','','trash','closed','closed','','c04be1b9-f82d-40c6-8e93-a1d618fb7bb8','','','2019-09-09 00:58:22','2019-09-09 00:58:22','',0,'http://23.235.208.11/~ondisp5/wp/2019/09/09/c04be1b9-f82d-40c6-8e93-a1d618fb7bb8/',0,'customize_changeset','',0),(21,1,'2019-09-09 00:58:44','2019-09-09 00:58:44','{\n    \"astra-settings[ast-header-responsive-logo-width]\": {\n        \"value\": {\n            \"desktop\": \"400\",\n            \"tablet\": \"\",\n            \"mobile\": \"\"\n        },\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2019-09-09 00:58:44\"\n    }\n}','','','trash','closed','closed','','55a0d971-b02b-4813-bd82-6949de1925ec','','','2019-09-09 00:58:44','2019-09-09 00:58:44','',0,'http://23.235.208.11/~ondisp5/wp/2019/09/09/55a0d971-b02b-4813-bd82-6949de1925ec/',0,'customize_changeset','',0),(23,1,'2019-09-09 01:00:34','2019-09-09 01:00:34','{\n    \"show_on_front\": {\n        \"value\": \"page\",\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2019-09-09 01:00:34\"\n    },\n    \"page_on_front\": {\n        \"value\": \"5\",\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2019-09-09 01:00:34\"\n    }\n}','','','trash','closed','closed','','bece655a-85b4-4f41-9c67-bc9681143a23','','','2019-09-09 01:00:34','2019-09-09 01:00:34','',0,'http://23.235.208.11/~ondisp5/wp/2019/09/09/bece655a-85b4-4f41-9c67-bc9681143a23/',0,'customize_changeset','',0),(25,1,'2019-09-09 19:36:27','2019-09-09 19:36:27','<h2>wipeOUT</h2>\n<img src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Snow.png\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Snow.png 1107w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Snow-300x129.png 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Snow-768x330.png 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Snow-1024x440.png 1024w\" sizes=\"(max-width: 1107px) 100vw, 1107px\" width=\"1107\" height=\"476\">\n\nNoise around us has become a bit of a mantra around here. So for 018 we’ve again applied what we’ve learnt in the past to push the needle forward in our own unique way!\n<h3>featured resorts</h3>\nServing up tips, tricks, guides and inspiration for your next outdoor adventure - we\'ve got you covered.\n\n<a href=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/johannes-waibel-4298.png\" data-elementor-lightbox-slideshow=\"15655030\" data-elementor-lightbox-index=\"0\">\n</a>\n<a href=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/lukas-neasi-65748.png\" data-elementor-lightbox-slideshow=\"15655030\" data-elementor-lightbox-index=\"1\">\n</a>\n<a href=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/markos-mant-228858.png\" data-elementor-lightbox-slideshow=\"15655030\" data-elementor-lightbox-index=\"2\">\n</a>\n<a href=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/mattias-olsson-160612.png\" data-elementor-lightbox-slideshow=\"15655030\" data-elementor-lightbox-index=\"3\">\n</a>\n<a href=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/tomas-kodydek-7492.png\" data-elementor-lightbox-slideshow=\"15655030\" data-elementor-lightbox-index=\"4\">\n</a>\nPrevious\nNext\n<h4>Secret Season</h4>\n<h3>Outdoor skiing lodge !</h3>\nInsiders know that spring is the best time to bring your family to Snow Mountain. With unlimited sunshine, great snow conditions, and plenty of family-friendly activities to enjoy at both base areas, spring is the best-kept secret of the season. But hurry...with deals this good they won\'t stay a secret for long!\n\n<a href=\"#\" role=\"button\">\nread more\n</a>\n<img src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/profile2.png\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/profile2.png 500w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/profile2-150x150.png 150w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/profile2-300x300.png 300w\" sizes=\"(max-width: 500px) 100vw, 500px\" width=\"500\" height=\"501\">\nDOMINIC VERDANA\nowner\n<h3>about us</h3>\nInsiders know that spring is the best time to bring your family to Snow Mountain. With unlimited sunshine, great snow conditions, and plenty of family-friendly activities to enjoy at both base areas, spring is the best-kept secret of the season. But hurry...with deals this good they won\'t stay a secret for long!\n<h3>\n					985</h3>\nCLUB MEMBERS\n<h3>\n					40</h3>\nKM TRACKS\n<h3>\n					125</h3>\nINSTRUCTORS\n<h3>\n					30</h3>\nbelow Celsius\n<h3>Clients say</h3>\nI now know why it’s the leader of the pack in the pow board revolution.\n<cite>DICK FACEFuckyou, Norway</cite>\n<img src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/1a.png\" alt=\"DICK FACE\">\nWhen a community comes together and stands behind the individuals who shape our sport.\n<cite>STEVE HARRISSquamish, BC</cite>\n<img src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/1c.png\" alt=\"STEVE HARRIS\">\nNothing short of inspirational. We love you guys, we are snowboarding.\n<cite>silvia snowSeattle, WA</cite>\n<img src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/1b.png\" alt=\"silvia snow\">\nPrevious\nNext\n<h2>get social:</h2>\n<a href=\"\" target=\"_blank\" rel=\"noopener noreferrer\">\nFacebook\n</a>\n<a href=\"\" target=\"_blank\" rel=\"noopener noreferrer\">\nTwitter\n</a>\n<a href=\"\" target=\"_blank\" rel=\"noopener noreferrer\">\nGoogle-plus\n</a>\n<a href=\"\" target=\"_blank\" rel=\"noopener noreferrer\">\nYoutube\n</a>\n<a href=\"\" target=\"_blank\" rel=\"noopener noreferrer\">\nInstagram\n</a>','test','','publish','closed','closed','','test','','','2019-09-13 04:18:05','2019-09-13 04:18:05','',0,'http://23.235.208.11/~ondisp5/wp/?page_id=25',0,'page','',0),(26,1,'2019-09-09 19:36:27','2019-09-09 19:36:27','','test','','inherit','closed','closed','','25-revision-v1','','','2019-09-09 19:36:27','2019-09-09 19:36:27','',25,'http://23.235.208.11/~ondisp5/wp/2019/09/09/25-revision-v1/',0,'revision','',0),(28,1,'2019-09-09 19:39:02','2019-09-09 19:39:02','','Snow.png','','inherit','open','closed','','snow-png','','','2019-09-09 19:39:02','2019-09-09 19:39:02','',0,'http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Snow.png',0,'attachment','image/png',0),(29,1,'2019-09-09 19:39:03','2019-09-09 19:39:03','','BG24.png','','inherit','open','closed','','bg24-png','','','2019-09-09 19:39:03','2019-09-09 19:39:03','',0,'http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/BG24.png',0,'attachment','image/png',0),(30,1,'2019-09-09 19:39:04','2019-09-09 19:39:04','','johannes-waibel-4298.png','','inherit','open','closed','','johannes-waibel-4298-png','','','2019-09-09 19:39:04','2019-09-09 19:39:04','',0,'http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/johannes-waibel-4298.png',0,'attachment','image/png',0),(31,1,'2019-09-09 19:39:05','2019-09-09 19:39:05','','lukas-neasi-65748.png','','inherit','open','closed','','lukas-neasi-65748-png','','','2019-09-09 19:39:05','2019-09-09 19:39:05','',0,'http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/lukas-neasi-65748.png',0,'attachment','image/png',0),(32,1,'2019-09-09 19:39:05','2019-09-09 19:39:05','','markos-mant-228858.png','','inherit','open','closed','','markos-mant-228858-png','','','2019-09-09 19:39:05','2019-09-09 19:39:05','',0,'http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/markos-mant-228858.png',0,'attachment','image/png',0),(33,1,'2019-09-09 19:39:06','2019-09-09 19:39:06','','mattias-olsson-160612.png','','inherit','open','closed','','mattias-olsson-160612-png','','','2019-09-09 19:39:06','2019-09-09 19:39:06','',0,'http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/mattias-olsson-160612.png',0,'attachment','image/png',0),(34,1,'2019-09-09 19:39:06','2019-09-09 19:39:06','','tomas-kodydek-7492.png','','inherit','open','closed','','tomas-kodydek-7492-png','','','2019-09-09 19:39:06','2019-09-09 19:39:06','',0,'http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/tomas-kodydek-7492.png',0,'attachment','image/png',0),(35,1,'2019-09-09 19:39:07','2019-09-09 19:39:07','','4.png','','inherit','open','closed','','4-png','','','2019-09-09 19:39:07','2019-09-09 19:39:07','',0,'http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/4.png',0,'attachment','image/png',0),(36,1,'2019-09-09 19:39:07','2019-09-09 19:39:07','','profile2.png','','inherit','open','closed','','profile2-png','','','2019-09-09 19:39:07','2019-09-09 19:39:07','',0,'http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/profile2.png',0,'attachment','image/png',0),(37,1,'2019-09-09 19:39:07','2019-09-09 19:39:07','','divider-1.png','','inherit','open','closed','','divider-1-png','','','2019-09-09 19:39:07','2019-09-09 19:39:07','',0,'http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/divider-1.png',0,'attachment','image/png',0),(38,1,'2019-09-09 19:39:09','2019-09-09 19:39:09','','1a.png','','inherit','open','closed','','1a-png','','','2019-09-09 19:39:09','2019-09-09 19:39:09','',0,'http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/1a.png',0,'attachment','image/png',0),(39,1,'2019-09-09 19:39:09','2019-09-09 19:39:09','','1c.png','','inherit','open','closed','','1c-png','','','2019-09-09 19:39:09','2019-09-09 19:39:09','',0,'http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/1c.png',0,'attachment','image/png',0),(40,1,'2019-09-09 19:39:09','2019-09-09 19:39:09','','1b.png','','inherit','open','closed','','1b-png','','','2019-09-09 19:39:09','2019-09-09 19:39:09','',0,'http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/1b.png',0,'attachment','image/png',0),(41,1,'2019-09-09 19:39:09','2019-09-09 19:39:09','','8522.png','','inherit','open','closed','','8522-png','','','2019-09-09 19:39:09','2019-09-09 19:39:09','',0,'http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/8522.png',0,'attachment','image/png',0),(43,1,'2019-09-09 22:08:08','2019-09-09 22:08:08','<h2>wipeOUT</h2>\n<img src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Snow.png\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Snow.png 1107w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Snow-300x129.png 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Snow-768x330.png 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Snow-1024x440.png 1024w\" sizes=\"(max-width: 1107px) 100vw, 1107px\" width=\"1107\" height=\"476\">\n\nNoise around us has become a bit of a mantra around here. So for 018 we’ve again applied what we’ve learnt in the past to push the needle forward in our own unique way!\n<h3>featured resorts</h3>\nServing up tips, tricks, guides and inspiration for your next outdoor adventure - we\'ve got you covered.\n\n<a href=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/johannes-waibel-4298.png\" data-elementor-lightbox-slideshow=\"15655030\" data-elementor-lightbox-index=\"0\">\n</a>\n<a href=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/lukas-neasi-65748.png\" data-elementor-lightbox-slideshow=\"15655030\" data-elementor-lightbox-index=\"1\">\n</a>\n<a href=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/markos-mant-228858.png\" data-elementor-lightbox-slideshow=\"15655030\" data-elementor-lightbox-index=\"2\">\n</a>\n<a href=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/mattias-olsson-160612.png\" data-elementor-lightbox-slideshow=\"15655030\" data-elementor-lightbox-index=\"3\">\n</a>\n<a href=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/tomas-kodydek-7492.png\" data-elementor-lightbox-slideshow=\"15655030\" data-elementor-lightbox-index=\"4\">\n</a>\nPrevious\nNext\n<h4>Secret Season</h4>\n<h3>Outdoor skiing lodge !</h3>\nInsiders know that spring is the best time to bring your family to Snow Mountain. With unlimited sunshine, great snow conditions, and plenty of family-friendly activities to enjoy at both base areas, spring is the best-kept secret of the season. But hurry...with deals this good they won\'t stay a secret for long!\n\n<a href=\"#\" role=\"button\">\nread more\n</a>\n<img src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/profile2.png\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/profile2.png 500w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/profile2-150x150.png 150w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/profile2-300x300.png 300w\" sizes=\"(max-width: 500px) 100vw, 500px\" width=\"500\" height=\"501\">\nDOMINIC VERDANA\nowner\n<h3>about us</h3>\nInsiders know that spring is the best time to bring your family to Snow Mountain. With unlimited sunshine, great snow conditions, and plenty of family-friendly activities to enjoy at both base areas, spring is the best-kept secret of the season. But hurry...with deals this good they won\'t stay a secret for long!\n<h3>\n					985</h3>\nCLUB MEMBERS\n<h3>\n					40</h3>\nKM TRACKS\n<h3>\n					125</h3>\nINSTRUCTORS\n<h3>\n					30</h3>\nbelow Celsius\n<h3>Clients say</h3>\nI now know why it’s the leader of the pack in the pow board revolution.\n<cite>JEREMY SLADENBergen, Norway</cite>\n<img src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/1a.png\" alt=\"JEREMY SLADEN\">\nWhen a community comes together and stands behind the individuals who shape our sport.\n<cite>STEVE HARRISSquamish, BC</cite>\n<img src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/1c.png\" alt=\"STEVE HARRIS\">\nNothing short of inspirational. We love you guys, we are snowboarding.\n<cite>silvia snowSeattle, WA</cite>\n<img src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/1b.png\" alt=\"silvia snow\">\nPrevious\nNext\n<h2>get social:</h2>\n<a href=\"\" target=\"_blank\" rel=\"noopener noreferrer\">\nFacebook\n</a>\n<a href=\"\" target=\"_blank\" rel=\"noopener noreferrer\">\nTwitter\n</a>\n<a href=\"\" target=\"_blank\" rel=\"noopener noreferrer\">\nGoogle-plus\n</a>\n<a href=\"\" target=\"_blank\" rel=\"noopener noreferrer\">\nYoutube\n</a>\n<a href=\"\" target=\"_blank\" rel=\"noopener noreferrer\">\nInstagram\n</a>','test','','inherit','closed','closed','','25-revision-v1','','','2019-09-09 22:08:08','2019-09-09 22:08:08','',25,'http://23.235.208.11/~ondisp5/wp/2019/09/09/25-revision-v1/',0,'revision','',0),(42,1,'2019-09-09 19:39:40','2019-09-09 19:39:40','<h2>wipeOUT</h2>		\n										<img width=\"1107\" height=\"476\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Snow.png\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Snow.png 1107w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Snow-300x129.png 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Snow-768x330.png 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Snow-1024x440.png 1024w\" sizes=\"(max-width: 1107px) 100vw, 1107px\" />											\n			<p>Noise around us has become a bit of a mantra around here. So for 018 we’ve again applied what we’ve learnt in the past to push the needle forward in our own unique way!</p>		\n			<h3>featured resorts</h3>		\n			<p>Serving up tips, tricks, guides and inspiration for your next outdoor adventure - we\'ve got you covered.\n</p>		\n							<a href=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/johannes-waibel-4298.png\" data-elementor-lightbox-slideshow=\"15655030\" data-elementor-lightbox-index=\"0\">		\n			</a>						\n							<a href=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/lukas-neasi-65748.png\" data-elementor-lightbox-slideshow=\"15655030\" data-elementor-lightbox-index=\"1\">		\n			</a>						\n							<a href=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/markos-mant-228858.png\" data-elementor-lightbox-slideshow=\"15655030\" data-elementor-lightbox-index=\"2\">		\n			</a>						\n							<a href=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/mattias-olsson-160612.png\" data-elementor-lightbox-slideshow=\"15655030\" data-elementor-lightbox-index=\"3\">		\n			</a>						\n							<a href=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/tomas-kodydek-7492.png\" data-elementor-lightbox-slideshow=\"15655030\" data-elementor-lightbox-index=\"4\">		\n			</a>						\n							Previous\n							Next\n			<h4>Secret Season</h4>		\n			<h3>Outdoor skiing lodge !</h3>		\n			<p>Insiders know that spring is the best time to bring your family to Snow Mountain. With unlimited sunshine, great snow conditions, and plenty of family-friendly activities to enjoy at both base areas, spring is the best-kept secret of the season. But hurry...with deals this good they won\'t stay a secret for long!</p>		\n			<a href=\"#\" role=\"button\">\n						read more\n					</a>\n							<img width=\"500\" height=\"501\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/profile2.png\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/profile2.png 500w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/profile2-150x150.png 150w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/profile2-300x300.png 300w\" sizes=\"(max-width: 500px) 100vw, 500px\" />						\n													DOMINIC VERDANA\n																			owner\n			<h3>about us</h3>		\n			<p>Insiders know that spring is the best time to bring your family to Snow Mountain. With unlimited sunshine, great snow conditions, and plenty of family-friendly activities to enjoy at both base areas, spring is the best-kept secret of the season. But hurry...with deals this good they won\'t stay a secret for long!</p>		\n				<h3>\n					985\n				</h3>\n								<p>CLUB MEMBERS</p>\n				<h3>\n					40\n				</h3>\n								<p>KM TRACKS</p>\n				<h3>\n					125\n				</h3>\n								<p>INSTRUCTORS</p>\n				<h3>\n					30\n				</h3>\n								<p>below Celsius</p>\n			<h3>Clients say</h3>		\n						I now know why it’s the leader of the pack in the pow board revolution.					\n					<cite>JEREMY SLADENBergen, Norway</cite>				\n						<img src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/1a.png\" alt=\"JEREMY SLADEN\">\n						When a community comes together and stands behind the individuals who shape our sport.					\n					<cite>STEVE HARRISSquamish, BC</cite>				\n						<img src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/1c.png\" alt=\"STEVE HARRIS\">\n						Nothing short of inspirational. We love you guys, we are snowboarding.					\n					<cite>silvia snowSeattle, WA</cite>				\n						<img src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/1b.png\" alt=\"silvia snow\">\n							Previous\n							Next\n			<h2>get social:</h2>		\n							<a href=\"\" target=\"_blank\" rel=\"noopener noreferrer\">\n					Facebook\n									</a>\n							<a href=\"\" target=\"_blank\" rel=\"noopener noreferrer\">\n					Twitter\n									</a>\n							<a href=\"\" target=\"_blank\" rel=\"noopener noreferrer\">\n					Google-plus\n									</a>\n							<a href=\"\" target=\"_blank\" rel=\"noopener noreferrer\">\n					Youtube\n									</a>\n							<a href=\"\" target=\"_blank\" rel=\"noopener noreferrer\">\n					Instagram\n									</a>','test','','inherit','closed','closed','','25-revision-v1','','','2019-09-09 19:39:40','2019-09-09 19:39:40','',25,'http://23.235.208.11/~ondisp5/wp/2019/09/09/25-revision-v1/',0,'revision','',0),(46,1,'2019-09-10 01:09:55','2019-09-10 01:09:55','<h2>wipeOUT</h2>\n<img src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Snow.png\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Snow.png 1107w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Snow-300x129.png 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Snow-768x330.png 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Snow-1024x440.png 1024w\" sizes=\"(max-width: 1107px) 100vw, 1107px\" width=\"1107\" height=\"476\">\n\nNoise around us has become a bit of a mantra around here. So for 018 we’ve again applied what we’ve learnt in the past to push the needle forward in our own unique way!\n<h3>featured resorts</h3>\nServing up tips, tricks, guides and inspiration for your next outdoor adventure - we\'ve got you covered.\n\n<a href=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/johannes-waibel-4298.png\" data-elementor-lightbox-slideshow=\"15655030\" data-elementor-lightbox-index=\"0\">\n</a>\n<a href=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/lukas-neasi-65748.png\" data-elementor-lightbox-slideshow=\"15655030\" data-elementor-lightbox-index=\"1\">\n</a>\n<a href=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/markos-mant-228858.png\" data-elementor-lightbox-slideshow=\"15655030\" data-elementor-lightbox-index=\"2\">\n</a>\n<a href=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/mattias-olsson-160612.png\" data-elementor-lightbox-slideshow=\"15655030\" data-elementor-lightbox-index=\"3\">\n</a>\n<a href=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/tomas-kodydek-7492.png\" data-elementor-lightbox-slideshow=\"15655030\" data-elementor-lightbox-index=\"4\">\n</a>\nPrevious\nNext\n<h4>Secret Season</h4>\n<h3>Outdoor skiing lodge !</h3>\nInsiders know that spring is the best time to bring your family to Snow Mountain. With unlimited sunshine, great snow conditions, and plenty of family-friendly activities to enjoy at both base areas, spring is the best-kept secret of the season. But hurry...with deals this good they won\'t stay a secret for long!\n\n<a href=\"#\" role=\"button\">\nread more\n</a>\n<img src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/profile2.png\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/profile2.png 500w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/profile2-150x150.png 150w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/profile2-300x300.png 300w\" sizes=\"(max-width: 500px) 100vw, 500px\" width=\"500\" height=\"501\">\nDOMINIC VERDANA\nowner\n<h3>about us</h3>\nInsiders know that spring is the best time to bring your family to Snow Mountain. With unlimited sunshine, great snow conditions, and plenty of family-friendly activities to enjoy at both base areas, spring is the best-kept secret of the season. But hurry...with deals this good they won\'t stay a secret for long!\n<h3>\n					985</h3>\nCLUB MEMBERS\n<h3>\n					40</h3>\nKM TRACKS\n<h3>\n					125</h3>\nINSTRUCTORS\n<h3>\n					30</h3>\nbelow Celsius\n<h3>Clients say</h3>\nI now know why it’s the leader of the pack in the pow board revolution.\n<cite>DICK FACEFuckyou, Norway</cite>\n<img src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/1a.png\" alt=\"DICK FACE\">\nWhen a community comes together and stands behind the individuals who shape our sport.\n<cite>STEVE HARRISSquamish, BC</cite>\n<img src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/1c.png\" alt=\"STEVE HARRIS\">\nNothing short of inspirational. We love you guys, we are snowboarding.\n<cite>silvia snowSeattle, WA</cite>\n<img src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/1b.png\" alt=\"silvia snow\">\nPrevious\nNext\n<h2>get social:</h2>\n<a href=\"\" target=\"_blank\" rel=\"noopener noreferrer\">\nFacebook\n</a>\n<a href=\"\" target=\"_blank\" rel=\"noopener noreferrer\">\nTwitter\n</a>\n<a href=\"\" target=\"_blank\" rel=\"noopener noreferrer\">\nGoogle-plus\n</a>\n<a href=\"\" target=\"_blank\" rel=\"noopener noreferrer\">\nYoutube\n</a>\n<a href=\"\" target=\"_blank\" rel=\"noopener noreferrer\">\nInstagram\n</a>','test','','inherit','closed','closed','','25-revision-v1','','','2019-09-10 01:09:55','2019-09-10 01:09:55','',25,'http://23.235.208.11/~ondisp5/wp/2019/09/10/25-revision-v1/',0,'revision','',0),(45,1,'2019-09-09 22:18:56','2019-09-09 22:18:56','<h2>wipeOUT</h2>		\n										<img width=\"1107\" height=\"476\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Snow.png\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Snow.png 1107w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Snow-300x129.png 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Snow-768x330.png 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Snow-1024x440.png 1024w\" sizes=\"(max-width: 1107px) 100vw, 1107px\" />											\n			<p>Noise around us has become a bit of a mantra around here. So for 018 we’ve again applied what we’ve learnt in the past to push the needle forward in our own unique way!</p>		\n			<h3>featured resorts</h3>		\n			<p>Serving up tips, tricks, guides and inspiration for your next outdoor adventure - we\'ve got you covered.\n</p>		\n							<a href=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/johannes-waibel-4298.png\" data-elementor-lightbox-slideshow=\"15655030\" data-elementor-lightbox-index=\"0\">		\n			</a>						\n							<a href=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/lukas-neasi-65748.png\" data-elementor-lightbox-slideshow=\"15655030\" data-elementor-lightbox-index=\"1\">		\n			</a>						\n							<a href=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/markos-mant-228858.png\" data-elementor-lightbox-slideshow=\"15655030\" data-elementor-lightbox-index=\"2\">		\n			</a>						\n							<a href=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/mattias-olsson-160612.png\" data-elementor-lightbox-slideshow=\"15655030\" data-elementor-lightbox-index=\"3\">		\n			</a>						\n							<a href=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/tomas-kodydek-7492.png\" data-elementor-lightbox-slideshow=\"15655030\" data-elementor-lightbox-index=\"4\">		\n			</a>						\n							Previous\n							Next\n			<h4>Secret Season</h4>		\n			<h3>Outdoor skiing lodge !</h3>		\n			<p>Insiders know that spring is the best time to bring your family to Snow Mountain. With unlimited sunshine, great snow conditions, and plenty of family-friendly activities to enjoy at both base areas, spring is the best-kept secret of the season. But hurry...with deals this good they won\'t stay a secret for long!</p>		\n			<a href=\"#\" role=\"button\">\n						read more\n					</a>\n							<img width=\"500\" height=\"501\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/profile2.png\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/profile2.png 500w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/profile2-150x150.png 150w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/profile2-300x300.png 300w\" sizes=\"(max-width: 500px) 100vw, 500px\" />						\n													DOMINIC VERDANA\n																			owner\n			<h3>about us</h3>		\n			<p>Insiders know that spring is the best time to bring your family to Snow Mountain. With unlimited sunshine, great snow conditions, and plenty of family-friendly activities to enjoy at both base areas, spring is the best-kept secret of the season. But hurry...with deals this good they won\'t stay a secret for long!</p>		\n				<h3>\n					985\n				</h3>\n								<p>CLUB MEMBERS</p>\n				<h3>\n					40\n				</h3>\n								<p>KM TRACKS</p>\n				<h3>\n					125\n				</h3>\n								<p>INSTRUCTORS</p>\n				<h3>\n					30\n				</h3>\n								<p>below Celsius</p>\n			<h3>Clients say</h3>		\n						I now know why it’s the leader of the pack in the pow board revolution.					\n					<cite>DICK FACEFuckyou, Norway</cite>				\n						<img src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/1a.png\" alt=\"DICK FACE\">\n						When a community comes together and stands behind the individuals who shape our sport.					\n					<cite>STEVE HARRISSquamish, BC</cite>				\n						<img src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/1c.png\" alt=\"STEVE HARRIS\">\n						Nothing short of inspirational. We love you guys, we are snowboarding.					\n					<cite>silvia snowSeattle, WA</cite>				\n						<img src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/1b.png\" alt=\"silvia snow\">\n							Previous\n							Next\n			<h2>get social:</h2>		\n							<a href=\"\" target=\"_blank\" rel=\"noopener noreferrer\">\n					Facebook\n									</a>\n							<a href=\"\" target=\"_blank\" rel=\"noopener noreferrer\">\n					Twitter\n									</a>\n							<a href=\"\" target=\"_blank\" rel=\"noopener noreferrer\">\n					Google-plus\n									</a>\n							<a href=\"\" target=\"_blank\" rel=\"noopener noreferrer\">\n					Youtube\n									</a>\n							<a href=\"\" target=\"_blank\" rel=\"noopener noreferrer\">\n					Instagram\n									</a>','test','','inherit','closed','closed','','25-revision-v1','','','2019-09-09 22:18:56','2019-09-09 22:18:56','',25,'http://23.235.208.11/~ondisp5/wp/2019/09/09/25-revision-v1/',0,'revision','',0),(47,1,'2019-09-13 03:42:11','2019-09-13 03:42:11','','phone-x.png','','inherit','open','closed','','phone-x-png','','','2019-09-13 03:42:11','2019-09-13 03:42:11','',0,'http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/phone-x.png',0,'attachment','image/png',0),(48,1,'2019-09-13 03:43:23','2019-09-13 03:43:23','','bh3.jpg','','inherit','open','closed','','bh3-jpg','','','2019-09-13 03:43:23','2019-09-13 03:43:23','',0,'http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/bh3.jpg',0,'attachment','image/jpeg',0),(84,1,'2019-09-13 22:44:21','2019-09-13 22:44:21','<h2>#WHAT\'S COOL</h2>\n\n<hr>\n\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Integer maximus nulla a aliquet dignissim. Suspendisse potenti. Proin efficitur lacus vitae augue porta posuere.\n<h2>LIVING STANDEES HAUNTING THEATERS</h2>\n<h5>ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS</h5>\n<h1>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.</h1>\n<h4>Our company is a collective of amazing people striving to build delightful products.</h4>\nIt is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.\n\n<a href=\"#\" role=\"button\">\nRead More\n</a>','Home','','inherit','closed','closed','','5-revision-v1','','','2019-09-13 22:44:21','2019-09-13 22:44:21','',5,'http://23.235.208.11/~ondisp5/wp/2019/09/13/5-revision-v1/',0,'revision','',0),(83,1,'2019-09-13 22:43:28','2019-09-13 22:43:28','<h2>#WHAT\'S COOL</h2>		\n		<hr /><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer maximus nulla a aliquet dignissim. Suspendisse potenti. Proin efficitur lacus vitae augue porta posuere.</p>		\n			<h2>LIVING STANDEES HAUNTING THEATERS</h2>		\n			<h5>ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS</h5>		\n		<h1>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.</h1>		\n			<h4>Our company is a collective of amazing people striving to build delightful products.</h4>		\n		<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.</p>		\n			<a href=\"#\" role=\"button\">\n						Read More\n					</a>','Home','','inherit','closed','closed','','5-revision-v1','','','2019-09-13 22:43:28','2019-09-13 22:43:28','',5,'http://23.235.208.11/~ondisp5/wp/2019/09/13/5-revision-v1/',0,'revision','',0),(65,1,'2019-09-13 04:13:27','2019-09-13 04:13:27','<h2>Men in black</h2>\n\n<hr>\n\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Integer maximus nulla a aliquet dignissim. Suspendisse potenti. Proin efficitur lacus vitae augue porta posuere.\n<h2>Frequently Asked Questions</h2>\n<h5>Most frequent questions and answers</h5>\n<h4>Can I edit the files ?</h4>\nI 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.\n<h4>Is it Layered ?</h4>\nThere are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don\'t look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn\'t anything embarrassing hidden in the middle of text.\n<h4>How can I edit the masks ?</h4>\nAll the Lorem Ipsum generators on the Internet tend to repeat predefined chunks as necessary, making this the first true generator on the Internet. It uses a dictionary of over 200 Latin words, combined with a handful of model sentence structures, to generate Lorem Ipsum which looks reasonable. The generated Lorem Ipsum is therefore always free from repetition, injected humour, or non-characteristic words etc.\n<h4>What do I need to open the files ?</h4>\nContrary to popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from 45 BC, making it over 2000 years old. Richard McClintock, a Latin professor at Hampden-Sydney College in Virginia, looked up one of the more obscure Latin words\n<h4>How can I edit smart objects ?</h4>\nThe standard chunk of Lorem Ipsum used since the 1500s is reproduced below for those interested. Sections 1.10.32 and 1.10.33 from \"de Finibus Bonorum et Malorum\" by Cicero are also reproduced in their exact original form, accompanied by English versions from the 1914 translation\n<h4>Is the font free ?</h4>\nContrary to popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from 45 BC, making it over 2000 years old. Richard McClintock, a Latin professor at Hampden-Sydney College in Virginia, looked up one of the more obscure Latin words, consectetur\n<h4>Our company is a collective of amazing people striving to build delightful products.</h4>\nIt is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.\n\n<a href=\"#\" role=\"button\">\nRead More\n</a>','Home','','inherit','closed','closed','','5-revision-v1','','','2019-09-13 04:13:27','2019-09-13 04:13:27','',5,'http://23.235.208.11/~ondisp5/wp/2019/09/13/5-revision-v1/',0,'revision','',0),(49,1,'2019-09-13 03:44:12','2019-09-13 03:44:12','<h2>Men in black</h2>		\n		<hr /><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer maximus nulla a aliquet dignissim. Suspendisse potenti. Proin efficitur lacus vitae augue porta posuere.</p>		\n			<h2>Frequently Asked Questions</h2>		\n			<h5>Most frequent questions and answers</h5>		\n			<h4>Can I edit the files ?</h4>		\n		<p>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.</p>		\n			<h4>Is it Layered ?</h4>		\n		<p>There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don\'t look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn\'t anything embarrassing hidden in the middle of text.</p>		\n			<h4>How can I edit the masks ?<br></h4>		\n		<p>All the Lorem Ipsum generators on the Internet tend to repeat predefined chunks as necessary, making this the first true generator on the Internet. It uses a dictionary of over 200 Latin words, combined with a handful of model sentence structures, to generate Lorem Ipsum which looks reasonable. The generated Lorem Ipsum is therefore always free from repetition, injected humour, or non-characteristic words etc.</p>		\n			<h4>What do I need to open the files ?<br></h4>		\n		<p>Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from 45 BC, making it over 2000 years old. Richard McClintock, a Latin professor at Hampden-Sydney College in Virginia, looked up one of the more obscure Latin words</p>		\n			<h4>How can I edit smart objects ?<br></h4>		\n		<p>The standard chunk of Lorem Ipsum used since the 1500s is reproduced below for those interested. Sections 1.10.32 and 1.10.33 from \"de Finibus Bonorum et Malorum\" by Cicero are also reproduced in their exact original form, accompanied by English versions from the 1914 translation</p>		\n			<h4>Is the font free ?</h4>		\n		<p>Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from 45 BC, making it over 2000 years old. Richard McClintock, a Latin professor at Hampden-Sydney College in Virginia, looked up one of the more obscure Latin words, consectetur</p>		\n			<h4>Our company is a collective of amazing people striving to build delightful products.</h4>		\n		<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.</p>		\n			<a href=\"#\" role=\"button\">\n						Read More\n					</a>','Home','','inherit','closed','closed','','5-revision-v1','','','2019-09-13 03:44:12','2019-09-13 03:44:12','',5,'http://23.235.208.11/~ondisp5/wp/2019/09/13/5-revision-v1/',0,'revision','',0),(50,1,'2019-09-13 03:48:19','2019-09-13 03:48:19','','Theatrical_Display_V003C','','inherit','open','closed','','theatrical_display_v003c','','','2019-09-13 03:48:19','2019-09-13 03:48:19','',5,'http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Theatrical_Display_V003C.jpg',0,'attachment','image/jpeg',0),(51,1,'2019-09-13 03:48:28','2019-09-13 03:48:28','<h2>Men in black</h2>		\n		<hr /><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer maximus nulla a aliquet dignissim. Suspendisse potenti. Proin efficitur lacus vitae augue porta posuere.</p>		\n			<h2>Frequently Asked Questions</h2>		\n			<h5>Most frequent questions and answers</h5>		\n			<h4>Can I edit the files ?</h4>		\n		<p>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.</p>		\n			<h4>Is it Layered ?</h4>		\n		<p>There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don\'t look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn\'t anything embarrassing hidden in the middle of text.</p>		\n			<h4>How can I edit the masks ?<br></h4>		\n		<p>All the Lorem Ipsum generators on the Internet tend to repeat predefined chunks as necessary, making this the first true generator on the Internet. It uses a dictionary of over 200 Latin words, combined with a handful of model sentence structures, to generate Lorem Ipsum which looks reasonable. The generated Lorem Ipsum is therefore always free from repetition, injected humour, or non-characteristic words etc.</p>		\n			<h4>What do I need to open the files ?<br></h4>		\n		<p>Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from 45 BC, making it over 2000 years old. Richard McClintock, a Latin professor at Hampden-Sydney College in Virginia, looked up one of the more obscure Latin words</p>		\n			<h4>How can I edit smart objects ?<br></h4>		\n		<p>The standard chunk of Lorem Ipsum used since the 1500s is reproduced below for those interested. Sections 1.10.32 and 1.10.33 from \"de Finibus Bonorum et Malorum\" by Cicero are also reproduced in their exact original form, accompanied by English versions from the 1914 translation</p>		\n			<h4>Is the font free ?</h4>		\n		<p>Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from 45 BC, making it over 2000 years old. Richard McClintock, a Latin professor at Hampden-Sydney College in Virginia, looked up one of the more obscure Latin words, consectetur</p>		\n			<h4>Our company is a collective of amazing people striving to build delightful products.</h4>		\n		<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.</p>		\n			<a href=\"#\" role=\"button\">\n						Read More\n					</a>','Home','','inherit','closed','closed','','5-revision-v1','','','2019-09-13 03:48:28','2019-09-13 03:48:28','',5,'http://23.235.208.11/~ondisp5/wp/2019/09/13/5-revision-v1/',0,'revision','',0),(52,1,'2019-09-13 03:49:16','2019-09-13 03:49:16','<h2>Men in black</h2>		\n		<hr /><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer maximus nulla a aliquet dignissim. Suspendisse potenti. Proin efficitur lacus vitae augue porta posuere.</p>		\n			<h2>Frequently Asked Questions</h2>		\n			<h5>Most frequent questions and answers</h5>		\n			<h4>Can I edit the files ?</h4>		\n		<p>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.</p>		\n			<h4>Is it Layered ?</h4>		\n		<p>There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don\'t look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn\'t anything embarrassing hidden in the middle of text.</p>		\n			<h4>How can I edit the masks ?<br></h4>		\n		<p>All the Lorem Ipsum generators on the Internet tend to repeat predefined chunks as necessary, making this the first true generator on the Internet. It uses a dictionary of over 200 Latin words, combined with a handful of model sentence structures, to generate Lorem Ipsum which looks reasonable. The generated Lorem Ipsum is therefore always free from repetition, injected humour, or non-characteristic words etc.</p>		\n			<h4>What do I need to open the files ?<br></h4>		\n		<p>Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from 45 BC, making it over 2000 years old. Richard McClintock, a Latin professor at Hampden-Sydney College in Virginia, looked up one of the more obscure Latin words</p>		\n			<h4>How can I edit smart objects ?<br></h4>		\n		<p>The standard chunk of Lorem Ipsum used since the 1500s is reproduced below for those interested. Sections 1.10.32 and 1.10.33 from \"de Finibus Bonorum et Malorum\" by Cicero are also reproduced in their exact original form, accompanied by English versions from the 1914 translation</p>		\n			<h4>Is the font free ?</h4>		\n		<p>Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from 45 BC, making it over 2000 years old. Richard McClintock, a Latin professor at Hampden-Sydney College in Virginia, looked up one of the more obscure Latin words, consectetur</p>		\n			<h4>Our company is a collective of amazing people striving to build delightful products.</h4>		\n		<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.</p>		\n			<a href=\"#\" role=\"button\">\n						Read More\n					</a>','Home','','inherit','closed','closed','','5-revision-v1','','','2019-09-13 03:49:16','2019-09-13 03:49:16','',5,'http://23.235.208.11/~ondisp5/wp/2019/09/13/5-revision-v1/',0,'revision','',0),(53,1,'2019-09-13 03:49:39','2019-09-13 03:49:39','<h2>Men in black</h2>		\n		<hr /><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer maximus nulla a aliquet dignissim. Suspendisse potenti. Proin efficitur lacus vitae augue porta posuere.</p>		\n			<h2>Frequently Asked Questions</h2>		\n			<h5>Most frequent questions and answers</h5>		\n			<h4>Can I edit the files ?</h4>		\n		<p>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.</p>		\n			<h4>Is it Layered ?</h4>		\n		<p>There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don\'t look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn\'t anything embarrassing hidden in the middle of text.</p>		\n			<h4>How can I edit the masks ?<br></h4>		\n		<p>All the Lorem Ipsum generators on the Internet tend to repeat predefined chunks as necessary, making this the first true generator on the Internet. It uses a dictionary of over 200 Latin words, combined with a handful of model sentence structures, to generate Lorem Ipsum which looks reasonable. The generated Lorem Ipsum is therefore always free from repetition, injected humour, or non-characteristic words etc.</p>		\n			<h4>What do I need to open the files ?<br></h4>		\n		<p>Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from 45 BC, making it over 2000 years old. Richard McClintock, a Latin professor at Hampden-Sydney College in Virginia, looked up one of the more obscure Latin words</p>		\n			<h4>How can I edit smart objects ?<br></h4>		\n		<p>The standard chunk of Lorem Ipsum used since the 1500s is reproduced below for those interested. Sections 1.10.32 and 1.10.33 from \"de Finibus Bonorum et Malorum\" by Cicero are also reproduced in their exact original form, accompanied by English versions from the 1914 translation</p>		\n			<h4>Is the font free ?</h4>		\n		<p>Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from 45 BC, making it over 2000 years old. Richard McClintock, a Latin professor at Hampden-Sydney College in Virginia, looked up one of the more obscure Latin words, consectetur</p>		\n			<h4>Our company is a collective of amazing people striving to build delightful products.</h4>		\n		<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.</p>		\n			<a href=\"#\" role=\"button\">\n						Read More\n					</a>','Home','','inherit','closed','closed','','5-revision-v1','','','2019-09-13 03:49:39','2019-09-13 03:49:39','',5,'http://23.235.208.11/~ondisp5/wp/2019/09/13/5-revision-v1/',0,'revision','',0),(54,1,'2019-09-13 03:51:34','2019-09-13 03:51:34','<h2>Men in black</h2>		\n		<hr /><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer maximus nulla a aliquet dignissim. Suspendisse potenti. Proin efficitur lacus vitae augue porta posuere.</p>		\n			<h2>Frequently Asked Questions</h2>		\n			<h5>Most frequent questions and answers</h5>		\n			<h4>Can I edit the files ?</h4>		\n		<p>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.</p>		\n			<h4>Is it Layered ?</h4>		\n		<p>There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don\'t look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn\'t anything embarrassing hidden in the middle of text.</p>		\n			<h4>How can I edit the masks ?<br></h4>		\n		<p>All the Lorem Ipsum generators on the Internet tend to repeat predefined chunks as necessary, making this the first true generator on the Internet. It uses a dictionary of over 200 Latin words, combined with a handful of model sentence structures, to generate Lorem Ipsum which looks reasonable. The generated Lorem Ipsum is therefore always free from repetition, injected humour, or non-characteristic words etc.</p>		\n			<h4>What do I need to open the files ?<br></h4>		\n		<p>Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from 45 BC, making it over 2000 years old. Richard McClintock, a Latin professor at Hampden-Sydney College in Virginia, looked up one of the more obscure Latin words</p>		\n			<h4>How can I edit smart objects ?<br></h4>		\n		<p>The standard chunk of Lorem Ipsum used since the 1500s is reproduced below for those interested. Sections 1.10.32 and 1.10.33 from \"de Finibus Bonorum et Malorum\" by Cicero are also reproduced in their exact original form, accompanied by English versions from the 1914 translation</p>		\n			<h4>Is the font free ?</h4>		\n		<p>Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from 45 BC, making it over 2000 years old. Richard McClintock, a Latin professor at Hampden-Sydney College in Virginia, looked up one of the more obscure Latin words, consectetur</p>		\n			<h4>Our company is a collective of amazing people striving to build delightful products.</h4>		\n		<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.</p>		\n			<a href=\"#\" role=\"button\">\n						Read More\n					</a>','Home','','inherit','closed','closed','','5-revision-v1','','','2019-09-13 03:51:34','2019-09-13 03:51:34','',5,'http://23.235.208.11/~ondisp5/wp/2019/09/13/5-revision-v1/',0,'revision','',0),(55,1,'2019-09-13 03:52:05','2019-09-13 03:52:05','<h2>Men in black</h2>		\n		<hr /><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer maximus nulla a aliquet dignissim. Suspendisse potenti. Proin efficitur lacus vitae augue porta posuere.</p>		\n			<h2>Frequently Asked Questions</h2>		\n			<h5>Most frequent questions and answers</h5>		\n			<h4>Can I edit the files ?</h4>		\n		<p>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.</p>		\n			<h4>Is it Layered ?</h4>		\n		<p>There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don\'t look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn\'t anything embarrassing hidden in the middle of text.</p>		\n			<h4>How can I edit the masks ?<br></h4>		\n		<p>All the Lorem Ipsum generators on the Internet tend to repeat predefined chunks as necessary, making this the first true generator on the Internet. It uses a dictionary of over 200 Latin words, combined with a handful of model sentence structures, to generate Lorem Ipsum which looks reasonable. The generated Lorem Ipsum is therefore always free from repetition, injected humour, or non-characteristic words etc.</p>		\n			<h4>What do I need to open the files ?<br></h4>		\n		<p>Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from 45 BC, making it over 2000 years old. Richard McClintock, a Latin professor at Hampden-Sydney College in Virginia, looked up one of the more obscure Latin words</p>		\n			<h4>How can I edit smart objects ?<br></h4>		\n		<p>The standard chunk of Lorem Ipsum used since the 1500s is reproduced below for those interested. Sections 1.10.32 and 1.10.33 from \"de Finibus Bonorum et Malorum\" by Cicero are also reproduced in their exact original form, accompanied by English versions from the 1914 translation</p>		\n			<h4>Is the font free ?</h4>		\n		<p>Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from 45 BC, making it over 2000 years old. Richard McClintock, a Latin professor at Hampden-Sydney College in Virginia, looked up one of the more obscure Latin words, consectetur</p>		\n			<h4>Our company is a collective of amazing people striving to build delightful products.</h4>		\n		<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.</p>		\n			<a href=\"#\" role=\"button\">\n						Read More\n					</a>','Home','','inherit','closed','closed','','5-revision-v1','','','2019-09-13 03:52:05','2019-09-13 03:52:05','',5,'http://23.235.208.11/~ondisp5/wp/2019/09/13/5-revision-v1/',0,'revision','',0),(56,1,'2019-09-13 03:52:35','2019-09-13 03:52:35','<h2>Men in black</h2>		\n		<hr /><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer maximus nulla a aliquet dignissim. Suspendisse potenti. Proin efficitur lacus vitae augue porta posuere.</p>		\n			<h2>Frequently Asked Questions</h2>		\n			<h5>Most frequent questions and answers</h5>		\n			<h4>Can I edit the files ?</h4>		\n		<p>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.</p>		\n			<h4>Is it Layered ?</h4>		\n		<p>There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don\'t look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn\'t anything embarrassing hidden in the middle of text.</p>		\n			<h4>How can I edit the masks ?<br></h4>		\n		<p>All the Lorem Ipsum generators on the Internet tend to repeat predefined chunks as necessary, making this the first true generator on the Internet. It uses a dictionary of over 200 Latin words, combined with a handful of model sentence structures, to generate Lorem Ipsum which looks reasonable. The generated Lorem Ipsum is therefore always free from repetition, injected humour, or non-characteristic words etc.</p>		\n			<h4>What do I need to open the files ?<br></h4>		\n		<p>Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from 45 BC, making it over 2000 years old. Richard McClintock, a Latin professor at Hampden-Sydney College in Virginia, looked up one of the more obscure Latin words</p>		\n			<h4>How can I edit smart objects ?<br></h4>		\n		<p>The standard chunk of Lorem Ipsum used since the 1500s is reproduced below for those interested. Sections 1.10.32 and 1.10.33 from \"de Finibus Bonorum et Malorum\" by Cicero are also reproduced in their exact original form, accompanied by English versions from the 1914 translation</p>		\n			<h4>Is the font free ?</h4>		\n		<p>Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from 45 BC, making it over 2000 years old. Richard McClintock, a Latin professor at Hampden-Sydney College in Virginia, looked up one of the more obscure Latin words, consectetur</p>		\n			<h4>Our company is a collective of amazing people striving to build delightful products.</h4>		\n		<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.</p>		\n			<a href=\"#\" role=\"button\">\n						Read More\n					</a>','Home','','inherit','closed','closed','','5-revision-v1','','','2019-09-13 03:52:35','2019-09-13 03:52:35','',5,'http://23.235.208.11/~ondisp5/wp/2019/09/13/5-revision-v1/',0,'revision','',0),(57,1,'2019-09-13 03:52:52','2019-09-13 03:52:52','<h2>Men in black</h2>		\n		<hr /><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer maximus nulla a aliquet dignissim. Suspendisse potenti. Proin efficitur lacus vitae augue porta posuere.</p>		\n			<h2>Frequently Asked Questions</h2>		\n			<h5>Most frequent questions and answers</h5>		\n			<h4>Can I edit the files ?</h4>		\n		<p>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.</p>		\n			<h4>Is it Layered ?</h4>		\n		<p>There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don\'t look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn\'t anything embarrassing hidden in the middle of text.</p>		\n			<h4>How can I edit the masks ?<br></h4>		\n		<p>All the Lorem Ipsum generators on the Internet tend to repeat predefined chunks as necessary, making this the first true generator on the Internet. It uses a dictionary of over 200 Latin words, combined with a handful of model sentence structures, to generate Lorem Ipsum which looks reasonable. The generated Lorem Ipsum is therefore always free from repetition, injected humour, or non-characteristic words etc.</p>		\n			<h4>What do I need to open the files ?<br></h4>		\n		<p>Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from 45 BC, making it over 2000 years old. Richard McClintock, a Latin professor at Hampden-Sydney College in Virginia, looked up one of the more obscure Latin words</p>		\n			<h4>How can I edit smart objects ?<br></h4>		\n		<p>The standard chunk of Lorem Ipsum used since the 1500s is reproduced below for those interested. Sections 1.10.32 and 1.10.33 from \"de Finibus Bonorum et Malorum\" by Cicero are also reproduced in their exact original form, accompanied by English versions from the 1914 translation</p>		\n			<h4>Is the font free ?</h4>		\n		<p>Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from 45 BC, making it over 2000 years old. Richard McClintock, a Latin professor at Hampden-Sydney College in Virginia, looked up one of the more obscure Latin words, consectetur</p>		\n			<h4>Our company is a collective of amazing people striving to build delightful products.</h4>		\n		<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.</p>		\n			<a href=\"#\" role=\"button\">\n						Read More\n					</a>','Home','','inherit','closed','closed','','5-revision-v1','','','2019-09-13 03:52:52','2019-09-13 03:52:52','',5,'http://23.235.208.11/~ondisp5/wp/2019/09/13/5-revision-v1/',0,'revision','',0),(58,1,'2019-09-13 03:53:58','2019-09-13 03:53:58','<h2>Men in black</h2>		\n		<hr /><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer maximus nulla a aliquet dignissim. Suspendisse potenti. Proin efficitur lacus vitae augue porta posuere.</p>		\n			<h2>Frequently Asked Questions</h2>		\n			<h5>Most frequent questions and answers</h5>		\n			<h4>Can I edit the files ?</h4>		\n		<p>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.</p>		\n			<h4>Is it Layered ?</h4>		\n		<p>There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don\'t look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn\'t anything embarrassing hidden in the middle of text.</p>		\n			<h4>How can I edit the masks ?<br></h4>		\n		<p>All the Lorem Ipsum generators on the Internet tend to repeat predefined chunks as necessary, making this the first true generator on the Internet. It uses a dictionary of over 200 Latin words, combined with a handful of model sentence structures, to generate Lorem Ipsum which looks reasonable. The generated Lorem Ipsum is therefore always free from repetition, injected humour, or non-characteristic words etc.</p>		\n			<h4>What do I need to open the files ?<br></h4>		\n		<p>Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from 45 BC, making it over 2000 years old. Richard McClintock, a Latin professor at Hampden-Sydney College in Virginia, looked up one of the more obscure Latin words</p>		\n			<h4>How can I edit smart objects ?<br></h4>		\n		<p>The standard chunk of Lorem Ipsum used since the 1500s is reproduced below for those interested. Sections 1.10.32 and 1.10.33 from \"de Finibus Bonorum et Malorum\" by Cicero are also reproduced in their exact original form, accompanied by English versions from the 1914 translation</p>		\n			<h4>Is the font free ?</h4>		\n		<p>Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from 45 BC, making it over 2000 years old. Richard McClintock, a Latin professor at Hampden-Sydney College in Virginia, looked up one of the more obscure Latin words, consectetur</p>		\n			<h4>Our company is a collective of amazing people striving to build delightful products.</h4>		\n		<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.</p>		\n			<a href=\"#\" role=\"button\">\n						Read More\n					</a>','Home','','inherit','closed','closed','','5-revision-v1','','','2019-09-13 03:53:58','2019-09-13 03:53:58','',5,'http://23.235.208.11/~ondisp5/wp/2019/09/13/5-revision-v1/',0,'revision','',0),(59,1,'2019-09-13 03:56:30','2019-09-13 03:56:30','<h2>Men in black</h2>		\n		<hr /><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer maximus nulla a aliquet dignissim. Suspendisse potenti. Proin efficitur lacus vitae augue porta posuere.</p>		\n			<h2>Frequently Asked Questions</h2>		\n			<h5>Most frequent questions and answers</h5>		\n			<h4>Can I edit the files ?</h4>		\n		<p>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.</p>		\n			<h4>Is it Layered ?</h4>		\n		<p>There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don\'t look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn\'t anything embarrassing hidden in the middle of text.</p>		\n			<h4>How can I edit the masks ?<br></h4>		\n		<p>All the Lorem Ipsum generators on the Internet tend to repeat predefined chunks as necessary, making this the first true generator on the Internet. It uses a dictionary of over 200 Latin words, combined with a handful of model sentence structures, to generate Lorem Ipsum which looks reasonable. The generated Lorem Ipsum is therefore always free from repetition, injected humour, or non-characteristic words etc.</p>		\n			<h4>What do I need to open the files ?<br></h4>		\n		<p>Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from 45 BC, making it over 2000 years old. Richard McClintock, a Latin professor at Hampden-Sydney College in Virginia, looked up one of the more obscure Latin words</p>		\n			<h4>How can I edit smart objects ?<br></h4>		\n		<p>The standard chunk of Lorem Ipsum used since the 1500s is reproduced below for those interested. Sections 1.10.32 and 1.10.33 from \"de Finibus Bonorum et Malorum\" by Cicero are also reproduced in their exact original form, accompanied by English versions from the 1914 translation</p>		\n			<h4>Is the font free ?</h4>		\n		<p>Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from 45 BC, making it over 2000 years old. Richard McClintock, a Latin professor at Hampden-Sydney College in Virginia, looked up one of the more obscure Latin words, consectetur</p>		\n			<h4>Our company is a collective of amazing people striving to build delightful products.</h4>		\n		<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.</p>		\n			<a href=\"#\" role=\"button\">\n						Read More\n					</a>','Home','','inherit','closed','closed','','5-revision-v1','','','2019-09-13 03:56:30','2019-09-13 03:56:30','',5,'http://23.235.208.11/~ondisp5/wp/2019/09/13/5-revision-v1/',0,'revision','',0),(60,1,'2019-09-13 03:57:14','2019-09-13 03:57:14','<h2>Men in black</h2>		\n		<hr /><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer maximus nulla a aliquet dignissim. Suspendisse potenti. Proin efficitur lacus vitae augue porta posuere.</p>		\n			<h2>Frequently Asked Questions</h2>		\n			<h5>Most frequent questions and answers</h5>		\n			<h4>Can I edit the files ?</h4>		\n		<p>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.</p>		\n			<h4>Is it Layered ?</h4>		\n		<p>There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don\'t look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn\'t anything embarrassing hidden in the middle of text.</p>		\n			<h4>How can I edit the masks ?<br></h4>		\n		<p>All the Lorem Ipsum generators on the Internet tend to repeat predefined chunks as necessary, making this the first true generator on the Internet. It uses a dictionary of over 200 Latin words, combined with a handful of model sentence structures, to generate Lorem Ipsum which looks reasonable. The generated Lorem Ipsum is therefore always free from repetition, injected humour, or non-characteristic words etc.</p>		\n			<h4>What do I need to open the files ?<br></h4>		\n		<p>Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from 45 BC, making it over 2000 years old. Richard McClintock, a Latin professor at Hampden-Sydney College in Virginia, looked up one of the more obscure Latin words</p>		\n			<h4>How can I edit smart objects ?<br></h4>		\n		<p>The standard chunk of Lorem Ipsum used since the 1500s is reproduced below for those interested. Sections 1.10.32 and 1.10.33 from \"de Finibus Bonorum et Malorum\" by Cicero are also reproduced in their exact original form, accompanied by English versions from the 1914 translation</p>		\n			<h4>Is the font free ?</h4>		\n		<p>Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from 45 BC, making it over 2000 years old. Richard McClintock, a Latin professor at Hampden-Sydney College in Virginia, looked up one of the more obscure Latin words, consectetur</p>		\n			<h4>Our company is a collective of amazing people striving to build delightful products.</h4>		\n		<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.</p>		\n			<a href=\"#\" role=\"button\">\n						Read More\n					</a>','Home','','inherit','closed','closed','','5-revision-v1','','','2019-09-13 03:57:14','2019-09-13 03:57:14','',5,'http://23.235.208.11/~ondisp5/wp/2019/09/13/5-revision-v1/',0,'revision','',0),(61,1,'2019-09-13 03:57:58','2019-09-13 03:57:58','<h2>Men in black</h2>		\n		<hr /><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer maximus nulla a aliquet dignissim. Suspendisse potenti. Proin efficitur lacus vitae augue porta posuere.</p>		\n			<h2>Frequently Asked Questions</h2>		\n			<h5>Most frequent questions and answers</h5>		\n			<h4>Can I edit the files ?</h4>		\n		<p>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.</p>		\n			<h4>Is it Layered ?</h4>		\n		<p>There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don\'t look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn\'t anything embarrassing hidden in the middle of text.</p>		\n			<h4>How can I edit the masks ?<br></h4>		\n		<p>All the Lorem Ipsum generators on the Internet tend to repeat predefined chunks as necessary, making this the first true generator on the Internet. It uses a dictionary of over 200 Latin words, combined with a handful of model sentence structures, to generate Lorem Ipsum which looks reasonable. The generated Lorem Ipsum is therefore always free from repetition, injected humour, or non-characteristic words etc.</p>		\n			<h4>What do I need to open the files ?<br></h4>		\n		<p>Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from 45 BC, making it over 2000 years old. Richard McClintock, a Latin professor at Hampden-Sydney College in Virginia, looked up one of the more obscure Latin words</p>		\n			<h4>How can I edit smart objects ?<br></h4>		\n		<p>The standard chunk of Lorem Ipsum used since the 1500s is reproduced below for those interested. Sections 1.10.32 and 1.10.33 from \"de Finibus Bonorum et Malorum\" by Cicero are also reproduced in their exact original form, accompanied by English versions from the 1914 translation</p>		\n			<h4>Is the font free ?</h4>		\n		<p>Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from 45 BC, making it over 2000 years old. Richard McClintock, a Latin professor at Hampden-Sydney College in Virginia, looked up one of the more obscure Latin words, consectetur</p>		\n			<h4>Our company is a collective of amazing people striving to build delightful products.</h4>		\n		<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.</p>		\n			<a href=\"#\" role=\"button\">\n						Read More\n					</a>','Home','','inherit','closed','closed','','5-revision-v1','','','2019-09-13 03:57:58','2019-09-13 03:57:58','',5,'http://23.235.208.11/~ondisp5/wp/2019/09/13/5-revision-v1/',0,'revision','',0),(62,1,'2019-09-13 03:58:28','2019-09-13 03:58:28','<h2>Men in black</h2>		\n		<hr /><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer maximus nulla a aliquet dignissim. Suspendisse potenti. Proin efficitur lacus vitae augue porta posuere.</p>		\n			<h2>Frequently Asked Questions</h2>		\n			<h5>Most frequent questions and answers</h5>		\n			<h4>Can I edit the files ?</h4>		\n		<p>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.</p>		\n			<h4>Is it Layered ?</h4>		\n		<p>There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don\'t look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn\'t anything embarrassing hidden in the middle of text.</p>		\n			<h4>How can I edit the masks ?<br></h4>		\n		<p>All the Lorem Ipsum generators on the Internet tend to repeat predefined chunks as necessary, making this the first true generator on the Internet. It uses a dictionary of over 200 Latin words, combined with a handful of model sentence structures, to generate Lorem Ipsum which looks reasonable. The generated Lorem Ipsum is therefore always free from repetition, injected humour, or non-characteristic words etc.</p>		\n			<h4>What do I need to open the files ?<br></h4>		\n		<p>Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from 45 BC, making it over 2000 years old. Richard McClintock, a Latin professor at Hampden-Sydney College in Virginia, looked up one of the more obscure Latin words</p>		\n			<h4>How can I edit smart objects ?<br></h4>		\n		<p>The standard chunk of Lorem Ipsum used since the 1500s is reproduced below for those interested. Sections 1.10.32 and 1.10.33 from \"de Finibus Bonorum et Malorum\" by Cicero are also reproduced in their exact original form, accompanied by English versions from the 1914 translation</p>		\n			<h4>Is the font free ?</h4>		\n		<p>Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from 45 BC, making it over 2000 years old. Richard McClintock, a Latin professor at Hampden-Sydney College in Virginia, looked up one of the more obscure Latin words, consectetur</p>		\n			<h4>Our company is a collective of amazing people striving to build delightful products.</h4>		\n		<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.</p>		\n			<a href=\"#\" role=\"button\">\n						Read More\n					</a>','Home','','inherit','closed','closed','','5-revision-v1','','','2019-09-13 03:58:28','2019-09-13 03:58:28','',5,'http://23.235.208.11/~ondisp5/wp/2019/09/13/5-revision-v1/',0,'revision','',0),(63,1,'2019-09-13 03:59:04','2019-09-13 03:59:04','<h2>Men in black</h2>		\n		<hr /><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer maximus nulla a aliquet dignissim. Suspendisse potenti. Proin efficitur lacus vitae augue porta posuere.</p>		\n			<h2>Frequently Asked Questions</h2>		\n			<h5>Most frequent questions and answers</h5>		\n			<h4>Can I edit the files ?</h4>		\n		<p>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.</p>		\n			<h4>Is it Layered ?</h4>		\n		<p>There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don\'t look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn\'t anything embarrassing hidden in the middle of text.</p>		\n			<h4>How can I edit the masks ?<br></h4>		\n		<p>All the Lorem Ipsum generators on the Internet tend to repeat predefined chunks as necessary, making this the first true generator on the Internet. It uses a dictionary of over 200 Latin words, combined with a handful of model sentence structures, to generate Lorem Ipsum which looks reasonable. The generated Lorem Ipsum is therefore always free from repetition, injected humour, or non-characteristic words etc.</p>		\n			<h4>What do I need to open the files ?<br></h4>		\n		<p>Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from 45 BC, making it over 2000 years old. Richard McClintock, a Latin professor at Hampden-Sydney College in Virginia, looked up one of the more obscure Latin words</p>		\n			<h4>How can I edit smart objects ?<br></h4>		\n		<p>The standard chunk of Lorem Ipsum used since the 1500s is reproduced below for those interested. Sections 1.10.32 and 1.10.33 from \"de Finibus Bonorum et Malorum\" by Cicero are also reproduced in their exact original form, accompanied by English versions from the 1914 translation</p>		\n			<h4>Is the font free ?</h4>		\n		<p>Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from 45 BC, making it over 2000 years old. Richard McClintock, a Latin professor at Hampden-Sydney College in Virginia, looked up one of the more obscure Latin words, consectetur</p>		\n			<h4>Our company is a collective of amazing people striving to build delightful products.</h4>		\n		<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.</p>		\n			<a href=\"#\" role=\"button\">\n						Read More\n					</a>','Home','','inherit','closed','closed','','5-revision-v1','','','2019-09-13 03:59:04','2019-09-13 03:59:04','',5,'http://23.235.208.11/~ondisp5/wp/2019/09/13/5-revision-v1/',0,'revision','',0),(64,1,'2019-09-13 03:59:30','2019-09-13 03:59:30','<h2>Men in black</h2>		\n		<hr /><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer maximus nulla a aliquet dignissim. Suspendisse potenti. Proin efficitur lacus vitae augue porta posuere.</p>		\n			<h2>Frequently Asked Questions</h2>		\n			<h5>Most frequent questions and answers</h5>		\n			<h4>Can I edit the files ?</h4>		\n		<p>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.</p>		\n			<h4>Is it Layered ?</h4>		\n		<p>There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don\'t look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn\'t anything embarrassing hidden in the middle of text.</p>		\n			<h4>How can I edit the masks ?<br></h4>		\n		<p>All the Lorem Ipsum generators on the Internet tend to repeat predefined chunks as necessary, making this the first true generator on the Internet. It uses a dictionary of over 200 Latin words, combined with a handful of model sentence structures, to generate Lorem Ipsum which looks reasonable. The generated Lorem Ipsum is therefore always free from repetition, injected humour, or non-characteristic words etc.</p>		\n			<h4>What do I need to open the files ?<br></h4>		\n		<p>Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from 45 BC, making it over 2000 years old. Richard McClintock, a Latin professor at Hampden-Sydney College in Virginia, looked up one of the more obscure Latin words</p>		\n			<h4>How can I edit smart objects ?<br></h4>		\n		<p>The standard chunk of Lorem Ipsum used since the 1500s is reproduced below for those interested. Sections 1.10.32 and 1.10.33 from \"de Finibus Bonorum et Malorum\" by Cicero are also reproduced in their exact original form, accompanied by English versions from the 1914 translation</p>		\n			<h4>Is the font free ?</h4>		\n		<p>Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from 45 BC, making it over 2000 years old. Richard McClintock, a Latin professor at Hampden-Sydney College in Virginia, looked up one of the more obscure Latin words, consectetur</p>		\n			<h4>Our company is a collective of amazing people striving to build delightful products.</h4>		\n		<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.</p>		\n			<a href=\"#\" role=\"button\">\n						Read More\n					</a>','Home','','inherit','closed','closed','','5-revision-v1','','','2019-09-13 03:59:30','2019-09-13 03:59:30','',5,'http://23.235.208.11/~ondisp5/wp/2019/09/13/5-revision-v1/',0,'revision','',0),(75,1,'2019-09-13 04:30:10','2019-09-13 04:30:10','<h2>Men in black</h2>\n\n<hr>\n\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Integer maximus nulla a aliquet dignissim. Suspendisse potenti. Proin efficitur lacus vitae augue porta posuere.\n<h2>Frequently Asked Questions</h2>\n<h5>Most frequent questions and answers</h5>\n<h4>Can I edit the files ?</h4>\nI 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.\n<h4>Is it Layered ?</h4>\nThere are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don\'t look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn\'t anything embarrassing hidden in the middle of text.\n<h4>How can I edit the masks ?</h4>\nAll the Lorem Ipsum generators on the Internet tend to repeat predefined chunks as necessary, making this the first true generator on the Internet. It uses a dictionary of over 200 Latin words, combined with a handful of model sentence structures, to generate Lorem Ipsum which looks reasonable. The generated Lorem Ipsum is therefore always free from repetition, injected humour, or non-characteristic words etc.\n<h4>What do I need to open the files ?</h4>\nContrary to popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from 45 BC, making it over 2000 years old. Richard McClintock, a Latin professor at Hampden-Sydney College in Virginia, looked up one of the more obscure Latin words\n<h4>How can I edit smart objects ?</h4>\nThe standard chunk of Lorem Ipsum used since the 1500s is reproduced below for those interested. Sections 1.10.32 and 1.10.33 from \"de Finibus Bonorum et Malorum\" by Cicero are also reproduced in their exact original form, accompanied by English versions from the 1914 translation\n<h4>Is the font free ?</h4>\nContrary to popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from 45 BC, making it over 2000 years old. Richard McClintock, a Latin professor at Hampden-Sydney College in Virginia, looked up one of the more obscure Latin words, consectetur\n<h4>Our company is a collective of amazing people striving to build delightful products.</h4>\nIt is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.\n\n<a href=\"#\" role=\"button\">\nRead More\n</a>','Home','','inherit','closed','closed','','5-revision-v1','','','2019-09-13 04:30:10','2019-09-13 04:30:10','',5,'http://23.235.208.11/~ondisp5/wp/2019/09/13/5-revision-v1/',0,'revision','',0),(66,1,'2019-09-13 04:14:21','2019-09-13 04:14:21','<h2>Men in black</h2>		\n		<hr /><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer maximus nulla a aliquet dignissim. Suspendisse potenti. Proin efficitur lacus vitae augue porta posuere.</p>		\n			<h2>Frequently Asked Questions</h2>		\n			<h5>Most frequent questions and answers</h5>		\n			<h4>Can I edit the files ?</h4>		\n		<p>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.</p>		\n			<h4>Is it Layered ?</h4>		\n		<p>There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don\'t look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn\'t anything embarrassing hidden in the middle of text.</p>		\n			<h4>How can I edit the masks ?<br></h4>		\n		<p>All the Lorem Ipsum generators on the Internet tend to repeat predefined chunks as necessary, making this the first true generator on the Internet. It uses a dictionary of over 200 Latin words, combined with a handful of model sentence structures, to generate Lorem Ipsum which looks reasonable. The generated Lorem Ipsum is therefore always free from repetition, injected humour, or non-characteristic words etc.</p>		\n			<h4>What do I need to open the files ?<br></h4>		\n		<p>Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from 45 BC, making it over 2000 years old. Richard McClintock, a Latin professor at Hampden-Sydney College in Virginia, looked up one of the more obscure Latin words</p>		\n			<h4>How can I edit smart objects ?<br></h4>		\n		<p>The standard chunk of Lorem Ipsum used since the 1500s is reproduced below for those interested. Sections 1.10.32 and 1.10.33 from \"de Finibus Bonorum et Malorum\" by Cicero are also reproduced in their exact original form, accompanied by English versions from the 1914 translation</p>		\n			<h4>Is the font free ?</h4>		\n		<p>Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from 45 BC, making it over 2000 years old. Richard McClintock, a Latin professor at Hampden-Sydney College in Virginia, looked up one of the more obscure Latin words, consectetur</p>		\n			<h4>Our company is a collective of amazing people striving to build delightful products.</h4>		\n		<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.</p>		\n			<a href=\"#\" role=\"button\">\n						Read More\n					</a>','Home','','inherit','closed','closed','','5-revision-v1','','','2019-09-13 04:14:21','2019-09-13 04:14:21','',5,'http://23.235.208.11/~ondisp5/wp/2019/09/13/5-revision-v1/',0,'revision','',0),(67,1,'2019-09-13 04:14:48','2019-09-13 04:14:48','<h2>Men in black</h2>		\n		<hr /><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer maximus nulla a aliquet dignissim. Suspendisse potenti. Proin efficitur lacus vitae augue porta posuere.</p>		\n			<h2>Frequently Asked Questions</h2>		\n			<h5>Most frequent questions and answers</h5>		\n			<h4>Can I edit the files ?</h4>		\n		<p>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.</p>		\n			<h4>Is it Layered ?</h4>		\n		<p>There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don\'t look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn\'t anything embarrassing hidden in the middle of text.</p>		\n			<h4>How can I edit the masks ?<br></h4>		\n		<p>All the Lorem Ipsum generators on the Internet tend to repeat predefined chunks as necessary, making this the first true generator on the Internet. It uses a dictionary of over 200 Latin words, combined with a handful of model sentence structures, to generate Lorem Ipsum which looks reasonable. The generated Lorem Ipsum is therefore always free from repetition, injected humour, or non-characteristic words etc.</p>		\n			<h4>What do I need to open the files ?<br></h4>		\n		<p>Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from 45 BC, making it over 2000 years old. Richard McClintock, a Latin professor at Hampden-Sydney College in Virginia, looked up one of the more obscure Latin words</p>		\n			<h4>How can I edit smart objects ?<br></h4>		\n		<p>The standard chunk of Lorem Ipsum used since the 1500s is reproduced below for those interested. Sections 1.10.32 and 1.10.33 from \"de Finibus Bonorum et Malorum\" by Cicero are also reproduced in their exact original form, accompanied by English versions from the 1914 translation</p>		\n			<h4>Is the font free ?</h4>		\n		<p>Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from 45 BC, making it over 2000 years old. Richard McClintock, a Latin professor at Hampden-Sydney College in Virginia, looked up one of the more obscure Latin words, consectetur</p>		\n			<h4>Our company is a collective of amazing people striving to build delightful products.</h4>		\n		<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.</p>		\n			<a href=\"#\" role=\"button\">\n						Read More\n					</a>','Home','','inherit','closed','closed','','5-revision-v1','','','2019-09-13 04:14:48','2019-09-13 04:14:48','',5,'http://23.235.208.11/~ondisp5/wp/2019/09/13/5-revision-v1/',0,'revision','',0),(68,1,'2019-09-13 04:15:43','2019-09-13 04:15:43','<h2>Men in black</h2>		\n		<hr /><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer maximus nulla a aliquet dignissim. Suspendisse potenti. Proin efficitur lacus vitae augue porta posuere.</p>		\n			<h2>Frequently Asked Questions</h2>		\n			<h5>Most frequent questions and answers</h5>		\n			<h4>Can I edit the files ?</h4>		\n		<p>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.</p>		\n			<h4>Is it Layered ?</h4>		\n		<p>There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don\'t look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn\'t anything embarrassing hidden in the middle of text.</p>		\n			<h4>How can I edit the masks ?<br></h4>		\n		<p>All the Lorem Ipsum generators on the Internet tend to repeat predefined chunks as necessary, making this the first true generator on the Internet. It uses a dictionary of over 200 Latin words, combined with a handful of model sentence structures, to generate Lorem Ipsum which looks reasonable. The generated Lorem Ipsum is therefore always free from repetition, injected humour, or non-characteristic words etc.</p>		\n			<h4>What do I need to open the files ?<br></h4>		\n		<p>Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from 45 BC, making it over 2000 years old. Richard McClintock, a Latin professor at Hampden-Sydney College in Virginia, looked up one of the more obscure Latin words</p>		\n			<h4>How can I edit smart objects ?<br></h4>		\n		<p>The standard chunk of Lorem Ipsum used since the 1500s is reproduced below for those interested. Sections 1.10.32 and 1.10.33 from \"de Finibus Bonorum et Malorum\" by Cicero are also reproduced in their exact original form, accompanied by English versions from the 1914 translation</p>		\n			<h4>Is the font free ?</h4>		\n		<p>Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from 45 BC, making it over 2000 years old. Richard McClintock, a Latin professor at Hampden-Sydney College in Virginia, looked up one of the more obscure Latin words, consectetur</p>		\n			<h4>Our company is a collective of amazing people striving to build delightful products.</h4>		\n		<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.</p>		\n			<a href=\"#\" role=\"button\">\n						Read More\n					</a>','Home','','inherit','closed','closed','','5-revision-v1','','','2019-09-13 04:15:43','2019-09-13 04:15:43','',5,'http://23.235.208.11/~ondisp5/wp/2019/09/13/5-revision-v1/',0,'revision','',0),(69,1,'2019-09-13 04:15:52','2019-09-13 04:15:52','<h2>Men in black</h2>		\n		<hr /><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer maximus nulla a aliquet dignissim. Suspendisse potenti. Proin efficitur lacus vitae augue porta posuere.</p>		\n			<h2>Frequently Asked Questions</h2>		\n			<h5>Most frequent questions and answers</h5>		\n			<h4>Can I edit the files ?</h4>		\n		<p>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.</p>		\n			<h4>Is it Layered ?</h4>		\n		<p>There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don\'t look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn\'t anything embarrassing hidden in the middle of text.</p>		\n			<h4>How can I edit the masks ?<br></h4>		\n		<p>All the Lorem Ipsum generators on the Internet tend to repeat predefined chunks as necessary, making this the first true generator on the Internet. It uses a dictionary of over 200 Latin words, combined with a handful of model sentence structures, to generate Lorem Ipsum which looks reasonable. The generated Lorem Ipsum is therefore always free from repetition, injected humour, or non-characteristic words etc.</p>		\n			<h4>What do I need to open the files ?<br></h4>		\n		<p>Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from 45 BC, making it over 2000 years old. Richard McClintock, a Latin professor at Hampden-Sydney College in Virginia, looked up one of the more obscure Latin words</p>		\n			<h4>How can I edit smart objects ?<br></h4>		\n		<p>The standard chunk of Lorem Ipsum used since the 1500s is reproduced below for those interested. Sections 1.10.32 and 1.10.33 from \"de Finibus Bonorum et Malorum\" by Cicero are also reproduced in their exact original form, accompanied by English versions from the 1914 translation</p>		\n			<h4>Is the font free ?</h4>		\n		<p>Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from 45 BC, making it over 2000 years old. Richard McClintock, a Latin professor at Hampden-Sydney College in Virginia, looked up one of the more obscure Latin words, consectetur</p>		\n			<h4>Our company is a collective of amazing people striving to build delightful products.</h4>		\n		<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.</p>		\n			<a href=\"#\" role=\"button\">\n						Read More\n					</a>','Home','','inherit','closed','closed','','5-revision-v1','','','2019-09-13 04:15:52','2019-09-13 04:15:52','',5,'http://23.235.208.11/~ondisp5/wp/2019/09/13/5-revision-v1/',0,'revision','',0),(70,1,'2019-09-13 04:16:04','2019-09-13 04:16:04','<h2>Men in black</h2>		\n		<hr /><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer maximus nulla a aliquet dignissim. Suspendisse potenti. Proin efficitur lacus vitae augue porta posuere.</p>		\n			<h2>Frequently Asked Questions</h2>		\n			<h5>Most frequent questions and answers</h5>		\n			<h4>Can I edit the files ?</h4>		\n		<p>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.</p>		\n			<h4>Is it Layered ?</h4>		\n		<p>There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don\'t look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn\'t anything embarrassing hidden in the middle of text.</p>		\n			<h4>How can I edit the masks ?<br></h4>		\n		<p>All the Lorem Ipsum generators on the Internet tend to repeat predefined chunks as necessary, making this the first true generator on the Internet. It uses a dictionary of over 200 Latin words, combined with a handful of model sentence structures, to generate Lorem Ipsum which looks reasonable. The generated Lorem Ipsum is therefore always free from repetition, injected humour, or non-characteristic words etc.</p>		\n			<h4>What do I need to open the files ?<br></h4>		\n		<p>Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from 45 BC, making it over 2000 years old. Richard McClintock, a Latin professor at Hampden-Sydney College in Virginia, looked up one of the more obscure Latin words</p>		\n			<h4>How can I edit smart objects ?<br></h4>		\n		<p>The standard chunk of Lorem Ipsum used since the 1500s is reproduced below for those interested. Sections 1.10.32 and 1.10.33 from \"de Finibus Bonorum et Malorum\" by Cicero are also reproduced in their exact original form, accompanied by English versions from the 1914 translation</p>		\n			<h4>Is the font free ?</h4>		\n		<p>Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from 45 BC, making it over 2000 years old. Richard McClintock, a Latin professor at Hampden-Sydney College in Virginia, looked up one of the more obscure Latin words, consectetur</p>		\n			<h4>Our company is a collective of amazing people striving to build delightful products.</h4>		\n		<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.</p>		\n			<a href=\"#\" role=\"button\">\n						Read More\n					</a>','Home','','inherit','closed','closed','','5-revision-v1','','','2019-09-13 04:16:04','2019-09-13 04:16:04','',5,'http://23.235.208.11/~ondisp5/wp/2019/09/13/5-revision-v1/',0,'revision','',0),(71,1,'2019-09-13 04:16:29','2019-09-13 04:16:29','<h2>Men in black</h2>		\n		<hr /><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer maximus nulla a aliquet dignissim. Suspendisse potenti. Proin efficitur lacus vitae augue porta posuere.</p>		\n			<h2>Frequently Asked Questions</h2>		\n			<h5>Most frequent questions and answers</h5>		\n			<h4>Can I edit the files ?</h4>		\n		<p>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.</p>		\n			<h4>Is it Layered ?</h4>		\n		<p>There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don\'t look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn\'t anything embarrassing hidden in the middle of text.</p>		\n			<h4>How can I edit the masks ?<br></h4>		\n		<p>All the Lorem Ipsum generators on the Internet tend to repeat predefined chunks as necessary, making this the first true generator on the Internet. It uses a dictionary of over 200 Latin words, combined with a handful of model sentence structures, to generate Lorem Ipsum which looks reasonable. The generated Lorem Ipsum is therefore always free from repetition, injected humour, or non-characteristic words etc.</p>		\n			<h4>What do I need to open the files ?<br></h4>		\n		<p>Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from 45 BC, making it over 2000 years old. Richard McClintock, a Latin professor at Hampden-Sydney College in Virginia, looked up one of the more obscure Latin words</p>		\n			<h4>How can I edit smart objects ?<br></h4>		\n		<p>The standard chunk of Lorem Ipsum used since the 1500s is reproduced below for those interested. Sections 1.10.32 and 1.10.33 from \"de Finibus Bonorum et Malorum\" by Cicero are also reproduced in their exact original form, accompanied by English versions from the 1914 translation</p>		\n			<h4>Is the font free ?</h4>		\n		<p>Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from 45 BC, making it over 2000 years old. Richard McClintock, a Latin professor at Hampden-Sydney College in Virginia, looked up one of the more obscure Latin words, consectetur</p>		\n			<h4>Our company is a collective of amazing people striving to build delightful products.</h4>		\n		<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.</p>		\n			<a href=\"#\" role=\"button\">\n						Read More\n					</a>','Home','','inherit','closed','closed','','5-revision-v1','','','2019-09-13 04:16:29','2019-09-13 04:16:29','',5,'http://23.235.208.11/~ondisp5/wp/2019/09/13/5-revision-v1/',0,'revision','',0),(72,1,'2019-09-13 04:16:53','2019-09-13 04:16:53','<h2>Men in black</h2>		\n		<hr /><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer maximus nulla a aliquet dignissim. Suspendisse potenti. Proin efficitur lacus vitae augue porta posuere.</p>		\n			<h2>Frequently Asked Questions</h2>		\n			<h5>Most frequent questions and answers</h5>		\n			<h4>Can I edit the files ?</h4>		\n		<p>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.</p>		\n			<h4>Is it Layered ?</h4>		\n		<p>There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don\'t look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn\'t anything embarrassing hidden in the middle of text.</p>		\n			<h4>How can I edit the masks ?<br></h4>		\n		<p>All the Lorem Ipsum generators on the Internet tend to repeat predefined chunks as necessary, making this the first true generator on the Internet. It uses a dictionary of over 200 Latin words, combined with a handful of model sentence structures, to generate Lorem Ipsum which looks reasonable. The generated Lorem Ipsum is therefore always free from repetition, injected humour, or non-characteristic words etc.</p>		\n			<h4>What do I need to open the files ?<br></h4>		\n		<p>Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from 45 BC, making it over 2000 years old. Richard McClintock, a Latin professor at Hampden-Sydney College in Virginia, looked up one of the more obscure Latin words</p>		\n			<h4>How can I edit smart objects ?<br></h4>		\n		<p>The standard chunk of Lorem Ipsum used since the 1500s is reproduced below for those interested. Sections 1.10.32 and 1.10.33 from \"de Finibus Bonorum et Malorum\" by Cicero are also reproduced in their exact original form, accompanied by English versions from the 1914 translation</p>		\n			<h4>Is the font free ?</h4>		\n		<p>Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from 45 BC, making it over 2000 years old. Richard McClintock, a Latin professor at Hampden-Sydney College in Virginia, looked up one of the more obscure Latin words, consectetur</p>		\n			<h4>Our company is a collective of amazing people striving to build delightful products.</h4>		\n		<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.</p>		\n			<a href=\"#\" role=\"button\">\n						Read More\n					</a>','Home','','inherit','closed','closed','','5-revision-v1','','','2019-09-13 04:16:53','2019-09-13 04:16:53','',5,'http://23.235.208.11/~ondisp5/wp/2019/09/13/5-revision-v1/',0,'revision','',0),(73,1,'2019-09-13 04:22:41','2019-09-13 04:22:41','<h1>PROXIMA NOVA h1</h1>		\n			<h2>PROXIMA NOVA h2</h2>		\n			<figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"default\" data-elementor-lightbox-slideshow=\"f098f2c\" href=\'http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/1c.png\'><img width=\"150\" height=\"150\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/1c-150x150.png\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/1c-150x150.png 150w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/1c-300x300.png 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/1c.png 501w\" sizes=\"(max-width: 150px) 100vw, 150px\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"default\" data-elementor-lightbox-slideshow=\"f098f2c\" href=\'http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/1b.png\'><img width=\"150\" height=\"150\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/1b-150x150.png\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/1b-150x150.png 150w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/1b-300x300.png 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/1b.png 500w\" sizes=\"(max-width: 150px) 100vw, 150px\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"default\" data-elementor-lightbox-slideshow=\"f098f2c\" href=\'http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/8522.png\'><img width=\"150\" height=\"150\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/8522-150x150.png\" alt=\"\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"default\" data-elementor-lightbox-slideshow=\"f098f2c\" href=\'http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/4.png\'><img width=\"150\" height=\"150\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/4-150x150.png\" alt=\"\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"default\" data-elementor-lightbox-slideshow=\"f098f2c\" href=\'http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/profile2.png\'><img width=\"150\" height=\"150\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/profile2-150x150.png\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/profile2-150x150.png 150w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/profile2-300x300.png 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/profile2.png 500w\" sizes=\"(max-width: 150px) 100vw, 150px\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"default\" data-elementor-lightbox-slideshow=\"f098f2c\" href=\'http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/divider-1.png\'><img width=\"150\" height=\"150\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/divider-1-150x150.png\" alt=\"\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"default\" data-elementor-lightbox-slideshow=\"f098f2c\" href=\'http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/BG24.png\'><img width=\"150\" height=\"150\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/BG24-150x150.png\" alt=\"\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"default\" data-elementor-lightbox-slideshow=\"f098f2c\" href=\'http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/johannes-waibel-4298.png\'><img width=\"150\" height=\"150\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/johannes-waibel-4298-150x150.png\" alt=\"\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"default\" data-elementor-lightbox-slideshow=\"f098f2c\" href=\'http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/markos-mant-228858.png\'><img width=\"150\" height=\"150\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/markos-mant-228858-150x150.png\" alt=\"\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"default\" data-elementor-lightbox-slideshow=\"f098f2c\" href=\'http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/lukas-neasi-65748.png\'><img width=\"150\" height=\"150\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/lukas-neasi-65748-150x150.png\" alt=\"\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"default\" data-elementor-lightbox-slideshow=\"f098f2c\" href=\'http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/mattias-olsson-160612.png\'><img width=\"150\" height=\"150\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/mattias-olsson-160612-150x150.png\" alt=\"\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"default\" data-elementor-lightbox-slideshow=\"f098f2c\" href=\'http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/tomas-kodydek-7492.png\'><img width=\"150\" height=\"150\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/tomas-kodydek-7492-150x150.png\" alt=\"\" /></a>\n			</figure>\n				<figure><img src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/1c-150x150.png\" alt=\"1c.png\" /><figcaption>1c.png</figcaption></figure><figure><img src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/1b-150x150.png\" alt=\"1b.png\" /><figcaption>1b.png</figcaption></figure><figure><img src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/mattias-olsson-160612-150x150.png\" alt=\"mattias-olsson-160612.png\" /><figcaption>mattias-olsson-160612.png</figcaption></figure><figure><img src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/lukas-neasi-65748-150x150.png\" alt=\"lukas-neasi-65748.png\" /><figcaption>lukas-neasi-65748.png</figcaption></figure><figure><img src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/markos-mant-228858-150x150.png\" alt=\"markos-mant-228858.png\" /><figcaption>markos-mant-228858.png</figcaption></figure><figure><img src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/profile2-150x150.png\" alt=\"profile2.png\" /><figcaption>profile2.png</figcaption></figure>','test 2','','publish','closed','closed','','test-2','','','2019-09-16 20:58:36','2019-09-16 20:58:36','',0,'http://23.235.208.11/~ondisp5/wp/?page_id=73',0,'page','',0),(74,1,'2019-09-13 04:22:41','2019-09-13 04:22:41','','test 2','','inherit','closed','closed','','73-revision-v1','','','2019-09-13 04:22:41','2019-09-13 04:22:41','',73,'http://23.235.208.11/~ondisp5/wp/2019/09/13/73-revision-v1/',0,'revision','',0),(77,1,'2019-09-13 04:31:26','2019-09-13 04:31:26','<h2>Men in black</h2>\n\n<hr>\n\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Integer maximus nulla a aliquet dignissim. Suspendisse potenti. Proin efficitur lacus vitae augue porta posuere.\n<h2>Frequently Asked Questions</h2>\n<h5>Most frequent questions and answers</h5>\n<h4>Can I edit the files ?</h4>\nI 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.\n<h4>Is it Layered ?</h4>\nThere are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don\'t look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn\'t anything embarrassing hidden in the middle of text.\n<h4>How can I edit the masks ?</h4>\nAll the Lorem Ipsum generators on the Internet tend to repeat predefined chunks as necessary, making this the first true generator on the Internet. It uses a dictionary of over 200 Latin words, combined with a handful of model sentence structures, to generate Lorem Ipsum which looks reasonable. The generated Lorem Ipsum is therefore always free from repetition, injected humour, or non-characteristic words etc.\n<h4>What do I need to open the files ?</h4>\nContrary to popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from 45 BC, making it over 2000 years old. Richard McClintock, a Latin professor at Hampden-Sydney College in Virginia, looked up one of the more obscure Latin words\n<h4>How can I edit smart objects ?</h4>\nThe standard chunk of Lorem Ipsum used since the 1500s is reproduced below for those interested. Sections 1.10.32 and 1.10.33 from \"de Finibus Bonorum et Malorum\" by Cicero are also reproduced in their exact original form, accompanied by English versions from the 1914 translation\n<h4>Is the font free ?</h4>\nContrary to popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from 45 BC, making it over 2000 years old. Richard McClintock, a Latin professor at Hampden-Sydney College in Virginia, looked up one of the more obscure Latin words, consectetur\n<h4>Our company is a collective of amazing people striving to build delightful products.</h4>\nIt is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.\n\n<a href=\"#\" role=\"button\">\nRead More\n</a>','Home','','inherit','closed','closed','','5-revision-v1','','','2019-09-13 04:31:26','2019-09-13 04:31:26','',5,'http://23.235.208.11/~ondisp5/wp/2019/09/13/5-revision-v1/',0,'revision','',0),(76,1,'2019-09-13 04:31:03','2019-09-13 04:31:03','<h2>Men in black</h2>		\n		<hr /><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer maximus nulla a aliquet dignissim. Suspendisse potenti. Proin efficitur lacus vitae augue porta posuere.</p>		\n			<h2>Frequently Asked Questions</h2>		\n			<h5>Most frequent questions and answers</h5>		\n			<h4>Can I edit the files ?</h4>		\n		<p>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.</p>		\n			<h4>Is it Layered ?</h4>		\n		<p>There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don\'t look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn\'t anything embarrassing hidden in the middle of text.</p>		\n			<h4>How can I edit the masks ?<br></h4>		\n		<p>All the Lorem Ipsum generators on the Internet tend to repeat predefined chunks as necessary, making this the first true generator on the Internet. It uses a dictionary of over 200 Latin words, combined with a handful of model sentence structures, to generate Lorem Ipsum which looks reasonable. The generated Lorem Ipsum is therefore always free from repetition, injected humour, or non-characteristic words etc.</p>		\n			<h4>What do I need to open the files ?<br></h4>		\n		<p>Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from 45 BC, making it over 2000 years old. Richard McClintock, a Latin professor at Hampden-Sydney College in Virginia, looked up one of the more obscure Latin words</p>		\n			<h4>How can I edit smart objects ?<br></h4>		\n		<p>The standard chunk of Lorem Ipsum used since the 1500s is reproduced below for those interested. Sections 1.10.32 and 1.10.33 from \"de Finibus Bonorum et Malorum\" by Cicero are also reproduced in their exact original form, accompanied by English versions from the 1914 translation</p>		\n			<h4>Is the font free ?</h4>		\n		<p>Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from 45 BC, making it over 2000 years old. Richard McClintock, a Latin professor at Hampden-Sydney College in Virginia, looked up one of the more obscure Latin words, consectetur</p>		\n			<h4>Our company is a collective of amazing people striving to build delightful products.</h4>		\n		<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.</p>		\n			<a href=\"#\" role=\"button\">\n						Read More\n					</a>','Home','','inherit','closed','closed','','5-revision-v1','','','2019-09-13 04:31:03','2019-09-13 04:31:03','',5,'http://23.235.208.11/~ondisp5/wp/2019/09/13/5-revision-v1/',0,'revision','',0),(81,1,'2019-09-13 22:32:35','2019-09-13 22:32:35','<h2>#WHAT\'S COOL</h2>\n\n<hr>\n\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Integer maximus nulla a aliquet dignissim. Suspendisse potenti. Proin efficitur lacus vitae augue porta posuere.\n<h2>Frequently Asked Questions</h2>\n<h5>Most frequent questions and answers</h5>\n<h4>Can I edit the files ?</h4>\nI 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.\n<h4>Is it Layered ?</h4>\nThere are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don\'t look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn\'t anything embarrassing hidden in the middle of text.\n<h4>How can I edit the masks ?</h4>\nAll the Lorem Ipsum generators on the Internet tend to repeat predefined chunks as necessary, making this the first true generator on the Internet. It uses a dictionary of over 200 Latin words, combined with a handful of model sentence structures, to generate Lorem Ipsum which looks reasonable. The generated Lorem Ipsum is therefore always free from repetition, injected humour, or non-characteristic words etc.\n<h4>What do I need to open the files ?</h4>\nContrary to popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from 45 BC, making it over 2000 years old. Richard McClintock, a Latin professor at Hampden-Sydney College in Virginia, looked up one of the more obscure Latin words\n<h4>How can I edit smart objects ?</h4>\nThe standard chunk of Lorem Ipsum used since the 1500s is reproduced below for those interested. Sections 1.10.32 and 1.10.33 from \"de Finibus Bonorum et Malorum\" by Cicero are also reproduced in their exact original form, accompanied by English versions from the 1914 translation\n<h4>Is the font free ?</h4>\nContrary to popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from 45 BC, making it over 2000 years old. Richard McClintock, a Latin professor at Hampden-Sydney College in Virginia, looked up one of the more obscure Latin words, consectetur\n<h4>Our company is a collective of amazing people striving to build delightful products.</h4>\nIt is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.\n\n<a href=\"#\" role=\"button\">\nRead More\n</a>','Home','','inherit','closed','closed','','5-revision-v1','','','2019-09-13 22:32:35','2019-09-13 22:32:35','',5,'http://23.235.208.11/~ondisp5/wp/2019/09/13/5-revision-v1/',0,'revision','',0),(78,1,'2019-09-13 04:31:57','2019-09-13 04:31:57','<h2>Men in black</h2>		\n		<hr /><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer maximus nulla a aliquet dignissim. Suspendisse potenti. Proin efficitur lacus vitae augue porta posuere.</p>		\n			<h2>Frequently Asked Questions</h2>		\n			<h5>Most frequent questions and answers</h5>		\n			<h4>Can I edit the files ?</h4>		\n		<p>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.</p>		\n			<h4>Is it Layered ?</h4>		\n		<p>There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don\'t look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn\'t anything embarrassing hidden in the middle of text.</p>		\n			<h4>How can I edit the masks ?<br></h4>		\n		<p>All the Lorem Ipsum generators on the Internet tend to repeat predefined chunks as necessary, making this the first true generator on the Internet. It uses a dictionary of over 200 Latin words, combined with a handful of model sentence structures, to generate Lorem Ipsum which looks reasonable. The generated Lorem Ipsum is therefore always free from repetition, injected humour, or non-characteristic words etc.</p>		\n			<h4>What do I need to open the files ?<br></h4>		\n		<p>Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from 45 BC, making it over 2000 years old. Richard McClintock, a Latin professor at Hampden-Sydney College in Virginia, looked up one of the more obscure Latin words</p>		\n			<h4>How can I edit smart objects ?<br></h4>		\n		<p>The standard chunk of Lorem Ipsum used since the 1500s is reproduced below for those interested. Sections 1.10.32 and 1.10.33 from \"de Finibus Bonorum et Malorum\" by Cicero are also reproduced in their exact original form, accompanied by English versions from the 1914 translation</p>		\n			<h4>Is the font free ?</h4>		\n		<p>Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from 45 BC, making it over 2000 years old. Richard McClintock, a Latin professor at Hampden-Sydney College in Virginia, looked up one of the more obscure Latin words, consectetur</p>		\n			<h4>Our company is a collective of amazing people striving to build delightful products.</h4>		\n		<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.</p>		\n			<a href=\"#\" role=\"button\">\n						Read More\n					</a>','Home','','inherit','closed','closed','','5-revision-v1','','','2019-09-13 04:31:57','2019-09-13 04:31:57','',5,'http://23.235.208.11/~ondisp5/wp/2019/09/13/5-revision-v1/',0,'revision','',0),(80,1,'2019-09-13 04:41:48','2019-09-13 04:41:48','<h2>#WHAT\'S COOL</h2>		\n		<hr /><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer maximus nulla a aliquet dignissim. Suspendisse potenti. Proin efficitur lacus vitae augue porta posuere.</p>		\n			<h2>Frequently Asked Questions</h2>		\n			<h5>Most frequent questions and answers</h5>		\n			<h4>Can I edit the files ?</h4>		\n		<p>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.</p>		\n			<h4>Is it Layered ?</h4>		\n		<p>There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don\'t look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn\'t anything embarrassing hidden in the middle of text.</p>		\n			<h4>How can I edit the masks ?<br></h4>		\n		<p>All the Lorem Ipsum generators on the Internet tend to repeat predefined chunks as necessary, making this the first true generator on the Internet. It uses a dictionary of over 200 Latin words, combined with a handful of model sentence structures, to generate Lorem Ipsum which looks reasonable. The generated Lorem Ipsum is therefore always free from repetition, injected humour, or non-characteristic words etc.</p>		\n			<h4>What do I need to open the files ?<br></h4>		\n		<p>Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from 45 BC, making it over 2000 years old. Richard McClintock, a Latin professor at Hampden-Sydney College in Virginia, looked up one of the more obscure Latin words</p>		\n			<h4>How can I edit smart objects ?<br></h4>		\n		<p>The standard chunk of Lorem Ipsum used since the 1500s is reproduced below for those interested. Sections 1.10.32 and 1.10.33 from \"de Finibus Bonorum et Malorum\" by Cicero are also reproduced in their exact original form, accompanied by English versions from the 1914 translation</p>		\n			<h4>Is the font free ?</h4>		\n		<p>Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from 45 BC, making it over 2000 years old. Richard McClintock, a Latin professor at Hampden-Sydney College in Virginia, looked up one of the more obscure Latin words, consectetur</p>		\n			<h4>Our company is a collective of amazing people striving to build delightful products.</h4>		\n		<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.</p>		\n			<a href=\"#\" role=\"button\">\n						Read More\n					</a>','Home','','inherit','closed','closed','','5-revision-v1','','','2019-09-13 04:41:48','2019-09-13 04:41:48','',5,'http://23.235.208.11/~ondisp5/wp/2019/09/13/5-revision-v1/',0,'revision','',0),(85,1,'2019-09-13 22:51:21','2019-09-13 22:51:21','<h2>#WHAT\'S COOL</h2>		\n		<hr /><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer maximus nulla a aliquet dignissim. Suspendisse potenti. Proin efficitur lacus vitae augue porta posuere.</p>		\n			<h2>LIVING STANDEES HAUNTING THEATERS</h2>		\n			<h5>ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS</h5>		\n		<h1>INSIDIOUS - THE LAST KEY</h1>\n<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!</p>		\n			<h4>Our company is a collective of amazing people striving to build delightful products.</h4>		\n		<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.</p>		\n			<a href=\"#\" role=\"button\">\n						Read More\n					</a>','Home','','inherit','closed','closed','','5-revision-v1','','','2019-09-13 22:51:21','2019-09-13 22:51:21','',5,'http://23.235.208.11/~ondisp5/wp/2019/09/13/5-revision-v1/',0,'revision','',0),(118,1,'2019-09-14 01:07:58','2019-09-14 01:07:58','<h2>#WHAT\'S COOL</h2>\n<h2>LIVING STANDEES HAUNTING THEATERS</h2>\n<h5>ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS</h5>\n<h1>INSIDIOUS - THE LAST KEY</h1>\nMovie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!\n\n<img src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" width=\"768\" height=\"1024\">\n<img src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" width=\"768\" height=\"1024\">\nhttps://vimeo.com/257088337\n<h4>Our company is a collective of amazing people striving to build delightful products.</h4>\nIt is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.\n\n<a href=\"#\" role=\"button\">\nRead More\n</a>','Home','','inherit','closed','closed','','5-revision-v1','','','2019-09-14 01:07:58','2019-09-14 01:07:58','',5,'http://23.235.208.11/~ondisp5/wp/2019/09/14/5-revision-v1/',0,'revision','',0),(89,1,'2019-09-13 22:53:58','2019-09-13 22:53:58','<h2>#WHAT\'S COOL</h2>		\n		<hr /><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer maximus nulla a aliquet dignissim. Suspendisse potenti. Proin efficitur lacus vitae augue porta posuere.</p>		\n			<h2>LIVING STANDEES HAUNTING THEATERS</h2>		\n			<h5>ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS</h5>		\n		<h1>INSIDIOUS - THE LAST KEY</h1>\n<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!</p>		\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n			<h4>Our company is a collective of amazing people striving to build delightful products.</h4>		\n		<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.</p>		\n			<a href=\"#\" role=\"button\">\n						Read More\n					</a>','Home','','inherit','closed','closed','','5-revision-v1','','','2019-09-13 22:53:58','2019-09-13 22:53:58','',5,'http://23.235.208.11/~ondisp5/wp/2019/09/13/5-revision-v1/',0,'revision','',0),(87,1,'2019-09-13 22:53:18','2019-09-13 22:53:18','','Insidious4_pic2-1','','inherit','open','closed','','insidious4_pic2-1','','','2019-09-13 22:53:18','2019-09-13 22:53:18','',5,'http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1.jpg',0,'attachment','image/jpeg',0),(88,1,'2019-09-13 22:53:19','2019-09-13 22:53:19','','Insidious4_pic2','','inherit','open','closed','','insidious4_pic2','','','2019-09-13 22:53:19','2019-09-13 22:53:19','',5,'http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2.jpg',0,'attachment','image/jpeg',0),(90,1,'2019-09-13 22:54:51','2019-09-13 22:54:51','<h2>#WHAT\'S COOL</h2>		\n		<hr /><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer maximus nulla a aliquet dignissim. Suspendisse potenti. Proin efficitur lacus vitae augue porta posuere.</p>		\n			<h2>LIVING STANDEES HAUNTING THEATERS</h2>		\n			<h5>ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS</h5>		\n		<h1>INSIDIOUS - THE LAST KEY</h1>\n<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!</p>		\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n			<h4>Our company is a collective of amazing people striving to build delightful products.</h4>		\n		<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.</p>		\n			<a href=\"#\" role=\"button\">\n						Read More\n					</a>','Home','','inherit','closed','closed','','5-revision-v1','','','2019-09-13 22:54:51','2019-09-13 22:54:51','',5,'http://23.235.208.11/~ondisp5/wp/2019/09/13/5-revision-v1/',0,'revision','',0),(92,1,'2019-09-13 22:58:05','2019-09-13 22:58:05','<h2>#WHAT\'S COOL</h2>		\n		<hr /><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer maximus nulla a aliquet dignissim. Suspendisse potenti. Proin efficitur lacus vitae augue porta posuere.</p>		\n			<h2>LIVING STANDEES HAUNTING THEATERS</h2>		\n			<h5>ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS</h5>		\n		<h1>INSIDIOUS - THE LAST KEY</h1>\n<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!</p>		\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n			<h4>Our company is a collective of amazing people striving to build delightful products.</h4>		\n		<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.</p>		\n			<a href=\"#\" role=\"button\">\n						Read More\n					</a>','Home','','inherit','closed','closed','','5-revision-v1','','','2019-09-13 22:58:05','2019-09-13 22:58:05','',5,'http://23.235.208.11/~ondisp5/wp/2019/09/13/5-revision-v1/',0,'revision','',0),(96,1,'2019-09-13 23:36:38','2019-09-13 23:36:38','<h2>#WHAT\'S COOL</h2>\n\n<hr>\n\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Integer maximus nulla a aliquet dignissim. Suspendisse potenti. Proin efficitur lacus vitae augue porta posuere.\n<h2>LIVING STANDEES HAUNTING THEATERS</h2>\n<h5>ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS</h5>\n<h1>INSIDIOUS - THE LAST KEY</h1>\nMovie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!\n\n<img src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" width=\"768\" height=\"1024\">\n<img src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" width=\"768\" height=\"1024\">\nhttps://vimeo.com/257088337\n<h4>Our company is a collective of amazing people striving to build delightful products.</h4>\nIt is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.\n\n<a href=\"#\" role=\"button\">\nRead More\n</a>','Home','','inherit','closed','closed','','5-revision-v1','','','2019-09-13 23:36:38','2019-09-13 23:36:38','',5,'http://23.235.208.11/~ondisp5/wp/2019/09/13/5-revision-v1/',0,'revision','',0),(94,1,'2019-09-13 23:05:22','2019-09-13 23:05:22','<h2>#WHAT\'S COOL</h2>		\n		<hr /><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer maximus nulla a aliquet dignissim. Suspendisse potenti. Proin efficitur lacus vitae augue porta posuere.</p>		\n			<h2>LIVING STANDEES HAUNTING THEATERS</h2>		\n			<h5>ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS</h5>		\n		<h1>INSIDIOUS - THE LAST KEY</h1>\n<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!</p>		\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n		https://vimeo.com/235215203		\n			<h4>Our company is a collective of amazing people striving to build delightful products.</h4>		\n		<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.</p>		\n			<a href=\"#\" role=\"button\">\n						Read More\n					</a>','Home','','inherit','closed','closed','','5-revision-v1','','','2019-09-13 23:05:22','2019-09-13 23:05:22','',5,'http://23.235.208.11/~ondisp5/wp/2019/09/13/5-revision-v1/',0,'revision','',0),(95,1,'2019-09-13 23:07:30','2019-09-13 23:07:30','<h2>#WHAT\'S COOL</h2>		\n		<hr /><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer maximus nulla a aliquet dignissim. Suspendisse potenti. Proin efficitur lacus vitae augue porta posuere.</p>		\n			<h2>LIVING STANDEES HAUNTING THEATERS</h2>		\n			<h5>ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS</h5>		\n		<h1>INSIDIOUS - THE LAST KEY</h1>\n<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!</p>		\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n		https://vimeo.com/257088337		\n			<h4>Our company is a collective of amazing people striving to build delightful products.</h4>		\n		<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.</p>		\n			<a href=\"#\" role=\"button\">\n						Read More\n					</a>','Home','','inherit','closed','closed','','5-revision-v1','','','2019-09-13 23:07:30','2019-09-13 23:07:30','',5,'http://23.235.208.11/~ondisp5/wp/2019/09/13/5-revision-v1/',0,'revision','',0),(100,1,'2019-09-14 00:41:13','2019-09-14 00:41:13','<h2>#WHAT\'S COOL</h2>		\n			<h2>LIVING STANDEES HAUNTING THEATERS</h2>		\n			<h5>ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS</h5>		\n		<h1>INSIDIOUS - THE LAST KEY</h1>\n<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!</p>		\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n		https://vimeo.com/257088337		\n			<h4>Our company is a collective of amazing people striving to build delightful products.</h4>		\n		<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.</p>		\n			<a href=\"#\" role=\"button\">\n						Read More\n					</a>','Home','','inherit','closed','closed','','5-revision-v1','','','2019-09-14 00:41:13','2019-09-14 00:41:13','',5,'http://23.235.208.11/~ondisp5/wp/2019/09/14/5-revision-v1/',0,'revision','',0),(98,1,'2019-09-14 00:30:55','2019-09-14 00:30:55','<h2>#WHAT\'S COOL</h2>		\n		<hr /><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer maximus nulla a aliquet dignissim. Suspendisse potenti. Proin efficitur lacus vitae augue porta posuere.</p>		\n			<h2>LIVING STANDEES HAUNTING THEATERS</h2>		\n			<h5>ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS</h5>		\n		<h1>INSIDIOUS - THE LAST KEY</h1>\n<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!</p>		\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n		https://vimeo.com/257088337		\n			<h4>Our company is a collective of amazing people striving to build delightful products.</h4>		\n		<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.</p>		\n			<a href=\"#\" role=\"button\">\n						Read More\n					</a>','Home','','inherit','closed','closed','','5-revision-v1','','','2019-09-14 00:30:55','2019-09-14 00:30:55','',5,'http://23.235.208.11/~ondisp5/wp/2019/09/14/5-revision-v1/',0,'revision','',0),(101,1,'2019-09-14 00:43:07','2019-09-14 00:43:07','<h2>#WHAT\'S COOL</h2>		\n			<h2>LIVING STANDEES HAUNTING THEATERS</h2>		\n			<h5>ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS</h5>		\n		<h1>INSIDIOUS - THE LAST KEY</h1>\n<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!</p>		\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n		https://vimeo.com/257088337		\n			<h4>Our company is a collective of amazing people striving to build delightful products.</h4>		\n		<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.</p>		\n			<a href=\"#\" role=\"button\">\n						Read More\n					</a>','Home','','inherit','closed','closed','','5-revision-v1','','','2019-09-14 00:43:07','2019-09-14 00:43:07','',5,'http://23.235.208.11/~ondisp5/wp/2019/09/14/5-revision-v1/',0,'revision','',0),(102,1,'2019-09-14 00:44:09','2019-09-14 00:44:09','<h2>#WHAT\'S COOL</h2>		\n			<h2>LIVING STANDEES HAUNTING THEATERS</h2>		\n			<h5>ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS</h5>		\n		<h1>INSIDIOUS - THE LAST KEY</h1>\n<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!</p>		\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n		https://vimeo.com/257088337		\n			<h4>Our company is a collective of amazing people striving to build delightful products.</h4>		\n		<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.</p>		\n			<a href=\"#\" role=\"button\">\n						Read More\n					</a>','Home','','inherit','closed','closed','','5-revision-v1','','','2019-09-14 00:44:09','2019-09-14 00:44:09','',5,'http://23.235.208.11/~ondisp5/wp/2019/09/14/5-revision-v1/',0,'revision','',0),(103,1,'2019-09-14 00:45:50','2019-09-14 00:45:50','<h2>#WHAT\'S COOL</h2>		\n			<h2>LIVING STANDEES HAUNTING THEATERS</h2>		\n			<h5>ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS</h5>		\n		<h1>INSIDIOUS - THE LAST KEY</h1>\n<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!</p>		\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n		https://vimeo.com/257088337		\n			<h4>Our company is a collective of amazing people striving to build delightful products.</h4>		\n		<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.</p>		\n			<a href=\"#\" role=\"button\">\n						Read More\n					</a>','Home','','inherit','closed','closed','','5-revision-v1','','','2019-09-14 00:45:50','2019-09-14 00:45:50','',5,'http://23.235.208.11/~ondisp5/wp/2019/09/14/5-revision-v1/',0,'revision','',0),(104,1,'2019-09-14 00:46:14','2019-09-14 00:46:14','<h2>#WHAT\'S COOL</h2>		\n			<h2>LIVING STANDEES HAUNTING THEATERS</h2>		\n			<h5>ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS</h5>		\n		<h1>INSIDIOUS - THE LAST KEY</h1>\n<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!</p>		\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n		https://vimeo.com/257088337		\n			<h4>Our company is a collective of amazing people striving to build delightful products.</h4>		\n		<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.</p>		\n			<a href=\"#\" role=\"button\">\n						Read More\n					</a>','Home','','inherit','closed','closed','','5-revision-v1','','','2019-09-14 00:46:14','2019-09-14 00:46:14','',5,'http://23.235.208.11/~ondisp5/wp/2019/09/14/5-revision-v1/',0,'revision','',0),(105,1,'2019-09-14 00:47:21','2019-09-14 00:47:21','<h2>#WHAT\'S COOL</h2>		\n			<h2>LIVING STANDEES HAUNTING THEATERS</h2>		\n			<h5>ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS</h5>		\n		<h1>INSIDIOUS - THE LAST KEY</h1>\n<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!</p>		\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n		https://vimeo.com/257088337		\n			<h4>Our company is a collective of amazing people striving to build delightful products.</h4>		\n		<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.</p>		\n			<a href=\"#\" role=\"button\">\n						Read More\n					</a>','Home','','inherit','closed','closed','','5-revision-v1','','','2019-09-14 00:47:21','2019-09-14 00:47:21','',5,'http://23.235.208.11/~ondisp5/wp/2019/09/14/5-revision-v1/',0,'revision','',0),(107,1,'2019-09-14 00:49:21','2019-09-14 00:49:21','<h2>#WHAT\'S COOL</h2>		\n			<h2>LIVING STANDEES HAUNTING THEATERS</h2>		\n			<h5>ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS</h5>		\n		<h1>INSIDIOUS - THE LAST KEY</h1>\n<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!</p>		\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n		https://vimeo.com/257088337		\n			<h4>Our company is a collective of amazing people striving to build delightful products.</h4>		\n		<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.</p>		\n			<a href=\"#\" role=\"button\">\n						Read More\n					</a>','Home','','inherit','closed','closed','','5-revision-v1','','','2019-09-14 00:49:21','2019-09-14 00:49:21','',5,'http://23.235.208.11/~ondisp5/wp/2019/09/14/5-revision-v1/',0,'revision','',0),(108,1,'2019-09-14 00:49:50','2019-09-14 00:49:50','<h2>#WHAT\'S COOL</h2>		\n			<h2>LIVING STANDEES HAUNTING THEATERS</h2>		\n			<h5>ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS</h5>		\n		<h1>INSIDIOUS - THE LAST KEY</h1>\n<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!</p>		\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n		https://vimeo.com/257088337		\n			<h4>Our company is a collective of amazing people striving to build delightful products.</h4>		\n		<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.</p>		\n			<a href=\"#\" role=\"button\">\n						Read More\n					</a>','Home','','inherit','closed','closed','','5-revision-v1','','','2019-09-14 00:49:50','2019-09-14 00:49:50','',5,'http://23.235.208.11/~ondisp5/wp/2019/09/14/5-revision-v1/',0,'revision','',0),(110,1,'2019-09-14 00:52:00','2019-09-14 00:52:00','<h2>#WHAT\'S COOL</h2>		\n			<h2>LIVING STANDEES HAUNTING THEATERS</h2>		\n			<h5>ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS</h5>		\n		<h1>INSIDIOUS - THE LAST KEY</h1>\n<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!</p>		\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n		https://vimeo.com/257088337		\n			<h4>Our company is a collective of amazing people striving to build delightful products.</h4>		\n		<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.</p>		\n			<a href=\"#\" role=\"button\">\n						Read More\n					</a>','Home','','inherit','closed','closed','','5-revision-v1','','','2019-09-14 00:52:00','2019-09-14 00:52:00','',5,'http://23.235.208.11/~ondisp5/wp/2019/09/14/5-revision-v1/',0,'revision','',0),(111,1,'2019-09-14 00:53:17','2019-09-14 00:53:17','<h2>#WHAT\'S COOL</h2>		\n			<h2>LIVING STANDEES HAUNTING THEATERS</h2>		\n			<h5>ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS</h5>		\n		<h1>INSIDIOUS - THE LAST KEY</h1>\n<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!</p>		\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n		https://vimeo.com/257088337		\n			<h4>Our company is a collective of amazing people striving to build delightful products.</h4>		\n		<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.</p>		\n			<a href=\"#\" role=\"button\">\n						Read More\n					</a>','Home','','inherit','closed','closed','','5-revision-v1','','','2019-09-14 00:53:17','2019-09-14 00:53:17','',5,'http://23.235.208.11/~ondisp5/wp/2019/09/14/5-revision-v1/',0,'revision','',0),(112,1,'2019-09-14 00:55:35','2019-09-14 00:55:35','<h2>#WHAT\'S COOL</h2>		\n			<h2>LIVING STANDEES HAUNTING THEATERS</h2>		\n			<h5>ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS</h5>		\n		<h1>INSIDIOUS - THE LAST KEY</h1>\n<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!</p>		\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n		https://vimeo.com/257088337		\n			<h4>Our company is a collective of amazing people striving to build delightful products.</h4>		\n		<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.</p>		\n			<a href=\"#\" role=\"button\">\n						Read More\n					</a>','Home','','inherit','closed','closed','','5-revision-v1','','','2019-09-14 00:55:35','2019-09-14 00:55:35','',5,'http://23.235.208.11/~ondisp5/wp/2019/09/14/5-revision-v1/',0,'revision','',0),(113,1,'2019-09-14 00:56:25','2019-09-14 00:56:25','<h2>#WHAT\'S COOL</h2>		\n			<h2>LIVING STANDEES HAUNTING THEATERS</h2>		\n			<h5>ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS</h5>		\n		<h1>INSIDIOUS - THE LAST KEY</h1>\n<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!</p>		\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n		https://vimeo.com/257088337		\n			<h4>Our company is a collective of amazing people striving to build delightful products.</h4>		\n		<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.</p>		\n			<a href=\"#\" role=\"button\">\n						Read More\n					</a>','Home','','inherit','closed','closed','','5-revision-v1','','','2019-09-14 00:56:25','2019-09-14 00:56:25','',5,'http://23.235.208.11/~ondisp5/wp/2019/09/14/5-revision-v1/',0,'revision','',0),(114,1,'2019-09-14 00:57:58','2019-09-14 00:57:58','<h2>#WHAT\'S COOL</h2>		\n			<h2>LIVING STANDEES HAUNTING THEATERS</h2>		\n			<h5>ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS</h5>		\n		<h1>INSIDIOUS - THE LAST KEY</h1>\n<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!</p>		\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n		https://vimeo.com/257088337		\n			<h4>Our company is a collective of amazing people striving to build delightful products.</h4>		\n		<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.</p>		\n			<a href=\"#\" role=\"button\">\n						Read More\n					</a>','Home','','inherit','closed','closed','','5-revision-v1','','','2019-09-14 00:57:58','2019-09-14 00:57:58','',5,'http://23.235.208.11/~ondisp5/wp/2019/09/14/5-revision-v1/',0,'revision','',0),(115,1,'2019-09-14 00:58:48','2019-09-14 00:58:48','<h2>#WHAT\'S COOL</h2>		\n			<h2>LIVING STANDEES HAUNTING THEATERS</h2>		\n			<h5>ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS</h5>		\n		<h1>INSIDIOUS - THE LAST KEY</h1>\n<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!</p>		\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n		https://vimeo.com/257088337		\n			<h4>Our company is a collective of amazing people striving to build delightful products.</h4>		\n		<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.</p>		\n			<a href=\"#\" role=\"button\">\n						Read More\n					</a>','Home','','inherit','closed','closed','','5-revision-v1','','','2019-09-14 00:58:48','2019-09-14 00:58:48','',5,'http://23.235.208.11/~ondisp5/wp/2019/09/14/5-revision-v1/',0,'revision','',0),(116,1,'2019-09-14 01:00:07','2019-09-14 01:00:07','<h2>#WHAT\'S COOL</h2>		\n			<h2>LIVING STANDEES HAUNTING THEATERS</h2>		\n			<h5>ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS</h5>		\n		<h1>INSIDIOUS - THE LAST KEY</h1>\n<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!</p>		\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n		https://vimeo.com/257088337		\n			<h4>Our company is a collective of amazing people striving to build delightful products.</h4>		\n		<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.</p>		\n			<a href=\"#\" role=\"button\">\n						Read More\n					</a>','Home','','inherit','closed','closed','','5-revision-v1','','','2019-09-14 01:00:07','2019-09-14 01:00:07','',5,'http://23.235.208.11/~ondisp5/wp/2019/09/14/5-revision-v1/',0,'revision','',0),(124,1,'2019-09-14 01:54:28','2019-09-14 01:54:28','<h2>#WHAT\'S COOL</h2>\n<h2>INNOVATIONS FROM ONDISPLAY CREATIVE</h2>\n<h2>LIVING STANDEES HAUNTING THEATERS</h2>\n<h5>ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS</h5>\n<h2>INSIDIOUS - THE LAST KEY</h2>\nMovie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!\n\n<img src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" width=\"768\" height=\"1024\">\n<img src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" width=\"768\" height=\"1024\">\nhttps://vimeo.com/257088337\n<h4>Our company is a collective of amazing people striving to build delightful products.</h4>\nIt is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.\n\n<a href=\"#\" role=\"button\">\nRead More\n</a>','Home','','inherit','closed','closed','','5-revision-v1','','','2019-09-14 01:54:28','2019-09-14 01:54:28','',5,'http://23.235.208.11/~ondisp5/wp/2019/09/14/5-revision-v1/',0,'revision','',0),(119,1,'2019-09-14 01:15:28','2019-09-14 01:15:28','<h2>#WHAT\'S COOL</h2>		\n			<h2>INNOVATIONS FROM ONDISPLAY CREATIVE</h2>		\n			<h2>LIVING STANDEES HAUNTING THEATERS</h2>		\n			<h5>ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS</h5>		\n		<h1>INSIDIOUS - THE LAST KEY</h1>\n<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!</p>		\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n		https://vimeo.com/257088337		\n			<h4>Our company is a collective of amazing people striving to build delightful products.</h4>		\n		<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.</p>		\n			<a href=\"#\" role=\"button\">\n						Read More\n					</a>','Home','','inherit','closed','closed','','5-revision-v1','','','2019-09-14 01:15:28','2019-09-14 01:15:28','',5,'http://23.235.208.11/~ondisp5/wp/2019/09/14/5-revision-v1/',0,'revision','',0),(120,1,'2019-09-14 01:16:22','2019-09-14 01:16:22','<h2>#WHAT\'S COOL</h2>		\n			<h2>INNOVATIONS FROM ONDISPLAY CREATIVE</h2>		\n			<h2>LIVING STANDEES HAUNTING THEATERS</h2>		\n			<h5>ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS</h5>		\n		<h1>INSIDIOUS - THE LAST KEY</h1>\n<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!</p>		\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n		https://vimeo.com/257088337		\n			<h4>Our company is a collective of amazing people striving to build delightful products.</h4>		\n		<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.</p>		\n			<a href=\"#\" role=\"button\">\n						Read More\n					</a>','Home','','inherit','closed','closed','','5-revision-v1','','','2019-09-14 01:16:22','2019-09-14 01:16:22','',5,'http://23.235.208.11/~ondisp5/wp/2019/09/14/5-revision-v1/',0,'revision','',0),(122,1,'2019-09-14 01:21:46','2019-09-14 01:21:46','<h2>#WHAT\'S COOL</h2>		\n			<h2>INNOVATIONS FROM ONDISPLAY CREATIVE</h2>		\n			<h2>LIVING STANDEES HAUNTING THEATERS</h2>		\n			<h5>ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS</h5>		\n		<h2>INSIDIOUS - THE LAST KEY</h2>\nMovie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!		\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n		https://vimeo.com/257088337		\n			<h4>Our company is a collective of amazing people striving to build delightful products.</h4>		\n		<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.</p>		\n			<a href=\"#\" role=\"button\">\n						Read More\n					</a>','Home','','inherit','closed','closed','','5-revision-v1','','','2019-09-14 01:21:46','2019-09-14 01:21:46','',5,'http://23.235.208.11/~ondisp5/wp/2019/09/14/5-revision-v1/',0,'revision','',0),(123,1,'2019-09-14 01:47:48','2019-09-14 01:47:48','<h2>#WHAT\'S COOL</h2>		\n			<h2>INNOVATIONS FROM ONDISPLAY CREATIVE</h2>		\n			<h2>LIVING STANDEES HAUNTING THEATERS</h2>		\n			<h5>ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS</h5>		\n			<h2>INSIDIOUS - THE LAST KEY</h2>		\n		<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!</p>		\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n		https://vimeo.com/257088337		\n			<h4>Our company is a collective of amazing people striving to build delightful products.</h4>		\n		<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.</p>		\n			<a href=\"#\" role=\"button\">\n						Read More\n					</a>','Home','','inherit','closed','closed','','5-revision-v1','','','2019-09-14 01:47:48','2019-09-14 01:47:48','',5,'http://23.235.208.11/~ondisp5/wp/2019/09/14/5-revision-v1/',0,'revision','',0),(131,1,'2019-09-14 13:38:48','2019-09-14 13:38:48','<h2>#WHAT\'S COOL</h2>\n<h2>INNOVATIONS FROM ONDISPLAY CREATIVE</h2>\n<h2>LIVING STANDEES HAUNTING THEATERS</h2>\n<h5>ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS</h5>\n<h2>INSIDIOUS - THE LAST KEY</h2>\nMovie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!\n\n<img src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" width=\"768\" height=\"1024\">\n<img src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" width=\"768\" height=\"1024\">\nhttps://vimeo.com/257088337\n<h4>Our company is a collective of amazing people striving to build delightful products.</h4>\nIt is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.\n\n<a href=\"#\" role=\"button\">\nRead More\n</a>','Home','','inherit','closed','closed','','5-revision-v1','','','2019-09-14 13:38:48','2019-09-14 13:38:48','',5,'http://23.235.208.11/~ondisp5/wp/2019/09/14/5-revision-v1/',0,'revision','',0),(125,1,'2019-09-14 01:56:27','2019-09-14 01:56:27','<h2>#WHAT\'S COOL</h2>		\n			<h2>INNOVATIONS FROM ONDISPLAY CREATIVE</h2>		\n			<h2>LIVING STANDEES HAUNTING THEATERS</h2>		\n			<h5>ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS</h5>		\n			<h2>INSIDIOUS - THE LAST KEY</h2>		\n		<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!</p>		\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n		https://vimeo.com/257088337		\n			<h4>Our company is a collective of amazing people striving to build delightful products.</h4>		\n		<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.</p>		\n			<a href=\"#\" role=\"button\">\n						Read More\n					</a>','Home','','inherit','closed','closed','','5-revision-v1','','','2019-09-14 01:56:27','2019-09-14 01:56:27','',5,'http://23.235.208.11/~ondisp5/wp/2019/09/14/5-revision-v1/',0,'revision','',0),(126,1,'2019-09-14 01:56:53','2019-09-14 01:56:53','<h2>#WHAT\'S COOL</h2>		\n			<h2>INNOVATIONS FROM ONDISPLAY CREATIVE</h2>		\n			<h2>LIVING STANDEES HAUNTING THEATERS</h2>		\n			<h5>ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS</h5>		\n			<h2>INSIDIOUS - THE LAST KEY</h2>		\n		<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!</p>		\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n		https://vimeo.com/257088337		\n			<h4>Our company is a collective of amazing people striving to build delightful products.</h4>		\n		<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.</p>		\n			<a href=\"#\" role=\"button\">\n						Read More\n					</a>','Home','','inherit','closed','closed','','5-revision-v1','','','2019-09-14 01:56:53','2019-09-14 01:56:53','',5,'http://23.235.208.11/~ondisp5/wp/2019/09/14/5-revision-v1/',0,'revision','',0),(127,1,'2019-09-14 02:01:17','2019-09-14 02:01:17','<h2>#WHAT\'S COOL</h2>		\n			<h2>INNOVATIONS FROM ONDISPLAY CREATIVE</h2>		\n			<h2>LIVING STANDEES HAUNTING THEATERS</h2>		\n			<h5>ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS</h5>		\n			<h2>INSIDIOUS - THE LAST KEY</h2>		\n		<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!</p>		\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n		https://vimeo.com/257088337		\n			<h4>Our company is a collective of amazing people striving to build delightful products.</h4>		\n		<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.</p>		\n			<a href=\"#\" role=\"button\">\n						Read More\n					</a>','Home','','inherit','closed','closed','','5-revision-v1','','','2019-09-14 02:01:17','2019-09-14 02:01:17','',5,'http://23.235.208.11/~ondisp5/wp/2019/09/14/5-revision-v1/',0,'revision','',0),(128,1,'2019-09-14 02:02:39','2019-09-14 02:02:39','<h2>#WHAT\'S COOL</h2>		\n			<h2>INNOVATIONS FROM ONDISPLAY CREATIVE</h2>		\n			<h2>LIVING STANDEES HAUNTING THEATERS</h2>		\n			<h5>ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS</h5>		\n			<h2>INSIDIOUS - THE LAST KEY</h2>		\n		<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!</p>		\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n		https://vimeo.com/257088337		\n			<h4>Our company is a collective of amazing people striving to build delightful products.</h4>		\n		<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.</p>		\n			<a href=\"#\" role=\"button\">\n						Read More\n					</a>','Home','','inherit','closed','closed','','5-revision-v1','','','2019-09-14 02:02:39','2019-09-14 02:02:39','',5,'http://23.235.208.11/~ondisp5/wp/2019/09/14/5-revision-v1/',0,'revision','',0),(129,1,'2019-09-14 02:03:02','2019-09-14 02:03:02','<h2>#WHAT\'S COOL</h2>		\n			<h2>INNOVATIONS FROM ONDISPLAY CREATIVE</h2>		\n			<h2>LIVING STANDEES HAUNTING THEATERS</h2>		\n			<h5>ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS</h5>		\n			<h2>INSIDIOUS - THE LAST KEY</h2>		\n		<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!</p>		\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n		https://vimeo.com/257088337		\n			<h4>Our company is a collective of amazing people striving to build delightful products.</h4>		\n		<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.</p>		\n			<a href=\"#\" role=\"button\">\n						Read More\n					</a>','Home','','inherit','closed','closed','','5-revision-v1','','','2019-09-14 02:03:02','2019-09-14 02:03:02','',5,'http://23.235.208.11/~ondisp5/wp/2019/09/14/5-revision-v1/',0,'revision','',0),(130,1,'2019-09-14 02:03:39','2019-09-14 02:03:39','<h2>#WHAT\'S COOL</h2>		\n			<h2>INNOVATIONS FROM ONDISPLAY CREATIVE</h2>		\n			<h2>LIVING STANDEES HAUNTING THEATERS</h2>		\n			<h5>ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS</h5>		\n			<h2>INSIDIOUS - THE LAST KEY</h2>		\n		<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!</p>		\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n		https://vimeo.com/257088337		\n			<h4>Our company is a collective of amazing people striving to build delightful products.</h4>		\n		<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.</p>		\n			<a href=\"#\" role=\"button\">\n						Read More\n					</a>','Home','','inherit','closed','closed','','5-revision-v1','','','2019-09-14 02:03:39','2019-09-14 02:03:39','',5,'http://23.235.208.11/~ondisp5/wp/2019/09/14/5-revision-v1/',0,'revision','',0),(133,1,'2019-09-14 14:40:01','2019-09-14 14:40:01','{\n    \"astra-settings[body-font-family]\": {\n        \"value\": \"\'Omnes-Pro\',omnes-pro,sans-serif\",\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2019-09-14 14:37:59\"\n    },\n    \"astra-settings[body-font-weight]\": {\n        \"value\": \"400\",\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2019-09-14 14:37:59\"\n    },\n    \"astra-settings[body-text-transform]\": {\n        \"value\": \"none\",\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2019-09-14 14:37:59\"\n    },\n    \"astra-settings[font-size-body]\": {\n        \"value\": {\n            \"desktop\": \"14\",\n            \"tablet\": \"\",\n            \"mobile\": \"\",\n            \"desktop-unit\": \"px\",\n            \"tablet-unit\": \"px\",\n            \"mobile-unit\": \"px\"\n        },\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2019-09-14 14:38:59\"\n    }\n}','','','trash','closed','closed','','33fe9969-69aa-4291-982d-92da08e3f70c','','','2019-09-14 14:40:01','2019-09-14 14:40:01','',0,'http://23.235.208.11/~ondisp5/wp/?p=133',0,'customize_changeset','',0),(134,1,'2019-09-14 14:41:03','2019-09-14 14:41:03','{\n    \"astra-settings[headings-font-family]\": {\n        \"value\": \"\'Proxima-Nova\',proxima-nova,sans-serif\",\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2019-09-14 14:40:59\"\n    },\n    \"astra-settings[headings-font-weight]\": {\n        \"value\": \"600\",\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2019-09-14 14:40:59\"\n    }\n}','','','trash','closed','closed','','66e714f7-1fd4-41c8-b878-186b69206eee','','','2019-09-14 14:41:03','2019-09-14 14:41:03','',0,'http://23.235.208.11/~ondisp5/wp/?p=134',0,'customize_changeset','',0),(150,1,'2019-09-14 15:26:07','2019-09-14 15:26:07','<h2>#WHAT\'S COOL</h2>\n<h2>INNOVATIONS FROM ONDISPLAY CREATIVE</h2>\n<h2>LIVING STANDEES HAUNTING THEATERS</h2>\n<h5>ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS</h5>\n<h2>INSIDIOUS - THE LAST KEY</h2>\nMovie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!\n\n<img src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" width=\"768\" height=\"1024\">\n<img src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" width=\"768\" height=\"1024\">\nhttps://vimeo.com/257088337\n<h4>Our company is a collective of amazing people striving to build delightful products.</h4>\nIt is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.\n\n<a href=\"#\" role=\"button\">\nRead More\n</a>','Home','','inherit','closed','closed','','5-revision-v1','','','2019-09-14 15:26:07','2019-09-14 15:26:07','',5,'http://23.235.208.11/~ondisp5/wp/2019/09/14/5-revision-v1/',0,'revision','',0),(135,1,'2019-09-14 14:42:48','2019-09-14 14:42:48','<h2>#WHAT\'S COOL</h2>		\n			<h2>INNOVATIONS FROM ONDISPLAY CREATIVE</h2>		\n			<h2>LIVING STANDEES HAUNTING THEATERS</h2>		\n			<h5>ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS</h5>		\n			<h2>INSIDIOUS - THE LAST KEY</h2>		\n		<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!</p>		\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n		https://vimeo.com/257088337		\n			<h4>Our company is a collective of amazing people striving to build delightful products.</h4>		\n		<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.</p>		\n			<a href=\"#\" role=\"button\">\n						Read More\n					</a>','Home','','inherit','closed','closed','','5-revision-v1','','','2019-09-14 14:42:48','2019-09-14 14:42:48','',5,'http://23.235.208.11/~ondisp5/wp/2019/09/14/5-revision-v1/',0,'revision','',0),(136,1,'2019-09-14 14:44:27','2019-09-14 14:44:27','{\n    \"astra-settings[headings-font-family]\": {\n        \"value\": \"\'ABeeZee\', sans-serif\",\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2019-09-14 14:44:27\"\n    },\n    \"astra-settings[headings-font-weight]\": {\n        \"value\": \"400\",\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2019-09-14 14:44:27\"\n    },\n    \"astra-settings[headings-text-transform]\": {\n        \"value\": \"none\",\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2019-09-14 14:44:27\"\n    }\n}','','','trash','closed','closed','','a0126f49-9650-40da-8695-5e5866e01170','','','2019-09-14 14:44:27','2019-09-14 14:44:27','',0,'http://23.235.208.11/~ondisp5/wp/2019/09/14/a0126f49-9650-40da-8695-5e5866e01170/',0,'customize_changeset','',0),(512,1,'2019-09-23 03:09:32','2019-09-23 03:09:32','<h2>#WHAT\'S COOL</h2>\n<h2>INNOVATIONS FROM ONDISPLAY CREATIVE</h2>\n<h1>LIVING STANDEES HAUNTING THEATERS</h1>\n<h3>ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS</h3>\n<h2>INSIDIOUS – THE LAST KEY</h2>\nMovie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!\n\n<img src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" width=\"768\" height=\"1024\">\n<img src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" width=\"768\" height=\"1024\">\nhttps://vimeo.com/257088337\n<h2>INSIDIOUS CHAPTER 3</h2>\nOnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.\n\n<img src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset.jpeg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset.jpeg 1000w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-300x240.jpeg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-768x614.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" width=\"1000\" height=\"800\">\nhttps://vimeo.com/130807026\n<h1>VIRTUAL REALITY EXPERIENCE</h1>\n<h2>SPIDER-MAN HOMECOMING DISPLAY</h2>\nSubmerse yourself in the world of your friendly neighborhood Spider-Man in this fun and thrilling VR Theatrical Display.&nbsp;&nbsp;Based on the all-new 2017 film, the Spider-Man Homecoming VR Experience is a first-person look through the eyes of Spidey himself.\n\n<img src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-1024x711.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-1024x711.jpg 1024w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-300x208.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-768x533.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" width=\"1024\" height=\"711\">\n<img src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834.jpg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834-225x300.jpg 225w\" sizes=\"(max-width: 750px) 100vw, 750px\" width=\"750\" height=\"1000\">\n<img src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788.jpg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788-150x150.jpg 150w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788-300x300.jpg 300w\" sizes=\"(max-width: 750px) 100vw, 750px\" width=\"750\" height=\"750\">\n<h2>THE STRANGERS PREY AT NIGHT</h2>\n<h2>GRAND FORMAT PHOTO-OP STANDEE</h2>\n<h1>MARKETING AT ITS FINEST, TAILORED FOR SOCIAL MEDIA</h1>\nThis theatrical display allows fans to take photos with Dollface, Pin-up Girl, the Man in the Mask and share their photos on social media.\n\n<img src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003.jpg 942w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003-300x224.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003-768x573.jpg 768w\" sizes=\"(max-width: 942px) 100vw, 942px\" width=\"942\" height=\"703\">\n<img src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-950x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-950x1024.jpg 950w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-278x300.jpg 278w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-768x828.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n.jpg 1000w\" sizes=\"(max-width: 950px) 100vw, 950px\" width=\"950\" height=\"1024\">\n<img src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-1024x576.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-1024x576.jpg 1024w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-300x169.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-768x432.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01.jpg 1280w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" width=\"1024\" height=\"576\">\n<h4>Our company is a collective of amazing people striving to build delightful products.</h4>\nIt is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.\n\n<a href=\"#\" role=\"button\">\nRead More\n</a>','Home','','inherit','closed','closed','','5-revision-v1','','','2019-09-23 03:09:32','2019-09-23 03:09:32','',5,'http://23.235.208.11/~ondisp5/wp/2019/09/23/5-revision-v1/',0,'revision','',0),(504,1,'2019-09-22 00:13:36','2019-09-22 00:13:36','<h2>#WHAT\'S COOL</h2>		\n			<h2>INNOVATIONS FROM ONDISPLAY CREATIVE</h2>		\n			<h1>LIVING STANDEES HAUNTING THEATERS</h1>		\n			<h3>ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS</h3>		\n			<h2>INSIDIOUS – THE LAST KEY</h2>		\n		<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!</p>		\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n		https://vimeo.com/257088337		\n			<h2>INSIDIOUS CHAPTER 3</h2>		\n		<p>OnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.</p>		\n										<img width=\"1000\" height=\"800\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset.jpeg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset.jpeg 1000w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-300x240.jpeg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-768x614.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />											\n		https://vimeo.com/130807026		\n			<h1>VIRTUAL REALITY EXPERIENCE</h1>		\n			<h2>SPIDER-MAN HOMECOMING DISPLAY</h2>		\n		<p>Submerse yourself in the world of your friendly neighborhood Spider-Man in this fun and thrilling VR Theatrical Display.  Based on the all-new 2017 film, the Spider-Man Homecoming VR Experience is a first-person look through the eyes of Spidey himself.</p>		\n										<img width=\"1024\" height=\"711\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-1024x711.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-1024x711.jpg 1024w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-300x208.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-768x533.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n										<img width=\"750\" height=\"1000\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834.jpg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834-225x300.jpg 225w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n										<img width=\"750\" height=\"750\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788.jpg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788-150x150.jpg 150w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788-300x300.jpg 300w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n			<h2>THE STRANGERS PREY AT NIGHT</h2>		\n			<h2>GRAND FORMAT PHOTO-OP STANDEE</h2>		\n			<h1>MARKETING AT ITS FINEST, TAILORED FOR SOCIAL MEDIA</h1>		\n		<p>This theatrical display allows fans to take photos with Dollface, Pin-up Girl, the Man in the Mask and share their photos on social media.</p>		\n										<img width=\"942\" height=\"703\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003.jpg 942w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003-300x224.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003-768x573.jpg 768w\" sizes=\"(max-width: 942px) 100vw, 942px\" />											\n										<img width=\"950\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-950x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-950x1024.jpg 950w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-278x300.jpg 278w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-768x828.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n.jpg 1000w\" sizes=\"(max-width: 950px) 100vw, 950px\" />											\n										<img width=\"1024\" height=\"576\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-1024x576.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-1024x576.jpg 1024w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-300x169.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-768x432.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01.jpg 1280w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n			<h4>Our company is a collective of amazing people striving to build delightful products.</h4>		\n		<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.</p>		\n			<a href=\"#\" role=\"button\">\n						Read More\n					</a>','Home','','inherit','closed','closed','','5-revision-v1','','','2019-09-22 00:13:36','2019-09-22 00:13:36','',5,'http://23.235.208.11/~ondisp5/wp/2019/09/22/5-revision-v1/',0,'revision','',0),(139,1,'2019-09-14 15:03:51','2019-09-14 15:03:51','<h1>PROXIMA NOVA h1</h1>','test 2','','inherit','closed','closed','','73-revision-v1','','','2019-09-14 15:03:51','2019-09-14 15:03:51','',73,'http://23.235.208.11/~ondisp5/wp/2019/09/14/73-revision-v1/',0,'revision','',0),(140,1,'2019-09-14 15:05:28','2019-09-14 15:05:28','<h1>PROXIMA NOVA h1</h1>		\n			<h2>PROXIMA NOVA h2</h2>','test 2','','inherit','closed','closed','','73-revision-v1','','','2019-09-14 15:05:28','2019-09-14 15:05:28','',73,'http://23.235.208.11/~ondisp5/wp/2019/09/14/73-revision-v1/',0,'revision','',0),(141,1,'2019-09-14 15:06:06','2019-09-14 15:06:06','<h1>PROXIMA NOVA h1</h1>\n<h2>PROXIMA NOVA h2</h2>','test 2','','inherit','closed','closed','','73-revision-v1','','','2019-09-14 15:06:06','2019-09-14 15:06:06','',73,'http://23.235.208.11/~ondisp5/wp/2019/09/14/73-revision-v1/',0,'revision','',0),(142,1,'2019-09-14 15:10:22','2019-09-14 15:10:22','{\n    \"astra-settings[headings-font-family]\": {\n        \"value\": \"\'Proxima-Nova\',proxima-nova,sans-serif\",\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2019-09-14 15:10:22\"\n    },\n    \"astra-settings[headings-font-weight]\": {\n        \"value\": \"700\",\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2019-09-14 15:10:22\"\n    },\n    \"astra-settings[headings-text-transform]\": {\n        \"value\": \"none\",\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2019-09-14 15:10:22\"\n    }\n}','','','trash','closed','closed','','20be1166-22b3-4b9e-9858-e3366e5fa531','','','2019-09-14 15:10:22','2019-09-14 15:10:22','',0,'http://23.235.208.11/~ondisp5/wp/2019/09/14/20be1166-22b3-4b9e-9858-e3366e5fa531/',0,'customize_changeset','',0),(143,1,'2019-09-14 15:10:39','2019-09-14 15:10:39','{\n    \"astra-settings[font-size-h1]\": {\n        \"value\": {\n            \"desktop\": \"58\",\n            \"tablet\": \"\",\n            \"mobile\": \"\",\n            \"desktop-unit\": \"px\",\n            \"tablet-unit\": \"px\",\n            \"mobile-unit\": \"px\"\n        },\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2019-09-14 15:10:39\"\n    }\n}','','','trash','closed','closed','','e4f44acd-62fd-4d3e-a8b8-63aed3ac1a6e','','','2019-09-14 15:10:39','2019-09-14 15:10:39','',0,'http://23.235.208.11/~ondisp5/wp/2019/09/14/e4f44acd-62fd-4d3e-a8b8-63aed3ac1a6e/',0,'customize_changeset','',0),(144,1,'2019-09-14 15:17:50','2019-09-14 15:17:50','{\n    \"astra-settings[headings-font-weight]\": {\n        \"value\": \"600\",\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2019-09-14 15:17:50\"\n    }\n}','','','trash','closed','closed','','ec2e43b3-eafd-4b1c-a372-895ba82c399d','','','2019-09-14 15:17:50','2019-09-14 15:17:50','',0,'http://23.235.208.11/~ondisp5/wp/2019/09/14/ec2e43b3-eafd-4b1c-a372-895ba82c399d/',0,'customize_changeset','',0),(145,1,'2019-09-14 15:18:51','2019-09-14 15:18:51','{\n    \"astra-settings[headings-font-family]\": {\n        \"value\": \"inherit\",\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2019-09-14 15:18:40\"\n    },\n    \"astra-settings[headings-font-weight]\": {\n        \"value\": \"inherit\",\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2019-09-14 15:18:40\"\n    }\n}','','','trash','closed','closed','','5dfdb6d5-07a5-4911-83b2-af9d5ad47e10','','','2019-09-14 15:18:51','2019-09-14 15:18:51','',0,'http://23.235.208.11/~ondisp5/wp/?p=145',0,'customize_changeset','',0),(146,1,'2019-09-14 15:19:37','2019-09-14 15:19:37','{\n    \"astra-settings[body-font-family]\": {\n        \"value\": \"inherit\",\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2019-09-14 15:19:37\"\n    },\n    \"astra-settings[body-font-weight]\": {\n        \"value\": \"inherit\",\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2019-09-14 15:19:37\"\n    }\n}','','','trash','closed','closed','','b4f7ab17-47eb-4482-a472-f722b2a59d87','','','2019-09-14 15:19:37','2019-09-14 15:19:37','',0,'http://23.235.208.11/~ondisp5/wp/2019/09/14/b4f7ab17-47eb-4482-a472-f722b2a59d87/',0,'customize_changeset','',0),(147,1,'2019-09-14 15:23:50','2019-09-14 15:23:50','{\n    \"astra-settings[body-font-family]\": {\n        \"value\": \"\'Proxima-Nova\',proxima-nova,sans-serif\",\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2019-09-14 15:23:50\"\n    },\n    \"astra-settings[body-font-weight]\": {\n        \"value\": \"400\",\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2019-09-14 15:23:50\"\n    },\n    \"astra-settings[headings-font-family]\": {\n        \"value\": \"\'Proxima-Nova\',proxima-nova,sans-serif\",\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2019-09-14 15:23:50\"\n    },\n    \"astra-settings[headings-font-weight]\": {\n        \"value\": \"600\",\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2019-09-14 15:23:50\"\n    }\n}','','','trash','closed','closed','','9542e8ef-0940-4e2a-8cb4-2ab4d1f73660','','','2019-09-14 15:23:50','2019-09-14 15:23:50','',0,'http://23.235.208.11/~ondisp5/wp/2019/09/14/9542e8ef-0940-4e2a-8cb4-2ab4d1f73660/',0,'customize_changeset','',0),(148,1,'2019-09-14 15:24:07','2019-09-14 15:24:07','{\n    \"astra-settings[body-font-family]\": {\n        \"value\": \"\'Omnes-Pro\',omnes-pro,sans-serif\",\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2019-09-14 15:24:07\"\n    },\n    \"astra-settings[body-font-weight]\": {\n        \"value\": \"400\",\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2019-09-14 15:24:07\"\n    },\n    \"astra-settings[font-size-body]\": {\n        \"value\": {\n            \"desktop\": \"12\",\n            \"tablet\": \"\",\n            \"mobile\": \"\",\n            \"desktop-unit\": \"px\",\n            \"tablet-unit\": \"px\",\n            \"mobile-unit\": \"px\"\n        },\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2019-09-14 15:24:07\"\n    }\n}','','','trash','closed','closed','','84d69a0b-ab8f-4a50-8df6-e2cf47e467c5','','','2019-09-14 15:24:07','2019-09-14 15:24:07','',0,'http://23.235.208.11/~ondisp5/wp/2019/09/14/84d69a0b-ab8f-4a50-8df6-e2cf47e467c5/',0,'customize_changeset','',0),(149,1,'2019-09-14 15:24:21','2019-09-14 15:24:21','{\n    \"astra-settings[font-size-body]\": {\n        \"value\": {\n            \"desktop\": \"14\",\n            \"tablet\": \"\",\n            \"mobile\": \"\",\n            \"desktop-unit\": \"px\",\n            \"tablet-unit\": \"px\",\n            \"mobile-unit\": \"px\"\n        },\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2019-09-14 15:24:21\"\n    }\n}','','','trash','closed','closed','','22b358e0-86c3-43b7-bc42-dc70a006f88b','','','2019-09-14 15:24:21','2019-09-14 15:24:21','',0,'http://23.235.208.11/~ondisp5/wp/2019/09/14/22b358e0-86c3-43b7-bc42-dc70a006f88b/',0,'customize_changeset','',0),(153,1,'2019-09-14 15:33:34','2019-09-14 15:33:34','<h2>#WHAT\'S COOL</h2>\n<h2>INNOVATIONS FROM ONDISPLAY CREATIVE</h2>\n<h2>LIVING STANDEES HAUNTING THEATERS</h2>\n<h3>ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS</h3>\n<h2>INSIDIOUS - THE LAST KEY</h2>\nMovie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!\n\n<img src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" width=\"768\" height=\"1024\">\n<img src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" width=\"768\" height=\"1024\">\nhttps://vimeo.com/257088337\n<h4>Our company is a collective of amazing people striving to build delightful products.</h4>\nIt is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.\n\n<a href=\"#\" role=\"button\">\nRead More\n</a>','Home','','inherit','closed','closed','','5-revision-v1','','','2019-09-14 15:33:34','2019-09-14 15:33:34','',5,'http://23.235.208.11/~ondisp5/wp/2019/09/14/5-revision-v1/',0,'revision','',0),(151,1,'2019-09-14 15:28:28','2019-09-14 15:28:28','<h2>#WHAT\'S COOL</h2>		\n			<h2>INNOVATIONS FROM ONDISPLAY CREATIVE</h2>		\n			<h2>LIVING STANDEES HAUNTING THEATERS</h2>		\n			<h3>ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS</h3>		\n			<h2>INSIDIOUS - THE LAST KEY</h2>		\n		<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!</p>		\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n		https://vimeo.com/257088337		\n			<h4>Our company is a collective of amazing people striving to build delightful products.</h4>		\n		<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.</p>		\n			<a href=\"#\" role=\"button\">\n						Read More\n					</a>','Home','','inherit','closed','closed','','5-revision-v1','','','2019-09-14 15:28:28','2019-09-14 15:28:28','',5,'http://23.235.208.11/~ondisp5/wp/2019/09/14/5-revision-v1/',0,'revision','',0),(152,1,'2019-09-14 15:32:41','2019-09-14 15:32:41','{\n    \"astra-settings[font-size-h2]\": {\n        \"value\": {\n            \"desktop\": \"2.0\",\n            \"tablet\": \"\",\n            \"mobile\": \"\",\n            \"desktop-unit\": \"em\",\n            \"tablet-unit\": \"px\",\n            \"mobile-unit\": \"px\"\n        },\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2019-09-14 15:32:41\"\n    },\n    \"astra-settings[font-size-h3]\": {\n        \"value\": {\n            \"desktop\": \"1.3\",\n            \"tablet\": \"\",\n            \"mobile\": \"\",\n            \"desktop-unit\": \"em\",\n            \"tablet-unit\": \"px\",\n            \"mobile-unit\": \"px\"\n        },\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2019-09-14 15:30:53\"\n    }\n}','','','trash','closed','closed','','542112f1-b39d-4591-a42c-25ba97ee8075','','','2019-09-14 15:32:41','2019-09-14 15:32:41','',0,'http://23.235.208.11/~ondisp5/wp/?p=152',0,'customize_changeset','',0),(159,1,'2019-09-14 15:50:32','2019-09-14 15:50:32','<h2>#WHAT\'S COOL</h2>\n<h2>INNOVATIONS FROM ONDISPLAY CREATIVE</h2>\n<h2>LIVING STANDEES HAUNTING THEATERS</h2>\n<h3>ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS</h3>\n<h3>INSIDIOUS - THE LAST KEY</h3>\nMovie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!\n\n<img src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" width=\"768\" height=\"1024\">\n<img src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" width=\"768\" height=\"1024\">\nhttps://vimeo.com/257088337\n<h4>Our company is a collective of amazing people striving to build delightful products.</h4>\nIt is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.\n\n<a href=\"#\" role=\"button\">\nRead More\n</a>','Home','','inherit','closed','closed','','5-revision-v1','','','2019-09-14 15:50:32','2019-09-14 15:50:32','',5,'http://23.235.208.11/~ondisp5/wp/2019/09/14/5-revision-v1/',0,'revision','',0),(154,1,'2019-09-14 15:40:23','2019-09-14 15:40:23','<h2>#WHAT\'S COOL</h2>		\n			<h2>INNOVATIONS FROM ONDISPLAY CREATIVE</h2>		\n			<h2>LIVING STANDEES HAUNTING THEATERS</h2>		\n			<h3>ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS</h3>		\n			<h2>INSIDIOUS - THE LAST KEY</h2>		\n		<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!</p>		\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n		https://vimeo.com/257088337		\n			<h4>Our company is a collective of amazing people striving to build delightful products.</h4>		\n		<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.</p>		\n			<a href=\"#\" role=\"button\">\n						Read More\n					</a>','Home','','inherit','closed','closed','','5-revision-v1','','','2019-09-14 15:40:23','2019-09-14 15:40:23','',5,'http://23.235.208.11/~ondisp5/wp/2019/09/14/5-revision-v1/',0,'revision','',0),(156,1,'2019-09-14 15:44:34','2019-09-14 15:44:34','<h2>#WHAT\'S COOL</h2>		\n			<h2>INNOVATIONS FROM ONDISPLAY CREATIVE</h2>		\n			<h2>LIVING STANDEES HAUNTING THEATERS</h2>		\n			<h3>ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS</h3>		\n			<h3>INSIDIOUS - THE LAST KEY</h3>		\n		<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!</p>		\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n		https://vimeo.com/257088337		\n			<h4>Our company is a collective of amazing people striving to build delightful products.</h4>		\n		<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.</p>		\n			<a href=\"#\" role=\"button\">\n						Read More\n					</a>','Home','','inherit','closed','closed','','5-revision-v1','','','2019-09-14 15:44:34','2019-09-14 15:44:34','',5,'http://23.235.208.11/~ondisp5/wp/2019/09/14/5-revision-v1/',0,'revision','',0),(155,1,'2019-09-14 15:41:46','2019-09-14 15:41:46','<h2>#WHAT\'S COOL</h2>		\n			<h2>INNOVATIONS FROM ONDISPLAY CREATIVE</h2>		\n			<h2>LIVING STANDEES HAUNTING THEATERS</h2>		\n			<h3>ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS</h3>		\n			<h2>INSIDIOUS - THE LAST KEY</h2>		\n		<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!</p>		\n			<h3>Add Your Heading Text Here</h3>		\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n		https://vimeo.com/257088337		\n			<h4>Our company is a collective of amazing people striving to build delightful products.</h4>		\n		<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.</p>		\n			<a href=\"#\" role=\"button\">\n						Read More\n					</a>','Home','','inherit','closed','closed','','5-revision-v1','','','2019-09-14 15:41:46','2019-09-14 15:41:46','',5,'http://23.235.208.11/~ondisp5/wp/2019/09/14/5-revision-v1/',0,'revision','',0),(157,1,'2019-09-14 15:48:10','2019-09-14 15:48:10','<h2>#WHAT\'S COOL</h2>		\n			<h2>INNOVATIONS FROM ONDISPLAY CREATIVE</h2>		\n			<h2>LIVING STANDEES HAUNTING THEATERS</h2>		\n			<h3>ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS</h3>		\n			<h3>INSIDIOUS - THE LAST KEY</h3>		\n		<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!</p>		\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n		https://vimeo.com/257088337		\n			<h4>Our company is a collective of amazing people striving to build delightful products.</h4>		\n		<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.</p>		\n			<a href=\"#\" role=\"button\">\n						Read More\n					</a>','Home','','inherit','closed','closed','','5-revision-v1','','','2019-09-14 15:48:10','2019-09-14 15:48:10','',5,'http://23.235.208.11/~ondisp5/wp/2019/09/14/5-revision-v1/',0,'revision','',0),(158,1,'2019-09-14 15:50:20','2019-09-14 15:50:20','{\n    \"astra-settings[font-size-h1]\": {\n        \"value\": {\n            \"desktop\": \"2\",\n            \"tablet\": \"\",\n            \"mobile\": \"\",\n            \"desktop-unit\": \"em\",\n            \"tablet-unit\": \"px\",\n            \"mobile-unit\": \"px\"\n        },\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2019-09-14 15:50:20\"\n    },\n    \"astra-settings[font-size-h2]\": {\n        \"value\": {\n            \"desktop\": \"1.3\",\n            \"tablet\": \"\",\n            \"mobile\": \"\",\n            \"desktop-unit\": \"em\",\n            \"tablet-unit\": \"px\",\n            \"mobile-unit\": \"px\"\n        },\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2019-09-14 15:50:20\"\n    },\n    \"astra-settings[font-size-h3]\": {\n        \"value\": {\n            \"desktop\": \"1.5\",\n            \"tablet\": \"\",\n            \"mobile\": \"\",\n            \"desktop-unit\": \"em\",\n            \"tablet-unit\": \"px\",\n            \"mobile-unit\": \"px\"\n        },\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2019-09-14 15:50:20\"\n    }\n}','','','trash','closed','closed','','22137333-f409-4676-8d78-953b2b45eac4','','','2019-09-14 15:50:20','2019-09-14 15:50:20','',0,'http://23.235.208.11/~ondisp5/wp/2019/09/14/22137333-f409-4676-8d78-953b2b45eac4/',0,'customize_changeset','',0),(163,1,'2019-09-14 15:53:43','2019-09-14 15:53:43','<h2>#WHAT\'S COOL</h2>\n<h2>INNOVATIONS FROM ONDISPLAY CREATIVE</h2>\n<h1>LIVING STANDEES HAUNTING THEATERS</h1>\n<h3>ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS</h3>\n<h2>INSIDIOUS - THE LAST KEY</h2>\nMovie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!\n\n<img src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" width=\"768\" height=\"1024\">\n<img src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" width=\"768\" height=\"1024\">\nhttps://vimeo.com/257088337\n<h4>Our company is a collective of amazing people striving to build delightful products.</h4>\nIt is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.\n\n<a href=\"#\" role=\"button\">\nRead More\n</a>','Home','','inherit','closed','closed','','5-revision-v1','','','2019-09-14 15:53:43','2019-09-14 15:53:43','',5,'http://23.235.208.11/~ondisp5/wp/2019/09/14/5-revision-v1/',0,'revision','',0),(160,1,'2019-09-14 15:51:19','2019-09-14 15:51:19','<h2>#WHAT\'S COOL</h2>		\n			<h2>INNOVATIONS FROM ONDISPLAY CREATIVE</h2>		\n			<h1>LIVING STANDEES HAUNTING THEATERS</h1>		\n			<h3>ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS</h3>		\n			<h2>INSIDIOUS - THE LAST KEY</h2>		\n		<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!</p>		\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n		https://vimeo.com/257088337		\n			<h4>Our company is a collective of amazing people striving to build delightful products.</h4>		\n		<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.</p>		\n			<a href=\"#\" role=\"button\">\n						Read More\n					</a>','Home','','inherit','closed','closed','','5-revision-v1','','','2019-09-14 15:51:19','2019-09-14 15:51:19','',5,'http://23.235.208.11/~ondisp5/wp/2019/09/14/5-revision-v1/',0,'revision','',0),(161,1,'2019-09-14 15:51:53','2019-09-14 15:51:53','<h2>#WHAT\'S COOL</h2>		\n			<h2>INNOVATIONS FROM ONDISPLAY CREATIVE</h2>		\n			<h1>LIVING STANDEES HAUNTING THEATERS</h1>		\n			<h3>ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS</h3>		\n			<h2>INSIDIOUS - THE LAST KEY</h2>		\n		<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!</p>		\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n		https://vimeo.com/257088337		\n			<h4>Our company is a collective of amazing people striving to build delightful products.</h4>		\n		<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.</p>		\n			<a href=\"#\" role=\"button\">\n						Read More\n					</a>','Home','','inherit','closed','closed','','5-revision-v1','','','2019-09-14 15:51:53','2019-09-14 15:51:53','',5,'http://23.235.208.11/~ondisp5/wp/2019/09/14/5-revision-v1/',0,'revision','',0),(162,1,'2019-09-14 15:53:10','2019-09-14 15:53:10','{\n    \"astra-settings[font-size-h2]\": {\n        \"value\": {\n            \"desktop\": \"1.4\",\n            \"tablet\": \"\",\n            \"mobile\": \"\",\n            \"desktop-unit\": \"em\",\n            \"tablet-unit\": \"px\",\n            \"mobile-unit\": \"px\"\n        },\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2019-09-14 15:53:10\"\n    },\n    \"astra-settings[font-size-h3]\": {\n        \"value\": {\n            \"desktop\": \"1.3\",\n            \"tablet\": \"\",\n            \"mobile\": \"\",\n            \"desktop-unit\": \"em\",\n            \"tablet-unit\": \"px\",\n            \"mobile-unit\": \"px\"\n        },\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2019-09-14 15:53:10\"\n    }\n}','','','trash','closed','closed','','7f7196df-7398-4868-909f-fe5673c528b0','','','2019-09-14 15:53:10','2019-09-14 15:53:10','',0,'http://23.235.208.11/~ondisp5/wp/2019/09/14/7f7196df-7398-4868-909f-fe5673c528b0/',0,'customize_changeset','',0),(177,1,'2019-09-14 16:25:50','2019-09-14 16:25:50','<h2>#WHAT\'S COOL</h2>\n<h2>INNOVATIONS FROM ONDISPLAY CREATIVE</h2>\n<h1>LIVING STANDEES HAUNTING THEATERS</h1>\n<h3>ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS</h3>\n<h2>INSIDIOUS - THE LAST KEY</h2>\nMovie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!\n\n<img src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" width=\"768\" height=\"1024\">\n<img src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" width=\"768\" height=\"1024\">\nhttps://vimeo.com/257088337\n<h4>Our company is a collective of amazing people striving to build delightful products.</h4>\nIt is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.\n\n<a href=\"#\" role=\"button\">\nRead More\n</a>','Home','','inherit','closed','closed','','5-revision-v1','','','2019-09-14 16:25:50','2019-09-14 16:25:50','',5,'http://23.235.208.11/~ondisp5/wp/2019/09/14/5-revision-v1/',0,'revision','',0),(164,1,'2019-09-14 15:54:16','2019-09-14 15:54:16','<h2>#WHAT\'S COOL</h2>		\n			<h2>INNOVATIONS FROM ONDISPLAY CREATIVE</h2>		\n			<h1>LIVING STANDEES HAUNTING THEATERS</h1>		\n			<h3>ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS</h3>		\n			<h2>INSIDIOUS - THE LAST KEY</h2>		\n		<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!</p>		\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n		https://vimeo.com/257088337		\n			<h4>Our company is a collective of amazing people striving to build delightful products.</h4>		\n		<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.</p>		\n			<a href=\"#\" role=\"button\">\n						Read More\n					</a>','Home','','inherit','closed','closed','','5-revision-v1','','','2019-09-14 15:54:16','2019-09-14 15:54:16','',5,'http://23.235.208.11/~ondisp5/wp/2019/09/14/5-revision-v1/',0,'revision','',0),(165,1,'2019-09-14 15:54:34','2019-09-14 15:54:34','<h2>#WHAT\'S COOL</h2>		\n			<h2>INNOVATIONS FROM ONDISPLAY CREATIVE</h2>		\n			<h1>LIVING STANDEES HAUNTING THEATERS</h1>		\n			<h3>ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS</h3>		\n			<h2>INSIDIOUS - THE LAST KEY</h2>		\n		<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!</p>		\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n		https://vimeo.com/257088337		\n			<h4>Our company is a collective of amazing people striving to build delightful products.</h4>		\n		<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.</p>		\n			<a href=\"#\" role=\"button\">\n						Read More\n					</a>','Home','','inherit','closed','closed','','5-revision-v1','','','2019-09-14 15:54:34','2019-09-14 15:54:34','',5,'http://23.235.208.11/~ondisp5/wp/2019/09/14/5-revision-v1/',0,'revision','',0),(166,1,'2019-09-14 15:55:05','2019-09-14 15:55:05','<h2>#WHAT\'S COOL</h2>		\n			<h2>INNOVATIONS FROM ONDISPLAY CREATIVE</h2>		\n			<h1>LIVING STANDEES HAUNTING THEATERS</h1>		\n			<h3>ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS</h3>		\n			<h2>INSIDIOUS - THE LAST KEY</h2>		\n		<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!</p>		\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n		https://vimeo.com/257088337		\n			<h4>Our company is a collective of amazing people striving to build delightful products.</h4>		\n		<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.</p>		\n			<a href=\"#\" role=\"button\">\n						Read More\n					</a>','Home','','inherit','closed','closed','','5-revision-v1','','','2019-09-14 15:55:05','2019-09-14 15:55:05','',5,'http://23.235.208.11/~ondisp5/wp/2019/09/14/5-revision-v1/',0,'revision','',0),(167,1,'2019-09-14 16:22:35','2019-09-14 16:22:35','<h1>LIVING STANDEES HAUNTING THEATERS</h1>','H1 header','','trash','closed','closed','','h1-header__trashed','','','2019-09-14 16:27:18','2019-09-14 16:27:18','',0,'http://23.235.208.11/~ondisp5/wp/?elementor_library=h1-header',0,'elementor_library','',0),(168,1,'2019-09-14 16:22:35','2019-09-14 16:22:35','','H1 header','','inherit','closed','closed','','167-revision-v1','','','2019-09-14 16:22:35','2019-09-14 16:22:35','',167,'http://23.235.208.11/~ondisp5/wp/2019/09/14/167-revision-v1/',0,'revision','',0),(169,1,'2019-09-14 16:22:35','2019-09-14 16:22:35','<h1>LIVING STANDEES HAUNTING THEATERS</h1>','H1 header','','inherit','closed','closed','','167-revision-v1','','','2019-09-14 16:22:35','2019-09-14 16:22:35','',167,'http://23.235.208.11/~ondisp5/wp/2019/09/14/167-revision-v1/',0,'revision','',0),(170,1,'2019-09-14 16:22:57','2019-09-14 16:22:57','<h2>INSIDIOUS - THE LAST KEY</h2>','H2 header','','trash','closed','closed','','h2-header__trashed','','','2019-09-14 16:27:21','2019-09-14 16:27:21','',0,'http://23.235.208.11/~ondisp5/wp/?elementor_library=h2-header',0,'elementor_library','',0),(171,1,'2019-09-14 16:22:57','2019-09-14 16:22:57','','H2 header','','inherit','closed','closed','','170-revision-v1','','','2019-09-14 16:22:57','2019-09-14 16:22:57','',170,'http://23.235.208.11/~ondisp5/wp/2019/09/14/170-revision-v1/',0,'revision','',0),(172,1,'2019-09-14 16:22:57','2019-09-14 16:22:57','<h2>INSIDIOUS - THE LAST KEY</h2>','H2 header','','inherit','closed','closed','','170-revision-v1','','','2019-09-14 16:22:57','2019-09-14 16:22:57','',170,'http://23.235.208.11/~ondisp5/wp/2019/09/14/170-revision-v1/',0,'revision','',0),(173,1,'2019-09-14 16:23:23','2019-09-14 16:23:23','<h3>ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS</h3>','H3 header','','trash','closed','closed','','h3-header__trashed','','','2019-09-14 16:27:32','2019-09-14 16:27:32','',0,'http://23.235.208.11/~ondisp5/wp/?elementor_library=h3-header',0,'elementor_library','',0),(174,1,'2019-09-14 16:23:23','2019-09-14 16:23:23','','H3 header','','inherit','closed','closed','','173-revision-v1','','','2019-09-14 16:23:23','2019-09-14 16:23:23','',173,'http://23.235.208.11/~ondisp5/wp/2019/09/14/173-revision-v1/',0,'revision','',0),(175,1,'2019-09-14 16:23:23','2019-09-14 16:23:23','<h3>ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS</h3>','H3 header','','inherit','closed','closed','','173-revision-v1','','','2019-09-14 16:23:23','2019-09-14 16:23:23','',173,'http://23.235.208.11/~ondisp5/wp/2019/09/14/173-revision-v1/',0,'revision','',0),(178,1,'2019-09-14 16:28:16','2019-09-14 16:28:16','<h1>LIVING STANDEES HAUNTING THEATERS</h1>','h1 headline','','trash','closed','closed','','h1-headline__trashed','','','2019-09-14 22:43:10','2019-09-14 22:43:10','',0,'http://23.235.208.11/~ondisp5/wp/?elementor_library=h1-headline',0,'elementor_library','',0),(179,1,'2019-09-14 16:28:16','2019-09-14 16:28:16','','h1 headline','','inherit','closed','closed','','178-revision-v1','','','2019-09-14 16:28:16','2019-09-14 16:28:16','',178,'http://23.235.208.11/~ondisp5/wp/2019/09/14/178-revision-v1/',0,'revision','',0),(180,1,'2019-09-14 16:28:16','2019-09-14 16:28:16','<h1>LIVING STANDEES HAUNTING THEATERS</h1>','h1 headline','','inherit','closed','closed','','178-revision-v1','','','2019-09-14 16:28:16','2019-09-14 16:28:16','',178,'http://23.235.208.11/~ondisp5/wp/2019/09/14/178-revision-v1/',0,'revision','',0),(181,1,'2019-09-14 16:28:33','2019-09-14 16:28:33','<h2>INSIDIOUS - THE LAST KEY</h2>','h2 headline','','trash','closed','closed','','h2-headline__trashed','','','2019-09-14 22:42:56','2019-09-14 22:42:56','',0,'http://23.235.208.11/~ondisp5/wp/?elementor_library=h2-headline',0,'elementor_library','',0),(182,1,'2019-09-14 16:28:33','2019-09-14 16:28:33','','h2 headline','','inherit','closed','closed','','181-revision-v1','','','2019-09-14 16:28:33','2019-09-14 16:28:33','',181,'http://23.235.208.11/~ondisp5/wp/2019/09/14/181-revision-v1/',0,'revision','',0),(183,1,'2019-09-14 16:28:33','2019-09-14 16:28:33','<h2>INSIDIOUS - THE LAST KEY</h2>','h2 headline','','inherit','closed','closed','','181-revision-v1','','','2019-09-14 16:28:33','2019-09-14 16:28:33','',181,'http://23.235.208.11/~ondisp5/wp/2019/09/14/181-revision-v1/',0,'revision','',0),(184,1,'2019-09-14 16:28:45','2019-09-14 16:28:45','<h3>ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS</h3>','h3 headline','','trash','closed','closed','','h3-headline__trashed','','','2019-09-14 22:42:53','2019-09-14 22:42:53','',0,'http://23.235.208.11/~ondisp5/wp/?elementor_library=h3-headline',0,'elementor_library','',0),(185,1,'2019-09-14 16:28:45','2019-09-14 16:28:45','','h3 headline','','inherit','closed','closed','','184-revision-v1','','','2019-09-14 16:28:45','2019-09-14 16:28:45','',184,'http://23.235.208.11/~ondisp5/wp/2019/09/14/184-revision-v1/',0,'revision','',0),(186,1,'2019-09-14 16:28:45','2019-09-14 16:28:45','<h3>ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS</h3>','h3 headline','','inherit','closed','closed','','184-revision-v1','','','2019-09-14 16:28:45','2019-09-14 16:28:45','',184,'http://23.235.208.11/~ondisp5/wp/2019/09/14/184-revision-v1/',0,'revision','',0),(193,1,'2019-09-14 16:35:44','2019-09-14 16:35:44','<h2>#WHAT\'S COOL</h2>		\n			<h2>INNOVATIONS FROM ONDISPLAY CREATIVE</h2>		\n			<h1>LIVING STANDEES HAUNTING THEATERS</h1>		\n			<h3>ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS</h3>		\n			<h2>INSIDIOUS - THE LAST KEY</h2>		\n		<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!</p>		\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n		https://vimeo.com/257088337		\n			<h2>INSIDIOUS - THE LAST KEY</h2>		\n		<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!</p>		\n										<img src=\"http://23.235.208.11/~ondisp5/wp/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" />											\n		https://www.youtube.com/watch?v=XHOmBV4js_E		\n			<h4>Our company is a collective of amazing people striving to build delightful products.</h4>		\n		<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.</p>		\n			<a href=\"#\" role=\"button\">\n						Read More\n					</a>','Home','','inherit','closed','closed','','5-revision-v1','','','2019-09-14 16:35:44','2019-09-14 16:35:44','',5,'http://23.235.208.11/~ondisp5/wp/2019/09/14/5-revision-v1/',0,'revision','',0),(188,1,'2019-09-14 16:35:44','2019-09-14 16:35:44','<h1>LIVING STANDEES HAUNTING THEATERS</h1>','h1 headline','','inherit','closed','closed','','178-revision-v1','','','2019-09-14 16:35:44','2019-09-14 16:35:44','',178,'http://23.235.208.11/~ondisp5/wp/2019/09/14/178-revision-v1/',0,'revision','',0),(189,1,'2019-09-14 16:35:44','2019-09-14 16:35:44','<h2>INSIDIOUS - THE LAST KEY</h2>','h2 headline','','inherit','closed','closed','','181-revision-v1','','','2019-09-14 16:35:44','2019-09-14 16:35:44','',181,'http://23.235.208.11/~ondisp5/wp/2019/09/14/181-revision-v1/',0,'revision','',0),(190,1,'2019-09-14 16:35:44','2019-09-14 16:35:44','<h3>ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS</h3>','h3 headline','','inherit','closed','closed','','184-revision-v1','','','2019-09-14 16:35:44','2019-09-14 16:35:44','',184,'http://23.235.208.11/~ondisp5/wp/2019/09/14/184-revision-v1/',0,'revision','',0),(191,1,'2019-09-14 16:35:44','2019-09-14 16:35:44','<h2>#WHAT\'S COOL</h2>\n<h2>INNOVATIONS FROM ONDISPLAY CREATIVE</h2>\n<h1>LIVING STANDEES HAUNTING THEATERS</h1>\n<h3>ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS</h3>\n<h2>INSIDIOUS - THE LAST KEY</h2>\nMovie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!\n\n<img src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" width=\"768\" height=\"1024\">\n<img src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" width=\"768\" height=\"1024\">\nhttps://vimeo.com/257088337\n<h4>Our company is a collective of amazing people striving to build delightful products.</h4>\nIt is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.\n\n<a href=\"#\" role=\"button\">\nRead More\n</a>','Home','','inherit','closed','closed','','5-revision-v1','','','2019-09-14 16:35:44','2019-09-14 16:35:44','',5,'http://23.235.208.11/~ondisp5/wp/2019/09/14/5-revision-v1/',0,'revision','',0),(192,1,'2019-09-14 16:35:44','2019-09-14 16:35:44','<h2>#WHAT\'S COOL</h2>\n<h2>INNOVATIONS FROM ONDISPLAY CREATIVE</h2>\n<h1>LIVING STANDEES HAUNTING THEATERS</h1>\n<h3>ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS</h3>\n<h2>INSIDIOUS - THE LAST KEY</h2>\nMovie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!\n\n<img src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" width=\"768\" height=\"1024\">\n<img src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" width=\"768\" height=\"1024\">\nhttps://vimeo.com/257088337\n<h4>Our company is a collective of amazing people striving to build delightful products.</h4>\nIt is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.\n\n<a href=\"#\" role=\"button\">\nRead More\n</a>','Home','','inherit','closed','closed','','5-revision-v1','','','2019-09-14 16:35:44','2019-09-14 16:35:44','',5,'http://23.235.208.11/~ondisp5/wp/2019/09/14/5-revision-v1/',0,'revision','',0),(194,1,'2019-09-14 16:36:17','2019-09-14 16:36:17','<h2>#WHAT\'S COOL</h2>		\n			<h2>INNOVATIONS FROM ONDISPLAY CREATIVE</h2>		\n			<h1>LIVING STANDEES HAUNTING THEATERS</h1>		\n			<h3>ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS</h3>		\n			<h2>INSIDIOUS - THE LAST KEY</h2>		\n		<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!</p>		\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n		https://vimeo.com/257088337		\n			<h2>INSIDIOUS CHAPTER 3</h2>		\n		<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!</p>		\n										<img src=\"http://23.235.208.11/~ondisp5/wp/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" />											\n		https://www.youtube.com/watch?v=XHOmBV4js_E		\n			<h4>Our company is a collective of amazing people striving to build delightful products.</h4>		\n		<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.</p>		\n			<a href=\"#\" role=\"button\">\n						Read More\n					</a>','Home','','inherit','closed','closed','','5-revision-v1','','','2019-09-14 16:36:17','2019-09-14 16:36:17','',5,'http://23.235.208.11/~ondisp5/wp/2019/09/14/5-revision-v1/',0,'revision','',0),(195,1,'2019-09-14 16:36:30','2019-09-14 16:36:30','<h2>#WHAT\'S COOL</h2>		\n			<h2>INNOVATIONS FROM ONDISPLAY CREATIVE</h2>		\n			<h1>LIVING STANDEES HAUNTING THEATERS</h1>		\n			<h3>ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS</h3>		\n			<h2>INSIDIOUS - THE LAST KEY</h2>		\n		<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!</p>		\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n		https://vimeo.com/257088337		\n			<h2>INSIDIOUS CHAPTER 3</h2>		\n		<p>OnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe.Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.</p>		\n										<img src=\"http://23.235.208.11/~ondisp5/wp/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" />											\n		https://www.youtube.com/watch?v=XHOmBV4js_E		\n			<h4>Our company is a collective of amazing people striving to build delightful products.</h4>		\n		<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.</p>		\n			<a href=\"#\" role=\"button\">\n						Read More\n					</a>','Home','','inherit','closed','closed','','5-revision-v1','','','2019-09-14 16:36:30','2019-09-14 16:36:30','',5,'http://23.235.208.11/~ondisp5/wp/2019/09/14/5-revision-v1/',0,'revision','',0),(196,1,'2019-09-14 16:37:14','2019-09-14 16:37:14','','image-asset','','inherit','open','closed','','image-asset','','','2019-09-14 16:37:14','2019-09-14 16:37:14','',5,'http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset.jpeg',0,'attachment','image/jpeg',0),(207,1,'2019-09-14 16:57:29','2019-09-14 16:57:29','<h2>#WHAT\'S COOL</h2>\n<h2>INNOVATIONS FROM ONDISPLAY CREATIVE</h2>\n<h1>LIVING STANDEES HAUNTING THEATERS</h1>\n<h3>ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS</h3>\n<h2>INSIDIOUS - THE LAST KEY</h2>\nMovie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!\n\n<img src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" width=\"768\" height=\"1024\">\n<img src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" width=\"768\" height=\"1024\">\nhttps://vimeo.com/257088337\n<h2>INSIDIOUS CHAPTER 3</h2>\nOnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.\n\n<img src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset.jpeg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset.jpeg 1000w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-300x240.jpeg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-768x614.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" width=\"1000\" height=\"800\">\nhttps://vimeo.com/130807026\n<h4>Our company is a collective of amazing people striving to build delightful products.</h4>\nIt is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.\n\n<a href=\"#\" role=\"button\">\nRead More\n</a>','Home','','inherit','closed','closed','','5-revision-v1','','','2019-09-14 16:57:29','2019-09-14 16:57:29','',5,'http://23.235.208.11/~ondisp5/wp/2019/09/14/5-revision-v1/',0,'revision','',0),(197,1,'2019-09-14 16:37:50','2019-09-14 16:37:50','<h2>#WHAT\'S COOL</h2>		\n			<h2>INNOVATIONS FROM ONDISPLAY CREATIVE</h2>		\n			<h1>LIVING STANDEES HAUNTING THEATERS</h1>		\n			<h3>ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS</h3>		\n			<h2>INSIDIOUS - THE LAST KEY</h2>		\n		<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!</p>		\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n		https://vimeo.com/257088337		\n			<h2>INSIDIOUS CHAPTER 3</h2>		\n		<p>OnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.</p>		\n										<img width=\"1000\" height=\"800\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset.jpeg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset.jpeg 1000w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-300x240.jpeg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-768x614.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />											\n		https://www.youtube.com/watch?v=XHOmBV4js_E		\n			<h4>Our company is a collective of amazing people striving to build delightful products.</h4>		\n		<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.</p>		\n			<a href=\"#\" role=\"button\">\n						Read More\n					</a>','Home','','inherit','closed','closed','','5-revision-v1','','','2019-09-14 16:37:50','2019-09-14 16:37:50','',5,'http://23.235.208.11/~ondisp5/wp/2019/09/14/5-revision-v1/',0,'revision','',0),(198,1,'2019-09-14 16:38:15','2019-09-14 16:38:15','<h2>#WHAT\'S COOL</h2>		\n			<h2>INNOVATIONS FROM ONDISPLAY CREATIVE</h2>		\n			<h1>LIVING STANDEES HAUNTING THEATERS</h1>		\n			<h3>ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS</h3>		\n			<h2>INSIDIOUS - THE LAST KEY</h2>		\n		<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!</p>		\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n		https://vimeo.com/257088337		\n			<h2>INSIDIOUS CHAPTER 3</h2>		\n		<p>OnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.</p>		\n										<img width=\"1000\" height=\"800\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset.jpeg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset.jpeg 1000w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-300x240.jpeg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-768x614.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />											\n		https://vimeo.com/130807026		\n			<h4>Our company is a collective of amazing people striving to build delightful products.</h4>		\n		<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.</p>		\n			<a href=\"#\" role=\"button\">\n						Read More\n					</a>','Home','','inherit','closed','closed','','5-revision-v1','','','2019-09-14 16:38:15','2019-09-14 16:38:15','',5,'http://23.235.208.11/~ondisp5/wp/2019/09/14/5-revision-v1/',0,'revision','',0),(199,1,'2019-09-14 16:40:02','2019-09-14 16:40:02','<h2>#WHAT\'S COOL</h2>		\n			<h2>INNOVATIONS FROM ONDISPLAY CREATIVE</h2>		\n			<h1>LIVING STANDEES HAUNTING THEATERS</h1>		\n			<h3>ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS</h3>		\n			<h2>INSIDIOUS - THE LAST KEY</h2>		\n		<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!</p>		\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n		https://vimeo.com/257088337		\n			<h2>INSIDIOUS CHAPTER 3</h2>		\n		<p>OnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.</p>		\n										<img width=\"1000\" height=\"800\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset.jpeg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset.jpeg 1000w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-300x240.jpeg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-768x614.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />											\n		https://vimeo.com/130807026		\n			<h4>Our company is a collective of amazing people striving to build delightful products.</h4>		\n		<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.</p>		\n			<a href=\"#\" role=\"button\">\n						Read More\n					</a>','Home','','inherit','closed','closed','','5-revision-v1','','','2019-09-14 16:40:02','2019-09-14 16:40:02','',5,'http://23.235.208.11/~ondisp5/wp/2019/09/14/5-revision-v1/',0,'revision','',0),(200,1,'2019-09-14 16:41:49','2019-09-14 16:41:49','<h2>#WHAT\'S COOL</h2>		\n			<h2>INNOVATIONS FROM ONDISPLAY CREATIVE</h2>		\n			<h1>LIVING STANDEES HAUNTING THEATERS</h1>		\n			<h3>ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS</h3>		\n			<h2>INSIDIOUS - THE LAST KEY</h2>		\n		<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!</p>		\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n		https://vimeo.com/257088337		\n			<h2>INSIDIOUS CHAPTER 3</h2>		\n		<p>OnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.</p>		\n										<img width=\"1000\" height=\"800\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset.jpeg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset.jpeg 1000w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-300x240.jpeg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-768x614.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />											\n		https://vimeo.com/130807026		\n			<h4>Our company is a collective of amazing people striving to build delightful products.</h4>		\n		<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.</p>		\n			<a href=\"#\" role=\"button\">\n						Read More\n					</a>','Home','','inherit','closed','closed','','5-revision-v1','','','2019-09-14 16:41:49','2019-09-14 16:41:49','',5,'http://23.235.208.11/~ondisp5/wp/2019/09/14/5-revision-v1/',0,'revision','',0),(201,1,'2019-09-14 16:42:21','2019-09-14 16:42:21','<h2>#WHAT\'S COOL</h2>		\n			<h2>INNOVATIONS FROM ONDISPLAY CREATIVE</h2>		\n			<h1>LIVING STANDEES HAUNTING THEATERS</h1>		\n			<h3>ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS</h3>		\n			<h2>INSIDIOUS - THE LAST KEY</h2>		\n		<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!</p>		\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n		https://vimeo.com/257088337		\n			<h2>INSIDIOUS CHAPTER 3</h2>		\n		<p>OnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.</p>		\n										<img width=\"1000\" height=\"800\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset.jpeg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset.jpeg 1000w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-300x240.jpeg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-768x614.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />											\n		https://vimeo.com/130807026		\n			<h4>Our company is a collective of amazing people striving to build delightful products.</h4>		\n		<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.</p>		\n			<a href=\"#\" role=\"button\">\n						Read More\n					</a>','Home','','inherit','closed','closed','','5-revision-v1','','','2019-09-14 16:42:21','2019-09-14 16:42:21','',5,'http://23.235.208.11/~ondisp5/wp/2019/09/14/5-revision-v1/',0,'revision','',0),(202,1,'2019-09-14 16:42:38','2019-09-14 16:42:38','<h2>#WHAT\'S COOL</h2>		\n			<h2>INNOVATIONS FROM ONDISPLAY CREATIVE</h2>		\n			<h1>LIVING STANDEES HAUNTING THEATERS</h1>		\n			<h3>ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS</h3>		\n			<h2>INSIDIOUS - THE LAST KEY</h2>		\n		<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!</p>		\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n		https://vimeo.com/257088337		\n			<h2>INSIDIOUS CHAPTER 3</h2>		\n		<p>OnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.</p>		\n										<img width=\"1000\" height=\"800\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset.jpeg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset.jpeg 1000w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-300x240.jpeg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-768x614.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />											\n		https://vimeo.com/130807026		\n			<h4>Our company is a collective of amazing people striving to build delightful products.</h4>		\n		<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.</p>		\n			<a href=\"#\" role=\"button\">\n						Read More\n					</a>','Home','','inherit','closed','closed','','5-revision-v1','','','2019-09-14 16:42:38','2019-09-14 16:42:38','',5,'http://23.235.208.11/~ondisp5/wp/2019/09/14/5-revision-v1/',0,'revision','',0),(203,1,'2019-09-14 16:45:39','2019-09-14 16:45:39','<h2>#WHAT\'S COOL</h2>		\n			<h2>INNOVATIONS FROM ONDISPLAY CREATIVE</h2>		\n			<h1>LIVING STANDEES HAUNTING THEATERS</h1>		\n			<h3>ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS</h3>		\n			<h2>INSIDIOUS - THE LAST KEY</h2>		\n		<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!</p>		\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n		https://vimeo.com/257088337		\n			<h2>INSIDIOUS CHAPTER 3</h2>		\n		<p>OnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.</p>		\n										<img width=\"1000\" height=\"800\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset.jpeg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset.jpeg 1000w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-300x240.jpeg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-768x614.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />											\n		https://vimeo.com/130807026		\n			<h4>Our company is a collective of amazing people striving to build delightful products.</h4>		\n		<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.</p>		\n			<a href=\"#\" role=\"button\">\n						Read More\n					</a>','Home','','inherit','closed','closed','','5-revision-v1','','','2019-09-14 16:45:39','2019-09-14 16:45:39','',5,'http://23.235.208.11/~ondisp5/wp/2019/09/14/5-revision-v1/',0,'revision','',0),(204,1,'2019-09-14 16:46:55','2019-09-14 16:46:55','<h2>#WHAT\'S COOL</h2>		\n			<h2>INNOVATIONS FROM ONDISPLAY CREATIVE</h2>		\n			<h1>LIVING STANDEES HAUNTING THEATERS</h1>		\n			<h3>ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS</h3>		\n			<h2>INSIDIOUS - THE LAST KEY</h2>		\n		<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!</p>		\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n		https://vimeo.com/257088337		\n			<h2>INSIDIOUS CHAPTER 3</h2>		\n		<p>OnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.</p>		\n										<img width=\"1000\" height=\"800\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset.jpeg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset.jpeg 1000w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-300x240.jpeg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-768x614.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />											\n		https://vimeo.com/130807026		\n			<h4>Our company is a collective of amazing people striving to build delightful products.</h4>		\n		<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.</p>		\n			<a href=\"#\" role=\"button\">\n						Read More\n					</a>','Home','','inherit','closed','closed','','5-revision-v1','','','2019-09-14 16:46:55','2019-09-14 16:46:55','',5,'http://23.235.208.11/~ondisp5/wp/2019/09/14/5-revision-v1/',0,'revision','',0),(206,1,'2019-09-14 16:50:44','2019-09-14 16:50:44','<h2>#WHAT\'S COOL</h2>		\n			<h2>INNOVATIONS FROM ONDISPLAY CREATIVE</h2>		\n			<h1>LIVING STANDEES HAUNTING THEATERS</h1>		\n			<h3>ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS</h3>		\n			<h2>INSIDIOUS - THE LAST KEY</h2>		\n		<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!</p>		\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n		https://vimeo.com/257088337		\n			<h2>INSIDIOUS CHAPTER 3</h2>		\n		<p>OnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.</p>		\n										<img width=\"1000\" height=\"800\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset.jpeg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset.jpeg 1000w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-300x240.jpeg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-768x614.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />											\n		https://vimeo.com/130807026		\n			<h4>Our company is a collective of amazing people striving to build delightful products.</h4>		\n		<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.</p>		\n			<a href=\"#\" role=\"button\">\n						Read More\n					</a>','Home','','inherit','closed','closed','','5-revision-v1','','','2019-09-14 16:50:44','2019-09-14 16:50:44','',5,'http://23.235.208.11/~ondisp5/wp/2019/09/14/5-revision-v1/',0,'revision','',0),(208,1,'2019-09-14 16:58:45','2019-09-14 16:58:45','<h1>LIVING STANDEES HAUNTING THEATERS</h1>','h1 headline','','inherit','closed','closed','','178-revision-v1','','','2019-09-14 16:58:45','2019-09-14 16:58:45','',178,'http://23.235.208.11/~ondisp5/wp/2019/09/14/178-revision-v1/',0,'revision','',0),(209,1,'2019-09-14 16:58:45','2019-09-14 16:58:45','<h2>INSIDIOUS - THE LAST KEY</h2>','h2 headline','','inherit','closed','closed','','181-revision-v1','','','2019-09-14 16:58:45','2019-09-14 16:58:45','',181,'http://23.235.208.11/~ondisp5/wp/2019/09/14/181-revision-v1/',0,'revision','',0),(210,1,'2019-09-14 16:58:45','2019-09-14 16:58:45','<h3>ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS</h3>','h3 headline','','inherit','closed','closed','','184-revision-v1','','','2019-09-14 16:58:45','2019-09-14 16:58:45','',184,'http://23.235.208.11/~ondisp5/wp/2019/09/14/184-revision-v1/',0,'revision','',0),(211,1,'2019-09-14 16:58:45','2019-09-14 16:58:45','<h2>#WHAT\'S COOL</h2>\n<h2>INNOVATIONS FROM ONDISPLAY CREATIVE</h2>\n<h1>LIVING STANDEES HAUNTING THEATERS</h1>\n<h3>ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS</h3>\n<h2>INSIDIOUS - THE LAST KEY</h2>\nMovie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!\n\n<img src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" width=\"768\" height=\"1024\">\n<img src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" width=\"768\" height=\"1024\">\nhttps://vimeo.com/257088337\n<h2>INSIDIOUS CHAPTER 3</h2>\nOnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.\n\n<img src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset.jpeg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset.jpeg 1000w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-300x240.jpeg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-768x614.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" width=\"1000\" height=\"800\">\nhttps://vimeo.com/130807026\n<h4>Our company is a collective of amazing people striving to build delightful products.</h4>\nIt is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.\n\n<a href=\"#\" role=\"button\">\nRead More\n</a>','Home','','inherit','closed','closed','','5-revision-v1','','','2019-09-14 16:58:45','2019-09-14 16:58:45','',5,'http://23.235.208.11/~ondisp5/wp/2019/09/14/5-revision-v1/',0,'revision','',0),(212,1,'2019-09-14 16:58:45','2019-09-14 16:58:45','<h2>#WHAT\'S COOL</h2>\n<h2>INNOVATIONS FROM ONDISPLAY CREATIVE</h2>\n<h1>LIVING STANDEES HAUNTING THEATERS</h1>\n<h3>ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS</h3>\n<h2>INSIDIOUS - THE LAST KEY</h2>\nMovie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!\n\n<img src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" width=\"768\" height=\"1024\">\n<img src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" width=\"768\" height=\"1024\">\nhttps://vimeo.com/257088337\n<h2>INSIDIOUS CHAPTER 3</h2>\nOnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.\n\n<img src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset.jpeg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset.jpeg 1000w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-300x240.jpeg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-768x614.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" width=\"1000\" height=\"800\">\nhttps://vimeo.com/130807026\n<h4>Our company is a collective of amazing people striving to build delightful products.</h4>\nIt is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.\n\n<a href=\"#\" role=\"button\">\nRead More\n</a>','Home','','inherit','closed','closed','','5-revision-v1','','','2019-09-14 16:58:45','2019-09-14 16:58:45','',5,'http://23.235.208.11/~ondisp5/wp/2019/09/14/5-revision-v1/',0,'revision','',0),(214,1,'2019-09-14 22:43:41','2019-09-14 22:43:41','<h2>#WHAT\'S COOL</h2>\n<h2>INNOVATIONS FROM ONDISPLAY CREATIVE</h2>\n<h1>LIVING STANDEES HAUNTING THEATERS</h1>\n<h3>ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS</h3>\n<h2>INSIDIOUS - THE LAST KEY</h2>\nMovie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!\n\n<img src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" width=\"768\" height=\"1024\">\n<img src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" width=\"768\" height=\"1024\">\nhttps://vimeo.com/257088337\n<h2>INSIDIOUS CHAPTER 3</h2>\nOnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.\n\n<img src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset.jpeg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset.jpeg 1000w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-300x240.jpeg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-768x614.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" width=\"1000\" height=\"800\">\nhttps://vimeo.com/130807026\n<h4>Our company is a collective of amazing people striving to build delightful products.</h4>\nIt is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.\n\n<a href=\"#\" role=\"button\">\nRead More\n</a>','Home','','inherit','closed','closed','','5-revision-v1','','','2019-09-14 22:43:41','2019-09-14 22:43:41','',5,'http://23.235.208.11/~ondisp5/wp/2019/09/14/5-revision-v1/',0,'revision','',0),(213,1,'2019-09-14 16:58:45','2019-09-14 16:58:45','<h2>#WHAT\'S COOL</h2>		\n			<h2>INNOVATIONS FROM ONDISPLAY CREATIVE</h2>		\n			<h1>LIVING STANDEES HAUNTING THEATERS</h1>		\n			<h3>ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS</h3>		\n			<h2>INSIDIOUS - THE LAST KEY</h2>		\n		<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!</p>		\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n		https://vimeo.com/257088337		\n			<h2>INSIDIOUS CHAPTER 3</h2>		\n		<p>OnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.</p>		\n										<img width=\"1000\" height=\"800\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset.jpeg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset.jpeg 1000w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-300x240.jpeg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-768x614.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />											\n		https://vimeo.com/130807026		\n			<h4>Our company is a collective of amazing people striving to build delightful products.</h4>		\n		<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.</p>		\n			<a href=\"#\" role=\"button\">\n						Read More\n					</a>','Home','','inherit','closed','closed','','5-revision-v1','','','2019-09-14 16:58:45','2019-09-14 16:58:45','',5,'http://23.235.208.11/~ondisp5/wp/2019/09/14/5-revision-v1/',0,'revision','',0),(215,1,'2019-09-14 22:47:03','2019-09-14 22:47:03','<h2>#WHAT\'S COOL</h2>		\n			<h2>INNOVATIONS FROM ONDISPLAY CREATIVE</h2>		\n			<h1>LIVING STANDEES HAUNTING THEATERS</h1>		\n		<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!</p>		\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n		https://vimeo.com/257088337		\n			<h2>INSIDIOUS CHAPTER 3</h2>		\n		<p>OnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.</p>		\n										<img width=\"1000\" height=\"800\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset.jpeg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset.jpeg 1000w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-300x240.jpeg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-768x614.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />											\n		https://vimeo.com/130807026		\n			<h4>Our company is a collective of amazing people striving to build delightful products.</h4>		\n		<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.</p>		\n			<a href=\"#\" role=\"button\">\n						Read More\n					</a>','Home','','inherit','closed','closed','','5-revision-v1','','','2019-09-14 22:47:03','2019-09-14 22:47:03','',5,'http://23.235.208.11/~ondisp5/wp/2019/09/14/5-revision-v1/',0,'revision','',0),(218,1,'2019-09-14 22:54:11','2019-09-14 22:54:11','<h2>#WHAT\'S COOL</h2>\n<h2>INNOVATIONS FROM ONDISPLAY CREATIVE</h2>\n<h1>LIVING STANDEES HAUNTING THEATERS</h1>\n<h3>ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS</h3>\nMovie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!\n\n<img src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" width=\"768\" height=\"1024\">\n<img src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" width=\"768\" height=\"1024\">\nhttps://vimeo.com/257088337\n<h2>INSIDIOUS CHAPTER 3</h2>\nOnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.\n\n<img src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset.jpeg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset.jpeg 1000w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-300x240.jpeg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-768x614.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" width=\"1000\" height=\"800\">\nhttps://vimeo.com/130807026\n<h4>Our company is a collective of amazing people striving to build delightful products.</h4>\nIt is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.\n\n<a href=\"#\" role=\"button\">\nRead More\n</a>','Home','','inherit','closed','closed','','5-revision-v1','','','2019-09-14 22:54:11','2019-09-14 22:54:11','',5,'http://23.235.208.11/~ondisp5/wp/2019/09/14/5-revision-v1/',0,'revision','',0),(216,1,'2019-09-14 22:50:17','2019-09-14 22:50:17','<h2>#WHAT\'S COOL</h2>		\n			<h2>INNOVATIONS FROM ONDISPLAY CREATIVE</h2>		\n			<h1>LIVING STANDEES HAUNTING THEATERS</h1>		\n			<h3>ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS</h3>		\n		<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!</p>		\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n		https://vimeo.com/257088337		\n			<h2>INSIDIOUS CHAPTER 3</h2>		\n		<p>OnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.</p>		\n										<img width=\"1000\" height=\"800\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset.jpeg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset.jpeg 1000w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-300x240.jpeg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-768x614.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />											\n		https://vimeo.com/130807026		\n			<h4>Our company is a collective of amazing people striving to build delightful products.</h4>		\n		<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.</p>		\n			<a href=\"#\" role=\"button\">\n						Read More\n					</a>','Home','','inherit','closed','closed','','5-revision-v1','','','2019-09-14 22:50:17','2019-09-14 22:50:17','',5,'http://23.235.208.11/~ondisp5/wp/2019/09/14/5-revision-v1/',0,'revision','',0),(217,1,'2019-09-14 22:54:03','2019-09-14 22:54:03','{\n    \"astra-settings[font-size-h1]\": {\n        \"value\": {\n            \"desktop\": \"28\",\n            \"tablet\": \"\",\n            \"mobile\": \"\",\n            \"desktop-unit\": \"px\",\n            \"tablet-unit\": \"px\",\n            \"mobile-unit\": \"px\"\n        },\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2019-09-14 22:53:50\"\n    },\n    \"astra-settings[font-size-h3]\": {\n        \"value\": {\n            \"desktop\": \"17\",\n            \"tablet\": \"\",\n            \"mobile\": \"\",\n            \"desktop-unit\": \"px\",\n            \"tablet-unit\": \"px\",\n            \"mobile-unit\": \"px\"\n        },\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2019-09-14 22:53:50\"\n    }\n}','','','trash','closed','closed','','5ee9b0fc-4b7a-4bd3-8597-0b97a6cb2048','','','2019-09-14 22:54:03','2019-09-14 22:54:03','',0,'http://23.235.208.11/~ondisp5/wp/?p=217',0,'customize_changeset','',0),(219,1,'2019-09-14 22:55:06','2019-09-14 22:55:06','<h2>#WHAT\'S COOL</h2>		\n			<h2>INNOVATIONS FROM ONDISPLAY CREATIVE</h2>		\n			<h1>LIVING STANDEES HAUNTING THEATERS</h1>		\n			<h3>ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS</h3>		\n		<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!</p>		\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n		https://vimeo.com/257088337		\n			<h2>INSIDIOUS CHAPTER 3</h2>		\n		<p>OnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.</p>		\n										<img width=\"1000\" height=\"800\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset.jpeg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset.jpeg 1000w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-300x240.jpeg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-768x614.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />											\n		https://vimeo.com/130807026		\n			<h4>Our company is a collective of amazing people striving to build delightful products.</h4>		\n		<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.</p>		\n			<a href=\"#\" role=\"button\">\n						Read More\n					</a>','Home','','inherit','closed','closed','','5-revision-v1','','','2019-09-14 22:55:06','2019-09-14 22:55:06','',5,'http://23.235.208.11/~ondisp5/wp/2019/09/14/5-revision-v1/',0,'revision','',0),(222,1,'2019-09-14 22:59:36','2019-09-14 22:59:36','<h2>#WHAT\'S COOL</h2>\n<h2>INNOVATIONS FROM ONDISPLAY CREATIVE</h2>\n<h1>LIVING STANDEES HAUNTING THEATERS</h1>\n<h3>ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS</h3>\n<h2>INSIDIOUS – THE LAST KEY</h2>\nMovie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!\n\n<img src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" width=\"768\" height=\"1024\">\n<img src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" width=\"768\" height=\"1024\">\nhttps://vimeo.com/257088337\n<h2>INSIDIOUS CHAPTER 3</h2>\nOnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.\n\n<img src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset.jpeg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset.jpeg 1000w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-300x240.jpeg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-768x614.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" width=\"1000\" height=\"800\">\nhttps://vimeo.com/130807026\n<h4>Our company is a collective of amazing people striving to build delightful products.</h4>\nIt is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.\n\n<a href=\"#\" role=\"button\">\nRead More\n</a>','Home','','inherit','closed','closed','','5-revision-v1','','','2019-09-14 22:59:36','2019-09-14 22:59:36','',5,'http://23.235.208.11/~ondisp5/wp/2019/09/14/5-revision-v1/',0,'revision','',0),(220,1,'2019-09-14 22:57:51','2019-09-14 22:57:51','<h2>#WHAT\'S COOL</h2>		\n			<h2>INNOVATIONS FROM ONDISPLAY CREATIVE</h2>		\n			<h1>LIVING STANDEES HAUNTING THEATERS</h1>		\n			<h3>ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS</h3>		\n			<h2>INSIDIOUS – THE LAST KEY</h2>		\n		<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!</p>		\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n		https://vimeo.com/257088337		\n			<h2>INSIDIOUS CHAPTER 3</h2>		\n		<p>OnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.</p>		\n										<img width=\"1000\" height=\"800\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset.jpeg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset.jpeg 1000w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-300x240.jpeg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-768x614.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />											\n		https://vimeo.com/130807026		\n			<h4>Our company is a collective of amazing people striving to build delightful products.</h4>		\n		<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.</p>		\n			<a href=\"#\" role=\"button\">\n						Read More\n					</a>','Home','','inherit','closed','closed','','5-revision-v1','','','2019-09-14 22:57:51','2019-09-14 22:57:51','',5,'http://23.235.208.11/~ondisp5/wp/2019/09/14/5-revision-v1/',0,'revision','',0),(221,1,'2019-09-14 22:59:02','2019-09-14 22:59:02','{\n    \"astra-settings[font-size-h2]\": {\n        \"value\": {\n            \"desktop\": \"22\",\n            \"tablet\": \"\",\n            \"mobile\": \"\",\n            \"desktop-unit\": \"px\",\n            \"tablet-unit\": \"px\",\n            \"mobile-unit\": \"px\"\n        },\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2019-09-14 22:59:02\"\n    }\n}','','','trash','closed','closed','','eaa3274d-5e9f-4d53-af59-54635ad8e823','','','2019-09-14 22:59:02','2019-09-14 22:59:02','',0,'http://23.235.208.11/~ondisp5/wp/2019/09/14/eaa3274d-5e9f-4d53-af59-54635ad8e823/',0,'customize_changeset','',0),(223,1,'2019-09-14 23:00:44','2019-09-14 23:00:44','<h2>#WHAT\'S COOL</h2>		\n			<h2>INNOVATIONS FROM ONDISPLAY CREATIVE</h2>		\n			<h1>LIVING STANDEES HAUNTING THEATERS</h1>		\n			<h3>ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS</h3>		\n			<h2>INSIDIOUS – THE LAST KEY</h2>		\n		<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!</p>		\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n		https://vimeo.com/257088337		\n			<h2>INSIDIOUS CHAPTER 3</h2>		\n		<p>OnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.</p>		\n										<img width=\"1000\" height=\"800\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset.jpeg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset.jpeg 1000w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-300x240.jpeg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-768x614.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />											\n		https://vimeo.com/130807026		\n			<h4>Our company is a collective of amazing people striving to build delightful products.</h4>		\n		<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.</p>		\n			<a href=\"#\" role=\"button\">\n						Read More\n					</a>','Home','','inherit','closed','closed','','5-revision-v1','','','2019-09-14 23:00:44','2019-09-14 23:00:44','',5,'http://23.235.208.11/~ondisp5/wp/2019/09/14/5-revision-v1/',0,'revision','',0),(224,1,'2019-09-14 23:01:07','2019-09-14 23:01:07','<h2>#WHAT\'S COOL</h2>		\n			<h2>INNOVATIONS FROM ONDISPLAY CREATIVE</h2>		\n			<h1>LIVING STANDEES HAUNTING THEATERS</h1>		\n			<h3>ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS</h3>		\n			<h2>INSIDIOUS – THE LAST KEY</h2>		\n		<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!</p>		\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n		https://vimeo.com/257088337		\n			<h2>INSIDIOUS CHAPTER 3</h2>		\n		<p>OnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.</p>		\n										<img width=\"1000\" height=\"800\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset.jpeg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset.jpeg 1000w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-300x240.jpeg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-768x614.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />											\n		https://vimeo.com/130807026		\n			<h4>Our company is a collective of amazing people striving to build delightful products.</h4>		\n		<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.</p>		\n			<a href=\"#\" role=\"button\">\n						Read More\n					</a>','Home','','inherit','closed','closed','','5-revision-v1','','','2019-09-14 23:01:07','2019-09-14 23:01:07','',5,'http://23.235.208.11/~ondisp5/wp/2019/09/14/5-revision-v1/',0,'revision','',0),(225,1,'2019-09-14 23:02:42','2019-09-14 23:02:42','<h2>#WHAT\'S COOL</h2>		\n			<h2>INNOVATIONS FROM ONDISPLAY CREATIVE</h2>		\n			<h1>LIVING STANDEES HAUNTING THEATERS</h1>		\n			<h3>ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS</h3>		\n			<h2>INSIDIOUS – THE LAST KEY</h2>		\n		<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!</p>		\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n		https://vimeo.com/257088337		\n			<h2>INSIDIOUS CHAPTER 3</h2>		\n		<p>OnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.</p>		\n										<img width=\"1000\" height=\"800\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset.jpeg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset.jpeg 1000w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-300x240.jpeg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-768x614.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />											\n		https://vimeo.com/130807026		\n			<h4>Our company is a collective of amazing people striving to build delightful products.</h4>		\n		<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.</p>		\n			<a href=\"#\" role=\"button\">\n						Read More\n					</a>','Home','','inherit','closed','closed','','5-revision-v1','','','2019-09-14 23:02:42','2019-09-14 23:02:42','',5,'http://23.235.208.11/~ondisp5/wp/2019/09/14/5-revision-v1/',0,'revision','',0),(226,1,'2019-09-14 23:03:56','2019-09-14 23:03:56','<h2>#WHAT\'S COOL</h2>		\n			<h2>INNOVATIONS FROM ONDISPLAY CREATIVE</h2>		\n			<h1>LIVING STANDEES HAUNTING THEATERS</h1>		\n			<h3>ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS</h3>		\n			<h2>INSIDIOUS – THE LAST KEY</h2>		\n		<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!</p>		\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n		https://vimeo.com/257088337		\n			<h2>INSIDIOUS CHAPTER 3</h2>		\n		<p>OnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.</p>		\n										<img width=\"1000\" height=\"800\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset.jpeg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset.jpeg 1000w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-300x240.jpeg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-768x614.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />											\n		https://vimeo.com/130807026		\n			<h4>Our company is a collective of amazing people striving to build delightful products.</h4>		\n		<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.</p>		\n			<a href=\"#\" role=\"button\">\n						Read More\n					</a>','Home','','inherit','closed','closed','','5-revision-v1','','','2019-09-14 23:03:56','2019-09-14 23:03:56','',5,'http://23.235.208.11/~ondisp5/wp/2019/09/14/5-revision-v1/',0,'revision','',0),(227,1,'2019-09-14 23:05:26','2019-09-14 23:05:26','<h2>#WHAT\'S COOL</h2>		\n			<h2>INNOVATIONS FROM ONDISPLAY CREATIVE</h2>		\n			<h1>LIVING STANDEES HAUNTING THEATERS</h1>		\n			<h3>ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS</h3>		\n			<h2>INSIDIOUS – THE LAST KEY</h2>		\n		<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!</p>		\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n		https://vimeo.com/257088337		\n			<h2>INSIDIOUS CHAPTER 3</h2>		\n		<p>OnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.</p>		\n										<img width=\"1000\" height=\"800\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset.jpeg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset.jpeg 1000w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-300x240.jpeg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-768x614.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />											\n		https://vimeo.com/130807026		\n			<h4>Our company is a collective of amazing people striving to build delightful products.</h4>		\n		<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.</p>		\n			<a href=\"#\" role=\"button\">\n						Read More\n					</a>','Home','','inherit','closed','closed','','5-revision-v1','','','2019-09-14 23:05:26','2019-09-14 23:05:26','',5,'http://23.235.208.11/~ondisp5/wp/2019/09/14/5-revision-v1/',0,'revision','',0),(238,1,'2019-09-15 23:59:06','2019-09-15 23:59:06','<h2>#WHAT\'S COOL</h2>\n<h2>INNOVATIONS FROM ONDISPLAY CREATIVE</h2>\n<h1>LIVING STANDEES HAUNTING THEATERS</h1>\n<h3>ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS</h3>\n<h2>INSIDIOUS – THE LAST KEY</h2>\nMovie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!\n\n<img src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" width=\"768\" height=\"1024\">\n<img src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" width=\"768\" height=\"1024\">\nhttps://vimeo.com/257088337\n<h2>INSIDIOUS CHAPTER 3</h2>\nOnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.\n\n<img src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset.jpeg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset.jpeg 1000w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-300x240.jpeg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-768x614.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" width=\"1000\" height=\"800\">\nhttps://vimeo.com/130807026\n<h1>VIRTUAL REALITY EXPERIENCE</h1>\n<h3>SOMETHING SOMETHING SOMETHING</h3>\n<h2>SPIDER-MAN HOMECOMING DISPLAY</h2>\nSubmerse yourself in the world of your friendly neighborhood Spider-Man in this fun and thrilling VR Theatrical Display.&nbsp;&nbsp;Based on the all-new 2017 film, the Spider-Man Homecoming VR Experience is a first-person look through the eyes of Spidey himself.\n\n<img src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-1024x711.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-1024x711.jpg 1024w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-300x208.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-768x533.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" width=\"1024\" height=\"711\">\n<img src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834.jpg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834-225x300.jpg 225w\" sizes=\"(max-width: 750px) 100vw, 750px\" width=\"750\" height=\"1000\">\n<img src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788.jpg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788-150x150.jpg 150w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788-300x300.jpg 300w\" sizes=\"(max-width: 750px) 100vw, 750px\" width=\"750\" height=\"750\">\n<h4>Our company is a collective of amazing people striving to build delightful products.</h4>\nIt is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.\n\n<a href=\"#\" role=\"button\">\nRead More\n</a>','Home','','inherit','closed','closed','','5-revision-v1','','','2019-09-15 23:59:06','2019-09-15 23:59:06','',5,'http://23.235.208.11/~ondisp5/wp/2019/09/15/5-revision-v1/',0,'revision','',0),(235,1,'2019-09-14 23:26:06','2019-09-14 23:26:06','<h2>#WHAT\'S COOL</h2>		\n			<h2>INNOVATIONS FROM ONDISPLAY CREATIVE</h2>		\n			<h1>LIVING STANDEES HAUNTING THEATERS</h1>		\n			<h3>ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS</h3>		\n			<h2>INSIDIOUS – THE LAST KEY</h2>		\n		<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!</p>		\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n		https://vimeo.com/257088337		\n			<h2>INSIDIOUS CHAPTER 3</h2>		\n		<p>OnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.</p>		\n										<img width=\"1000\" height=\"800\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset.jpeg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset.jpeg 1000w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-300x240.jpeg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-768x614.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />											\n		https://vimeo.com/130807026		\n			<h1>VIRTUAL REALITY EXPERIENCE</h1>		\n			<h3>SOMETHING SOMETHING SOMETHING</h3>		\n			<h2>SPIDER-MAN HOMECOMING DISPLAY</h2>		\n		<p>Submerse yourself in the world of your friendly neighborhood Spider-Man in this fun and thrilling VR Theatrical Display.  Based on the all-new 2017 film, the Spider-Man Homecoming VR Experience is a first-person look through the eyes of Spidey himself.</p>		\n										<img width=\"1024\" height=\"711\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-1024x711.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-1024x711.jpg 1024w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-300x208.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-768x533.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n										<img width=\"750\" height=\"1000\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834.jpg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834-225x300.jpg 225w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n										<img width=\"750\" height=\"750\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788.jpg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788-150x150.jpg 150w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788-300x300.jpg 300w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n			<h4>Our company is a collective of amazing people striving to build delightful products.</h4>		\n		<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.</p>		\n			<a href=\"#\" role=\"button\">\n						Read More\n					</a>','Home','','inherit','closed','closed','','5-revision-v1','','','2019-09-14 23:26:06','2019-09-14 23:26:06','',5,'http://23.235.208.11/~ondisp5/wp/2019/09/14/5-revision-v1/',0,'revision','',0),(234,1,'2019-09-14 23:24:59','2019-09-14 23:24:59','<h2>#WHAT\'S COOL</h2>		\n			<h2>INNOVATIONS FROM ONDISPLAY CREATIVE</h2>		\n			<h1>LIVING STANDEES HAUNTING THEATERS</h1>		\n			<h3>ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS</h3>		\n			<h2>INSIDIOUS – THE LAST KEY</h2>		\n		<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!</p>		\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n		https://vimeo.com/257088337		\n			<h2>INSIDIOUS CHAPTER 3</h2>		\n		<p>OnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.</p>		\n										<img width=\"1000\" height=\"800\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset.jpeg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset.jpeg 1000w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-300x240.jpeg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-768x614.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />											\n		https://vimeo.com/130807026		\n			<h1>VIRTUAL REALITY EXPERIENCE</h1>		\n			<h3>SOMETHING SOMETHING SOMETHING</h3>		\n			<h2>SPIDER-MAN HOMECOMING DISPLAY</h2>		\n		<p>Submerse yourself in the world of your friendly neighborhood Spider-Man in this fun and thrilling VR Theatrical Display.  Based on the all-new 2017 film, the Spider-Man Homecoming VR Experience is a first-person look through the eyes of Spidey himself.</p>		\n										<img width=\"1024\" height=\"711\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-1024x711.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-1024x711.jpg 1024w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-300x208.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-768x533.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n										<img width=\"750\" height=\"1000\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834.jpg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834-225x300.jpg 225w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n										<img width=\"750\" height=\"750\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788.jpg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788-150x150.jpg 150w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788-300x300.jpg 300w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n			<h2>INSIDIOUS CHAPTER 3</h2>		\n			<h4>Our company is a collective of amazing people striving to build delightful products.</h4>		\n		<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.</p>		\n			<a href=\"#\" role=\"button\">\n						Read More\n					</a>','Home','','inherit','closed','closed','','5-revision-v1','','','2019-09-14 23:24:59','2019-09-14 23:24:59','',5,'http://23.235.208.11/~ondisp5/wp/2019/09/14/5-revision-v1/',0,'revision','',0),(228,1,'2019-09-14 23:08:43','2019-09-14 23:08:43','<h2>#WHAT\'S COOL</h2>		\n			<h2>INNOVATIONS FROM ONDISPLAY CREATIVE</h2>		\n			<h1>LIVING STANDEES HAUNTING THEATERS</h1>		\n			<h3>ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS</h3>		\n			<h2>INSIDIOUS – THE LAST KEY</h2>		\n		<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!</p>		\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n		https://vimeo.com/257088337		\n			<h2>INSIDIOUS CHAPTER 3</h2>		\n		<p>OnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.</p>		\n										<img width=\"1000\" height=\"800\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset.jpeg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset.jpeg 1000w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-300x240.jpeg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-768x614.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />											\n		https://vimeo.com/130807026		\n			<h1>VIRTUAL REALITY EXPERIENCE</h1>		\n			<h3>ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS</h3>		\n			<h2>SPIDER-MAN HOMECOMING DISPLAY</h2>		\n		<p>Submerse yourself in the world of your friendly neighborhood Spider-Man in this fun and thrilling VR Theatrical Display.  Based on the all-new 2017 film, the Spider-Man Homecoming VR Experience is a first-person look through the eyes of Spidey himself.</p>		\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n		https://vimeo.com/257088337		\n			<h2>INSIDIOUS CHAPTER 3</h2>		\n		<p>OnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.</p>		\n										<img width=\"1000\" height=\"800\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset.jpeg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset.jpeg 1000w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-300x240.jpeg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-768x614.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />											\n		https://vimeo.com/130807026		\n			<h4>Our company is a collective of amazing people striving to build delightful products.</h4>		\n		<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.</p>		\n			<a href=\"#\" role=\"button\">\n						Read More\n					</a>','Home','','inherit','closed','closed','','5-revision-v1','','','2019-09-14 23:08:43','2019-09-14 23:08:43','',5,'http://23.235.208.11/~ondisp5/wp/2019/09/14/5-revision-v1/',0,'revision','',0),(230,1,'2019-09-14 23:13:36','2019-09-14 23:13:36','','Spidey_Home_V4_002','','inherit','open','closed','','spidey_home_v4_002','','','2019-09-14 23:13:36','2019-09-14 23:13:36','',5,'http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002.jpg',0,'attachment','image/jpeg',0),(231,1,'2019-09-14 23:20:34','2019-09-14 23:20:34','','IMG_3834','','inherit','open','closed','','img_3834','','','2019-09-14 23:20:34','2019-09-14 23:20:34','',5,'http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834.jpg',0,'attachment','image/jpeg',0),(233,1,'2019-09-14 23:21:14','2019-09-14 23:21:14','','IMG_3788','','inherit','open','closed','','img_3788','','','2019-09-14 23:21:14','2019-09-14 23:21:14','',5,'http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788.jpg',0,'attachment','image/jpeg',0),(236,1,'2019-09-15 23:58:44','2019-09-15 23:58:44','<h2>#WHAT\'S COOL</h2>\n<h2>INNOVATIONS FROM ONDISPLAY CREATIVE</h2>\n<h1>LIVING STANDEES HAUNTING THEATERS</h1>\n<h3>ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS</h3>\n<h2>INSIDIOUS – THE LAST KEY</h2>\nMovie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!\n\n<img src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" width=\"768\" height=\"1024\">\n<img src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" width=\"768\" height=\"1024\">\nhttps://vimeo.com/257088337\n<h2>INSIDIOUS CHAPTER 3</h2>\nOnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.\n\n<img src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset.jpeg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset.jpeg 1000w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-300x240.jpeg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-768x614.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" width=\"1000\" height=\"800\">\nhttps://vimeo.com/130807026\n<h1>VIRTUAL REALITY EXPERIENCE</h1>\n<h3>SOMETHING SOMETHING SOMETHING</h3>\n<h2>SPIDER-MAN HOMECOMING DISPLAY</h2>\nSubmerse yourself in the world of your friendly neighborhood Spider-Man in this fun and thrilling VR Theatrical Display.&nbsp;&nbsp;Based on the all-new 2017 film, the Spider-Man Homecoming VR Experience is a first-person look through the eyes of Spidey himself.\n\n<img src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-1024x711.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-1024x711.jpg 1024w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-300x208.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-768x533.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" width=\"1024\" height=\"711\">\n<img src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834.jpg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834-225x300.jpg 225w\" sizes=\"(max-width: 750px) 100vw, 750px\" width=\"750\" height=\"1000\">\n<img src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788.jpg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788-150x150.jpg 150w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788-300x300.jpg 300w\" sizes=\"(max-width: 750px) 100vw, 750px\" width=\"750\" height=\"750\">\n<h4>Our company is a collective of amazing people striving to build delightful products.</h4>\nIt is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.\n\n<a href=\"#\" role=\"button\">\nRead More\n</a>','Home BU1','','publish','closed','closed','','home-2','','','2019-09-16 19:58:43','2019-09-16 19:58:43','',0,'http://23.235.208.11/~ondisp5/wp/?page_id=236',0,'page','',0),(237,1,'2019-09-15 23:58:44','2019-09-15 23:58:44','<h2>#WHAT\'S COOL</h2>\n<h2>INNOVATIONS FROM ONDISPLAY CREATIVE</h2>\n<h1>LIVING STANDEES HAUNTING THEATERS</h1>\n<h3>ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS</h3>\n<h2>INSIDIOUS – THE LAST KEY</h2>\nMovie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!\n\n<img src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" width=\"768\" height=\"1024\">\n<img src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" width=\"768\" height=\"1024\">\nhttps://vimeo.com/257088337\n<h2>INSIDIOUS CHAPTER 3</h2>\nOnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.\n\n<img src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset.jpeg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset.jpeg 1000w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-300x240.jpeg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-768x614.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" width=\"1000\" height=\"800\">\nhttps://vimeo.com/130807026\n<h1>VIRTUAL REALITY EXPERIENCE</h1>\n<h3>SOMETHING SOMETHING SOMETHING</h3>\n<h2>SPIDER-MAN HOMECOMING DISPLAY</h2>\nSubmerse yourself in the world of your friendly neighborhood Spider-Man in this fun and thrilling VR Theatrical Display.&nbsp;&nbsp;Based on the all-new 2017 film, the Spider-Man Homecoming VR Experience is a first-person look through the eyes of Spidey himself.\n\n<img src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-1024x711.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-1024x711.jpg 1024w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-300x208.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-768x533.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" width=\"1024\" height=\"711\">\n<img src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834.jpg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834-225x300.jpg 225w\" sizes=\"(max-width: 750px) 100vw, 750px\" width=\"750\" height=\"1000\">\n<img src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788.jpg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788-150x150.jpg 150w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788-300x300.jpg 300w\" sizes=\"(max-width: 750px) 100vw, 750px\" width=\"750\" height=\"750\">\n<h4>Our company is a collective of amazing people striving to build delightful products.</h4>\nIt is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.\n\n<a href=\"#\" role=\"button\">\nRead More\n</a>','Home BU1','','inherit','closed','closed','','236-revision-v1','','','2019-09-15 23:58:44','2019-09-15 23:58:44','',236,'http://23.235.208.11/~ondisp5/wp/2019/09/15/236-revision-v1/',0,'revision','',0),(277,1,'2019-09-16 19:58:42','2019-09-16 19:58:42','<h2>#WHAT\'S COOL</h2>\n<h2>INNOVATIONS FROM ONDISPLAY CREATIVE</h2>\n<h1>LIVING STANDEES HAUNTING THEATERS</h1>\n<h3>ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS</h3>\n<h2>INSIDIOUS – THE LAST KEY</h2>\nMovie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!\n\n<img src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" width=\"768\" height=\"1024\">\n<img src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" width=\"768\" height=\"1024\">\nhttps://vimeo.com/257088337\n<h2>INSIDIOUS CHAPTER 3</h2>\nOnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.\n\n<img src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset.jpeg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset.jpeg 1000w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-300x240.jpeg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-768x614.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" width=\"1000\" height=\"800\">\nhttps://vimeo.com/130807026\n<h1>VIRTUAL REALITY EXPERIENCE</h1>\n<h3>SOMETHING SOMETHING SOMETHING</h3>\n<h2>SPIDER-MAN HOMECOMING DISPLAY</h2>\nSubmerse yourself in the world of your friendly neighborhood Spider-Man in this fun and thrilling VR Theatrical Display.&nbsp;&nbsp;Based on the all-new 2017 film, the Spider-Man Homecoming VR Experience is a first-person look through the eyes of Spidey himself.\n\n<img src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-1024x711.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-1024x711.jpg 1024w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-300x208.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-768x533.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" width=\"1024\" height=\"711\">\n<img src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834.jpg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834-225x300.jpg 225w\" sizes=\"(max-width: 750px) 100vw, 750px\" width=\"750\" height=\"1000\">\n<img src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788.jpg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788-150x150.jpg 150w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788-300x300.jpg 300w\" sizes=\"(max-width: 750px) 100vw, 750px\" width=\"750\" height=\"750\">\n<h4>Our company is a collective of amazing people striving to build delightful products.</h4>\nIt is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.\n\n<a href=\"#\" role=\"button\">\nRead More\n</a>','Home BU1','','inherit','closed','closed','','236-revision-v1','','','2019-09-16 19:58:42','2019-09-16 19:58:42','',236,'http://23.235.208.11/~ondisp5/wp/2019/09/16/236-revision-v1/',0,'revision','',0),(239,1,'2019-09-16 00:15:22','2019-09-16 00:15:22','<h2>#WHAT\'S COOL</h2>		\n			<h2>INNOVATIONS FROM ONDISPLAY CREATIVE</h2>		\n			<h1>LIVING STANDEES HAUNTING THEATERS</h1>		\n			<h3>ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS</h3>		\n			<h2>INSIDIOUS – THE LAST KEY</h2>		\n		<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!</p>		\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n		https://vimeo.com/257088337		\n			<h2>INSIDIOUS CHAPTER 3</h2>		\n		<p>OnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.</p>		\n										<img width=\"1000\" height=\"800\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset.jpeg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset.jpeg 1000w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-300x240.jpeg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-768x614.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />											\n		https://vimeo.com/130807026		\n			<h1>VIRTUAL REALITY EXPERIENCE</h1>		\n			<h3>SOMETHING SOMETHING SOMETHING</h3>		\n			<h2>SPIDER-MAN HOMECOMING DISPLAY</h2>		\n		<p>Submerse yourself in the world of your friendly neighborhood Spider-Man in this fun and thrilling VR Theatrical Display.  Based on the all-new 2017 film, the Spider-Man Homecoming VR Experience is a first-person look through the eyes of Spidey himself.</p>		\n										<img width=\"1024\" height=\"711\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-1024x711.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-1024x711.jpg 1024w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-300x208.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-768x533.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n										<img width=\"750\" height=\"1000\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834.jpg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834-225x300.jpg 225w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n										<img width=\"750\" height=\"750\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788.jpg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788-150x150.jpg 150w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788-300x300.jpg 300w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n			<h4>Our company is a collective of amazing people striving to build delightful products.</h4>		\n		<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.</p>		\n			<a href=\"#\" role=\"button\">\n						Read More\n					</a>','Home BU1','','inherit','closed','closed','','236-revision-v1','','','2019-09-16 00:15:22','2019-09-16 00:15:22','',236,'http://23.235.208.11/~ondisp5/wp/2019/09/16/236-revision-v1/',0,'revision','',0),(240,1,'2019-09-16 00:16:43','2019-09-16 00:16:43','<h2>#WHAT\'S COOL</h2>		\n			<h2>INNOVATIONS FROM ONDISPLAY CREATIVE</h2>		\n			<h1>LIVING STANDEES HAUNTING THEATERS</h1>		\n			<h3>ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS</h3>		\n			<h2>INSIDIOUS – THE LAST KEY</h2>		\n		<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!</p>		\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n		https://vimeo.com/257088337		\n			<h2>INSIDIOUS CHAPTER 3</h2>		\n		<p>OnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.</p>		\n										<img width=\"1000\" height=\"800\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset.jpeg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset.jpeg 1000w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-300x240.jpeg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-768x614.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />											\n		https://vimeo.com/130807026		\n			<h1>VIRTUAL REALITY EXPERIENCE</h1>		\n			<h3>SOMETHING SOMETHING SOMETHING</h3>		\n			<h2>SPIDER-MAN HOMECOMING DISPLAY</h2>		\n		<p>Submerse yourself in the world of your friendly neighborhood Spider-Man in this fun and thrilling VR Theatrical Display.  Based on the all-new 2017 film, the Spider-Man Homecoming VR Experience is a first-person look through the eyes of Spidey himself.</p>		\n										<img width=\"1024\" height=\"711\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-1024x711.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-1024x711.jpg 1024w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-300x208.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-768x533.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n										<img width=\"750\" height=\"1000\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834.jpg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834-225x300.jpg 225w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n										<img width=\"750\" height=\"750\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788.jpg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788-150x150.jpg 150w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788-300x300.jpg 300w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n			<h4>Our company is a collective of amazing people striving to build delightful products.</h4>		\n		<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.</p>		\n			<a href=\"#\" role=\"button\">\n						Read More\n					</a>','Home BU1','','inherit','closed','closed','','236-revision-v1','','','2019-09-16 00:16:43','2019-09-16 00:16:43','',236,'http://23.235.208.11/~ondisp5/wp/2019/09/16/236-revision-v1/',0,'revision','',0),(245,1,'2019-09-16 00:43:34','2019-09-16 00:43:34','<h2>#WHAT\'S COOL</h2>\n<h2>INNOVATIONS FROM ONDISPLAY CREATIVE</h2>\n<h1>LIVING STANDEES HAUNTING THEATERS</h1>\n<h3>ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS</h3>\n<h2>INSIDIOUS – THE LAST KEY</h2>\nMovie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!\n\n<img src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" width=\"768\" height=\"1024\">\n<img src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" width=\"768\" height=\"1024\">\nhttps://vimeo.com/257088337\n<h2>INSIDIOUS CHAPTER 3</h2>\nOnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.\n\n<img src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset.jpeg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset.jpeg 1000w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-300x240.jpeg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-768x614.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" width=\"1000\" height=\"800\">\nhttps://vimeo.com/130807026\n<h1>VIRTUAL REALITY EXPERIENCE</h1>\n<h3>SOMETHING SOMETHING SOMETHING</h3>\n<h2>SPIDER-MAN HOMECOMING DISPLAY</h2>\nSubmerse yourself in the world of your friendly neighborhood Spider-Man in this fun and thrilling VR Theatrical Display.&nbsp;&nbsp;Based on the all-new 2017 film, the Spider-Man Homecoming VR Experience is a first-person look through the eyes of Spidey himself.\n\n<img src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-1024x711.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-1024x711.jpg 1024w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-300x208.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-768x533.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" width=\"1024\" height=\"711\">\n<img src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834.jpg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834-225x300.jpg 225w\" sizes=\"(max-width: 750px) 100vw, 750px\" width=\"750\" height=\"1000\">\n<img src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788.jpg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788-150x150.jpg 150w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788-300x300.jpg 300w\" sizes=\"(max-width: 750px) 100vw, 750px\" width=\"750\" height=\"750\">\n<h4>Our company is a collective of amazing people striving to build delightful products.</h4>\nIt is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.\n\n<a href=\"#\" role=\"button\">\nRead More\n</a>','Home','','inherit','closed','closed','','5-revision-v1','','','2019-09-16 00:43:34','2019-09-16 00:43:34','',5,'http://23.235.208.11/~ondisp5/wp/2019/09/16/5-revision-v1/',0,'revision','',0),(241,1,'2019-09-16 00:23:45','2019-09-16 00:23:45','<h2>#WHAT\'S COOL</h2>		\n			<h2>INNOVATIONS FROM ONDISPLAY CREATIVE</h2>		\n			<h1>LIVING STANDEES HAUNTING THEATERS</h1>		\n			<h3>ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS</h3>		\n			<h2>INSIDIOUS – THE LAST KEY</h2>		\n		<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!</p>		\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n		https://vimeo.com/257088337		\n			<h2>INSIDIOUS CHAPTER 3</h2>		\n		<p>OnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.</p>		\n										<img width=\"1000\" height=\"800\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset.jpeg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset.jpeg 1000w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-300x240.jpeg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-768x614.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />											\n		https://vimeo.com/130807026		\n			<h1>VIRTUAL REALITY EXPERIENCE</h1>		\n			<h3>SOMETHING SOMETHING SOMETHING</h3>		\n			<h2>SPIDER-MAN HOMECOMING DISPLAY</h2>		\n		<p>Submerse yourself in the world of your friendly neighborhood Spider-Man in this fun and thrilling VR Theatrical Display.  Based on the all-new 2017 film, the Spider-Man Homecoming VR Experience is a first-person look through the eyes of Spidey himself.</p>		\n										<img width=\"1024\" height=\"711\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-1024x711.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-1024x711.jpg 1024w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-300x208.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-768x533.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n										<img width=\"750\" height=\"1000\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834.jpg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834-225x300.jpg 225w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n										<img width=\"750\" height=\"750\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788.jpg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788-150x150.jpg 150w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788-300x300.jpg 300w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n			<h4>Our company is a collective of amazing people striving to build delightful products.</h4>		\n		<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.</p>		\n			<a href=\"#\" role=\"button\">\n						Read More\n					</a>','Home','','inherit','closed','closed','','5-revision-v1','','','2019-09-16 00:23:45','2019-09-16 00:23:45','',5,'http://23.235.208.11/~ondisp5/wp/2019/09/16/5-revision-v1/',0,'revision','',0),(544,1,'2019-09-24 13:57:51','0000-00-00 00:00:00','','Auto Draft','','auto-draft','open','open','','','','','2019-09-24 13:57:51','0000-00-00 00:00:00','',0,'http://23.235.208.11/~ondisp5/wp/?p=544',0,'post','',0),(246,1,'2019-09-16 00:51:45','2019-09-16 00:51:45','','test nav','','publish','closed','closed','','test-nav','','','2019-09-16 20:01:07','2019-09-16 20:01:07','',0,'http://23.235.208.11/~ondisp5/wp/?page_id=246',0,'page','',0),(247,1,'2019-09-16 00:51:45','2019-09-16 00:51:45','','test nav','','inherit','closed','closed','','246-revision-v1','','','2019-09-16 00:51:45','2019-09-16 00:51:45','',246,'http://23.235.208.11/~ondisp5/wp/2019/09/16/246-revision-v1/',0,'revision','',0),(256,1,'2019-09-16 01:15:53','2019-09-16 01:15:53','<h2>#WHAT\'S COOL</h2>\n<h2>INNOVATIONS FROM ONDISPLAY CREATIVE</h2>\n<h1>LIVING STANDEES HAUNTING THEATERS</h1>\n<h3>ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS</h3>\n<h2>INSIDIOUS – THE LAST KEY</h2>\nMovie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!\n\n<img src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" width=\"768\" height=\"1024\">\n<img src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" width=\"768\" height=\"1024\">\nhttps://vimeo.com/257088337\n<h2>INSIDIOUS CHAPTER 3</h2>\nOnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.\n\n<img src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset.jpeg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset.jpeg 1000w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-300x240.jpeg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-768x614.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" width=\"1000\" height=\"800\">\nhttps://vimeo.com/130807026\n<h1>VIRTUAL REALITY EXPERIENCE</h1>\n<h3>SOMETHING SOMETHING SOMETHING</h3>\n<h2>SPIDER-MAN HOMECOMING DISPLAY</h2>\nSubmerse yourself in the world of your friendly neighborhood Spider-Man in this fun and thrilling VR Theatrical Display.&nbsp;&nbsp;Based on the all-new 2017 film, the Spider-Man Homecoming VR Experience is a first-person look through the eyes of Spidey himself.\n\n<img src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-1024x711.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-1024x711.jpg 1024w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-300x208.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-768x533.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" width=\"1024\" height=\"711\">\n<img src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834.jpg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834-225x300.jpg 225w\" sizes=\"(max-width: 750px) 100vw, 750px\" width=\"750\" height=\"1000\">\n<img src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788.jpg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788-150x150.jpg 150w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788-300x300.jpg 300w\" sizes=\"(max-width: 750px) 100vw, 750px\" width=\"750\" height=\"750\">\n<h4>Our company is a collective of amazing people striving to build delightful products.</h4>\nIt is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.\n\n<a href=\"#\" role=\"button\">\nRead More\n</a>','Home','','inherit','closed','closed','','5-revision-v1','','','2019-09-16 01:15:53','2019-09-16 01:15:53','',5,'http://23.235.208.11/~ondisp5/wp/2019/09/16/5-revision-v1/',0,'revision','',0),(249,1,'2019-09-16 00:59:16','2019-09-16 00:59:16','<h2>#WHAT\'S COOL</h2>		\n			<h2>INNOVATIONS FROM ONDISPLAY CREATIVE</h2>		\n			<h1>LIVING STANDEES HAUNTING THEATERS</h1>		\n			<h3>ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS</h3>		\n			<h2>INSIDIOUS – THE LAST KEY</h2>		\n		<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!</p>		\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n		https://vimeo.com/257088337		\n			<h2>INSIDIOUS CHAPTER 3</h2>		\n		<p>OnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.</p>		\n										<img width=\"1000\" height=\"800\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset.jpeg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset.jpeg 1000w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-300x240.jpeg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-768x614.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />											\n		https://vimeo.com/130807026		\n			<h1>VIRTUAL REALITY EXPERIENCE</h1>		\n			<h3>SOMETHING SOMETHING SOMETHING</h3>		\n			<h2>SPIDER-MAN HOMECOMING DISPLAY</h2>		\n		<p>Submerse yourself in the world of your friendly neighborhood Spider-Man in this fun and thrilling VR Theatrical Display.  Based on the all-new 2017 film, the Spider-Man Homecoming VR Experience is a first-person look through the eyes of Spidey himself.</p>		\n										<img width=\"1024\" height=\"711\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-1024x711.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-1024x711.jpg 1024w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-300x208.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-768x533.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n										<img width=\"750\" height=\"1000\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834.jpg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834-225x300.jpg 225w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n										<img width=\"750\" height=\"750\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788.jpg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788-150x150.jpg 150w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788-300x300.jpg 300w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n			<h4>Our company is a collective of amazing people striving to build delightful products.</h4>		\n		<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.</p>		\n			<a href=\"#\" role=\"button\">\n						Read More\n					</a>','Home','','inherit','closed','closed','','5-revision-v1','','','2019-09-16 00:59:16','2019-09-16 00:59:16','',5,'http://23.235.208.11/~ondisp5/wp/2019/09/16/5-revision-v1/',0,'revision','',0),(250,1,'2019-09-16 01:00:33','2019-09-16 01:00:33','<h2>#WHAT\'S COOL</h2>		\n			<h2>INNOVATIONS FROM ONDISPLAY CREATIVE</h2>		\n			<h1>LIVING STANDEES HAUNTING THEATERS</h1>		\n			<h3>ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS</h3>		\n			<h2>INSIDIOUS – THE LAST KEY</h2>		\n		<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!</p>		\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n		https://vimeo.com/257088337		\n			<h2>INSIDIOUS CHAPTER 3</h2>		\n		<p>OnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.</p>		\n										<img width=\"1000\" height=\"800\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset.jpeg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset.jpeg 1000w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-300x240.jpeg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-768x614.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />											\n		https://vimeo.com/130807026		\n			<h1>VIRTUAL REALITY EXPERIENCE</h1>		\n			<h3>SOMETHING SOMETHING SOMETHING</h3>		\n			<h2>SPIDER-MAN HOMECOMING DISPLAY</h2>		\n		<p>Submerse yourself in the world of your friendly neighborhood Spider-Man in this fun and thrilling VR Theatrical Display.  Based on the all-new 2017 film, the Spider-Man Homecoming VR Experience is a first-person look through the eyes of Spidey himself.</p>		\n										<img width=\"1024\" height=\"711\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-1024x711.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-1024x711.jpg 1024w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-300x208.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-768x533.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n										<img width=\"750\" height=\"1000\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834.jpg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834-225x300.jpg 225w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n										<img width=\"750\" height=\"750\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788.jpg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788-150x150.jpg 150w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788-300x300.jpg 300w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n			<h4>Our company is a collective of amazing people striving to build delightful products.</h4>		\n		<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.</p>		\n			<a href=\"#\" role=\"button\">\n						Read More\n					</a>','Home','','inherit','closed','closed','','5-revision-v1','','','2019-09-16 01:00:33','2019-09-16 01:00:33','',5,'http://23.235.208.11/~ondisp5/wp/2019/09/16/5-revision-v1/',0,'revision','',0),(251,1,'2019-09-16 01:01:43','2019-09-16 01:01:43','<h2>#WHAT\'S COOL</h2>		\n			<h2>INNOVATIONS FROM ONDISPLAY CREATIVE</h2>		\n			<h1>LIVING STANDEES HAUNTING THEATERS</h1>		\n			<h3>ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS</h3>		\n			<h2>INSIDIOUS – THE LAST KEY</h2>		\n		<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!</p>		\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n		https://vimeo.com/257088337		\n			<h2>INSIDIOUS CHAPTER 3</h2>		\n		<p>OnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.</p>		\n										<img width=\"1000\" height=\"800\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset.jpeg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset.jpeg 1000w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-300x240.jpeg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-768x614.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />											\n		https://vimeo.com/130807026		\n			<h1>VIRTUAL REALITY EXPERIENCE</h1>		\n			<h3>SOMETHING SOMETHING SOMETHING</h3>		\n			<h2>SPIDER-MAN HOMECOMING DISPLAY</h2>		\n		<p>Submerse yourself in the world of your friendly neighborhood Spider-Man in this fun and thrilling VR Theatrical Display.  Based on the all-new 2017 film, the Spider-Man Homecoming VR Experience is a first-person look through the eyes of Spidey himself.</p>		\n										<img width=\"1024\" height=\"711\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-1024x711.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-1024x711.jpg 1024w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-300x208.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-768x533.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n										<img width=\"750\" height=\"1000\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834.jpg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834-225x300.jpg 225w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n										<img width=\"750\" height=\"750\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788.jpg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788-150x150.jpg 150w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788-300x300.jpg 300w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n			<h4>Our company is a collective of amazing people striving to build delightful products.</h4>		\n		<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.</p>		\n			<a href=\"#\" role=\"button\">\n						Read More\n					</a>','Home','','inherit','closed','closed','','5-revision-v1','','','2019-09-16 01:01:43','2019-09-16 01:01:43','',5,'http://23.235.208.11/~ondisp5/wp/2019/09/16/5-revision-v1/',0,'revision','',0),(252,1,'2019-09-16 01:07:39','2019-09-16 01:07:39','','header w/main nav','','publish','closed','closed','','header-w-main-nav','','','2019-09-17 12:48:31','2019-09-17 12:48:31','',0,'http://23.235.208.11/~ondisp5/wp/?post_type=elementor_library&#038;p=252',0,'elementor_library','',0),(253,1,'2019-09-16 01:08:08','2019-09-16 01:08:08','','Logo-W.png','','inherit','open','closed','','logo-w-png','','','2019-09-16 01:08:08','2019-09-16 01:08:08','',0,'http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Logo-W.png',0,'attachment','image/png',0),(254,1,'2019-09-16 01:14:48','2019-09-16 01:14:48','','header w/main nav','','inherit','closed','closed','','252-revision-v1','','','2019-09-16 01:14:48','2019-09-16 01:14:48','',252,'http://23.235.208.11/~ondisp5/wp/2019/09/16/252-revision-v1/',0,'revision','',0),(273,1,'2019-09-16 19:37:12','2019-09-16 19:37:12','','header w/main nav','','inherit','closed','closed','','252-revision-v1','','','2019-09-16 19:37:12','2019-09-16 19:37:12','',252,'http://23.235.208.11/~ondisp5/wp/2019/09/16/252-revision-v1/',0,'revision','',0),(274,1,'2019-09-16 19:38:53','2019-09-16 19:38:53','','header w/main nav','','inherit','closed','closed','','252-revision-v1','','','2019-09-16 19:38:53','2019-09-16 19:38:53','',252,'http://23.235.208.11/~ondisp5/wp/2019/09/16/252-revision-v1/',0,'revision','',0),(275,1,'2019-09-16 19:55:55','2019-09-16 19:55:55','','header w/main nav','','inherit','closed','closed','','252-revision-v1','','','2019-09-16 19:55:55','2019-09-16 19:55:55','',252,'http://23.235.208.11/~ondisp5/wp/2019/09/16/252-revision-v1/',0,'revision','',0),(259,1,'2019-09-16 01:24:38','2019-09-16 01:24:38','<img width=\"780\" height=\"79\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/a.png\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/a.png 780w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/a-300x30.png 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/a-768x78.png 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/a-400x41.png 400w\" sizes=\"(max-width: 780px) 100vw, 780px\" />','header w/main nav','','inherit','closed','closed','','252-revision-v1','','','2019-09-16 01:24:38','2019-09-16 01:24:38','',252,'http://23.235.208.11/~ondisp5/wp/2019/09/16/252-revision-v1/',0,'revision','',0),(255,1,'2019-09-16 01:14:48','2019-09-16 01:14:48','<img width=\"780\" height=\"79\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/a.png\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/a.png 780w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/a-300x30.png 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/a-768x78.png 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/a-400x41.png 400w\" sizes=\"(max-width: 780px) 100vw, 780px\" />											\n					<ul>\n							<li >\n										209-337-5705\n									</li>\n						</ul>','header w/main nav','','inherit','closed','closed','','252-revision-v1','','','2019-09-16 01:14:48','2019-09-16 01:14:48','',252,'http://23.235.208.11/~ondisp5/wp/2019/09/16/252-revision-v1/',0,'revision','',0),(258,1,'2019-09-16 01:19:49','2019-09-16 01:19:49','<h2>#WHAT\'S COOL</h2>\n<h2>INNOVATIONS FROM ONDISPLAY CREATIVE</h2>\n<h1>LIVING STANDEES HAUNTING THEATERS</h1>\n<h3>ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS</h3>\n<h2>INSIDIOUS – THE LAST KEY</h2>\nMovie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!\n\n<img src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" width=\"768\" height=\"1024\">\n<img src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" width=\"768\" height=\"1024\">\nhttps://vimeo.com/257088337\n<h2>INSIDIOUS CHAPTER 3</h2>\nOnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.\n\n<img src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset.jpeg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset.jpeg 1000w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-300x240.jpeg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-768x614.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" width=\"1000\" height=\"800\">\nhttps://vimeo.com/130807026\n<h1>VIRTUAL REALITY EXPERIENCE</h1>\n<h3>SOMETHING SOMETHING SOMETHING</h3>\n<h2>SPIDER-MAN HOMECOMING DISPLAY</h2>\nSubmerse yourself in the world of your friendly neighborhood Spider-Man in this fun and thrilling VR Theatrical Display.&nbsp;&nbsp;Based on the all-new 2017 film, the Spider-Man Homecoming VR Experience is a first-person look through the eyes of Spidey himself.\n\n<img src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-1024x711.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-1024x711.jpg 1024w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-300x208.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-768x533.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" width=\"1024\" height=\"711\">\n<img src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834.jpg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834-225x300.jpg 225w\" sizes=\"(max-width: 750px) 100vw, 750px\" width=\"750\" height=\"1000\">\n<img src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788.jpg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788-150x150.jpg 150w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788-300x300.jpg 300w\" sizes=\"(max-width: 750px) 100vw, 750px\" width=\"750\" height=\"750\">\n<h4>Our company is a collective of amazing people striving to build delightful products.</h4>\nIt is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.\n\n<a href=\"#\" role=\"button\">\nRead More\n</a>','Home','','inherit','closed','closed','','5-revision-v1','','','2019-09-16 01:19:49','2019-09-16 01:19:49','',5,'http://23.235.208.11/~ondisp5/wp/2019/09/16/5-revision-v1/',0,'revision','',0),(257,1,'2019-09-16 01:17:45','2019-09-16 01:17:45','<h2>#WHAT\'S COOL</h2>		\n			<h2>INNOVATIONS FROM ONDISPLAY CREATIVE</h2>		\n			<h1>LIVING STANDEES HAUNTING THEATERS</h1>		\n			<h3>ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS</h3>		\n			<h2>INSIDIOUS – THE LAST KEY</h2>		\n		<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!</p>		\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n		https://vimeo.com/257088337		\n			<h2>INSIDIOUS CHAPTER 3</h2>		\n		<p>OnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.</p>		\n										<img width=\"1000\" height=\"800\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset.jpeg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset.jpeg 1000w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-300x240.jpeg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-768x614.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />											\n		https://vimeo.com/130807026		\n			<h1>VIRTUAL REALITY EXPERIENCE</h1>		\n			<h3>SOMETHING SOMETHING SOMETHING</h3>		\n			<h2>SPIDER-MAN HOMECOMING DISPLAY</h2>		\n		<p>Submerse yourself in the world of your friendly neighborhood Spider-Man in this fun and thrilling VR Theatrical Display.  Based on the all-new 2017 film, the Spider-Man Homecoming VR Experience is a first-person look through the eyes of Spidey himself.</p>		\n										<img width=\"1024\" height=\"711\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-1024x711.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-1024x711.jpg 1024w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-300x208.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-768x533.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n										<img width=\"750\" height=\"1000\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834.jpg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834-225x300.jpg 225w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n										<img width=\"750\" height=\"750\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788.jpg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788-150x150.jpg 150w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788-300x300.jpg 300w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n			<h4>Our company is a collective of amazing people striving to build delightful products.</h4>		\n		<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.</p>		\n			<a href=\"#\" role=\"button\">\n						Read More\n					</a>','Home','','inherit','closed','closed','','5-revision-v1','','','2019-09-16 01:17:45','2019-09-16 01:17:45','',5,'http://23.235.208.11/~ondisp5/wp/2019/09/16/5-revision-v1/',0,'revision','',0),(260,1,'2019-09-16 01:27:35','2019-09-16 01:27:35','<img width=\"780\" height=\"79\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/a.png\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/a.png 780w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/a-300x30.png 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/a-768x78.png 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/a-400x41.png 400w\" sizes=\"(max-width: 780px) 100vw, 780px\" />','header w/main nav','','inherit','closed','closed','','252-revision-v1','','','2019-09-16 01:27:35','2019-09-16 01:27:35','',252,'http://23.235.208.11/~ondisp5/wp/2019/09/16/252-revision-v1/',0,'revision','',0),(261,1,'2019-09-16 01:30:58','2019-09-16 01:30:58','<img width=\"780\" height=\"79\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/a.png\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/a.png 780w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/a-300x30.png 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/a-768x78.png 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/a-400x41.png 400w\" sizes=\"(max-width: 780px) 100vw, 780px\" />','header w/main nav','','inherit','closed','closed','','252-revision-v1','','','2019-09-16 01:30:58','2019-09-16 01:30:58','',252,'http://23.235.208.11/~ondisp5/wp/2019/09/16/252-revision-v1/',0,'revision','',0),(262,1,'2019-09-16 01:33:55','2019-09-16 01:33:55','<img width=\"780\" height=\"79\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/a.png\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/a.png 780w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/a-300x30.png 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/a-768x78.png 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/a-400x41.png 400w\" sizes=\"(max-width: 780px) 100vw, 780px\" />','header w/main nav','','inherit','closed','closed','','252-revision-v1','','','2019-09-16 01:33:55','2019-09-16 01:33:55','',252,'http://23.235.208.11/~ondisp5/wp/2019/09/16/252-revision-v1/',0,'revision','',0),(263,1,'2019-09-16 02:56:30','2019-09-16 02:56:30','<img width=\"780\" height=\"79\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/a.png\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/a.png 780w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/a-300x30.png 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/a-768x78.png 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/a-400x41.png 400w\" sizes=\"(max-width: 780px) 100vw, 780px\" />','header w/main nav','','inherit','closed','closed','','252-revision-v1','','','2019-09-16 02:56:30','2019-09-16 02:56:30','',252,'http://23.235.208.11/~ondisp5/wp/2019/09/16/252-revision-v1/',0,'revision','',0),(265,1,'2019-09-16 03:00:40','2019-09-16 03:00:40','<img width=\"780\" height=\"79\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/a.png\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/a.png 780w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/a-300x30.png 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/a-768x78.png 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/a-400x41.png 400w\" sizes=\"(max-width: 780px) 100vw, 780px\" />','header w/main nav','','inherit','closed','closed','','252-revision-v1','','','2019-09-16 03:00:40','2019-09-16 03:00:40','',252,'http://23.235.208.11/~ondisp5/wp/2019/09/16/252-revision-v1/',0,'revision','',0),(266,1,'2019-09-16 03:01:07','2019-09-16 03:01:07','<img width=\"780\" height=\"79\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/a.png\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/a.png 780w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/a-300x30.png 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/a-768x78.png 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/a-400x41.png 400w\" sizes=\"(max-width: 780px) 100vw, 780px\" />','header w/main nav','','inherit','closed','closed','','252-revision-v1','','','2019-09-16 03:01:07','2019-09-16 03:01:07','',252,'http://23.235.208.11/~ondisp5/wp/2019/09/16/252-revision-v1/',0,'revision','',0),(267,1,'2019-09-16 03:01:23','2019-09-16 03:01:23','<img width=\"780\" height=\"79\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/a.png\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/a.png 780w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/a-300x30.png 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/a-768x78.png 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/a-400x41.png 400w\" sizes=\"(max-width: 780px) 100vw, 780px\" />','header w/main nav','','inherit','closed','closed','','252-revision-v1','','','2019-09-16 03:01:23','2019-09-16 03:01:23','',252,'http://23.235.208.11/~ondisp5/wp/2019/09/16/252-revision-v1/',0,'revision','',0),(268,1,'2019-09-16 03:01:44','2019-09-16 03:01:44','<img width=\"780\" height=\"79\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/a.png\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/a.png 780w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/a-300x30.png 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/a-768x78.png 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/a-400x41.png 400w\" sizes=\"(max-width: 780px) 100vw, 780px\" />','header w/main nav','','inherit','closed','closed','','252-revision-v1','','','2019-09-16 03:01:44','2019-09-16 03:01:44','',252,'http://23.235.208.11/~ondisp5/wp/2019/09/16/252-revision-v1/',0,'revision','',0),(269,1,'2019-09-16 03:04:47','2019-09-16 03:04:47','<img width=\"768\" height=\"78\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/a-768x78.png\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/a-768x78.png 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/a-300x30.png 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/a-400x41.png 400w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/a.png 780w\" sizes=\"(max-width: 768px) 100vw, 768px\" />','header w/main nav','','inherit','closed','closed','','252-revision-v1','','','2019-09-16 03:04:47','2019-09-16 03:04:47','',252,'http://23.235.208.11/~ondisp5/wp/2019/09/16/252-revision-v1/',0,'revision','',0),(270,1,'2019-09-17 20:30:34','2019-09-17 20:30:34','','nothing','','trash','closed','closed','','__trashed-3','','','2019-09-17 20:30:34','2019-09-17 20:30:34','',0,'http://23.235.208.11/~ondisp5/wp/?post_type=elementor_library&#038;p=270',0,'elementor_library','',0),(271,1,'2019-09-16 05:57:56','2019-09-16 05:57:56','','placeholder.png','','inherit','open','closed','','placeholder-png','','','2019-09-16 05:57:56','2019-09-16 05:57:56','',0,'http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/placeholder.png',0,'attachment','image/png',0),(272,1,'2019-09-16 13:15:07','2019-09-16 13:15:07','<img width=\"768\" height=\"78\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/a-768x78.png\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/a-768x78.png 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/a-300x30.png 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/a-400x41.png 400w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/a.png 780w\" sizes=\"(max-width: 768px) 100vw, 768px\" />','header w/main nav','','inherit','closed','closed','','252-revision-v1','','','2019-09-16 13:15:07','2019-09-16 13:15:07','',252,'http://23.235.208.11/~ondisp5/wp/2019/09/16/252-revision-v1/',0,'revision','',0),(276,1,'2019-09-17 20:30:34','2019-09-17 20:30:34','','wtf','','trash','closed','closed','','__trashed-2','','','2019-09-17 20:30:34','2019-09-17 20:30:34','',0,'http://23.235.208.11/~ondisp5/wp/?post_type=elementor_library&#038;p=276',0,'elementor_library','',0),(278,1,'2019-09-16 20:02:55','2019-09-16 20:02:55','','test nav','','inherit','closed','closed','','246-autosave-v1','','','2019-09-16 20:04:01','2019-09-16 20:04:01','',246,'http://23.235.208.11/~ondisp5/wp/2019/09/16/246-autosave-v1/',0,'revision','',0),(280,1,'2019-09-16 20:58:36','2019-09-16 20:58:36','<h1>PROXIMA NOVA h1</h1>		\n			<h2>PROXIMA NOVA h2</h2>		\n			<figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"default\" data-elementor-lightbox-slideshow=\"f098f2c\" href=\'http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/1c.png\'><img width=\"150\" height=\"150\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/1c-150x150.png\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/1c-150x150.png 150w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/1c-300x300.png 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/1c.png 501w\" sizes=\"(max-width: 150px) 100vw, 150px\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"default\" data-elementor-lightbox-slideshow=\"f098f2c\" href=\'http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/1b.png\'><img width=\"150\" height=\"150\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/1b-150x150.png\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/1b-150x150.png 150w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/1b-300x300.png 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/1b.png 500w\" sizes=\"(max-width: 150px) 100vw, 150px\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"default\" data-elementor-lightbox-slideshow=\"f098f2c\" href=\'http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/8522.png\'><img width=\"150\" height=\"150\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/8522-150x150.png\" alt=\"\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"default\" data-elementor-lightbox-slideshow=\"f098f2c\" href=\'http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/4.png\'><img width=\"150\" height=\"150\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/4-150x150.png\" alt=\"\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"default\" data-elementor-lightbox-slideshow=\"f098f2c\" href=\'http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/profile2.png\'><img width=\"150\" height=\"150\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/profile2-150x150.png\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/profile2-150x150.png 150w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/profile2-300x300.png 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/profile2.png 500w\" sizes=\"(max-width: 150px) 100vw, 150px\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"default\" data-elementor-lightbox-slideshow=\"f098f2c\" href=\'http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/divider-1.png\'><img width=\"150\" height=\"150\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/divider-1-150x150.png\" alt=\"\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"default\" data-elementor-lightbox-slideshow=\"f098f2c\" href=\'http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/BG24.png\'><img width=\"150\" height=\"150\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/BG24-150x150.png\" alt=\"\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"default\" data-elementor-lightbox-slideshow=\"f098f2c\" href=\'http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/johannes-waibel-4298.png\'><img width=\"150\" height=\"150\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/johannes-waibel-4298-150x150.png\" alt=\"\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"default\" data-elementor-lightbox-slideshow=\"f098f2c\" href=\'http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/markos-mant-228858.png\'><img width=\"150\" height=\"150\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/markos-mant-228858-150x150.png\" alt=\"\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"default\" data-elementor-lightbox-slideshow=\"f098f2c\" href=\'http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/lukas-neasi-65748.png\'><img width=\"150\" height=\"150\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/lukas-neasi-65748-150x150.png\" alt=\"\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"default\" data-elementor-lightbox-slideshow=\"f098f2c\" href=\'http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/mattias-olsson-160612.png\'><img width=\"150\" height=\"150\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/mattias-olsson-160612-150x150.png\" alt=\"\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"default\" data-elementor-lightbox-slideshow=\"f098f2c\" href=\'http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/tomas-kodydek-7492.png\'><img width=\"150\" height=\"150\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/tomas-kodydek-7492-150x150.png\" alt=\"\" /></a>\n			</figure>\n				<figure><img src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/1c-150x150.png\" alt=\"1c.png\" /><figcaption>1c.png</figcaption></figure><figure><img src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/1b-150x150.png\" alt=\"1b.png\" /><figcaption>1b.png</figcaption></figure><figure><img src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/mattias-olsson-160612-150x150.png\" alt=\"mattias-olsson-160612.png\" /><figcaption>mattias-olsson-160612.png</figcaption></figure><figure><img src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/lukas-neasi-65748-150x150.png\" alt=\"lukas-neasi-65748.png\" /><figcaption>lukas-neasi-65748.png</figcaption></figure><figure><img src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/markos-mant-228858-150x150.png\" alt=\"markos-mant-228858.png\" /><figcaption>markos-mant-228858.png</figcaption></figure><figure><img src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/profile2-150x150.png\" alt=\"profile2.png\" /><figcaption>profile2.png</figcaption></figure>','test 2','','inherit','closed','closed','','73-revision-v1','','','2019-09-16 20:58:36','2019-09-16 20:58:36','',73,'http://23.235.208.11/~ondisp5/wp/2019/09/16/73-revision-v1/',0,'revision','',0),(281,1,'2019-09-17 12:56:31','2019-09-17 12:56:31','{\n    \"astra-child::custom_logo\": {\n        \"value\": 18,\n        \"type\": \"theme_mod\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2019-09-17 12:56:04\"\n    }\n}','','','trash','closed','closed','','3dacad3e-efa0-4234-8332-590962e84e9c','','','2019-09-17 12:56:31','2019-09-17 12:56:31','',0,'http://23.235.208.11/~ondisp5/wp/?p=281',0,'customize_changeset','',0),(282,1,'2019-09-17 13:01:57','2019-09-17 13:01:57','{\n    \"custom_css[astra-child]\": {\n        \"value\": \".main-header-bar {\\n\\theight: 90px;\\n\\tpadding-top: 1px\\n}\",\n        \"type\": \"custom_css\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2019-09-17 13:01:57\"\n    }\n}','','','trash','closed','closed','','1ae501e4-2d41-4c4b-a08c-04947a40dc5a','','','2019-09-17 13:01:57','2019-09-17 13:01:57','',0,'http://23.235.208.11/~ondisp5/wp/?p=282',0,'customize_changeset','',0),(283,1,'2019-09-17 13:01:57','2019-09-17 13:01:57','.elementor-nav-menu--dropdown a:hover, \n.elementor-nav-menu--dropdown a.highlighted, \n.elementor-menu-toggle:hover { \ncolor: #ee7624 !important;\n}\n\n.elementor-nav-menu--dropdown a.elementor-item-active { \ncolor: #ee7624 !important;\n}\n\n\ndiv.elementor-menu-toggle:link,\ndiv.elementor-menu-toggle:visited,\ndiv.elementor-menu-toggle:hover,\ndiv.elementor-menu-toggle:active {\ncolor: #16161d !important;\n}','astra-child','','publish','closed','closed','','astra-child','','','2019-09-21 21:20:26','2019-09-21 21:20:26','',0,'http://23.235.208.11/~ondisp5/wp/2019/09/17/astra-child/',0,'custom_css','',0),(284,1,'2019-09-17 13:01:57','2019-09-17 13:01:57','.main-header-bar {\n	height: 90px;\n	padding-top: 1px\n}','astra-child','','inherit','closed','closed','','283-revision-v1','','','2019-09-17 13:01:57','2019-09-17 13:01:57','',283,'http://23.235.208.11/~ondisp5/wp/2019/09/17/283-revision-v1/',0,'revision','',0),(285,1,'2019-09-17 13:02:02','2019-09-17 13:02:02','{\n    \"custom_css[astra-child]\": {\n        \"value\": \".main-header-bar {\\n\\theight: 90px;\\n\\tpadding-top: 10px\\n}\",\n        \"type\": \"custom_css\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2019-09-17 13:02:02\"\n    }\n}','','','trash','closed','closed','','31e52cd1-8ea2-402b-ac4a-b28e36a3e207','','','2019-09-17 13:02:02','2019-09-17 13:02:02','',0,'http://23.235.208.11/~ondisp5/wp/2019/09/17/31e52cd1-8ea2-402b-ac4a-b28e36a3e207/',0,'customize_changeset','',0),(286,1,'2019-09-17 13:02:02','2019-09-17 13:02:02','.main-header-bar {\n	height: 90px;\n	padding-top: 10px\n}','astra-child','','inherit','closed','closed','','283-revision-v1','','','2019-09-17 13:02:02','2019-09-17 13:02:02','',283,'http://23.235.208.11/~ondisp5/wp/2019/09/17/283-revision-v1/',0,'revision','',0),(287,1,'2019-09-17 13:12:16','2019-09-17 13:12:16','{\n    \"custom_css[astra-child]\": {\n        \"value\": \".main-header-bar {\\n\\theight: 90px;\\npadding-top: 10px;\\n\\tpadding-bottom: 10px;\\n}\",\n        \"type\": \"custom_css\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2019-09-17 13:12:16\"\n    }\n}','','','trash','closed','closed','','25291b62-5b59-4a6b-80d3-e6ac02182e39','','','2019-09-17 13:12:16','2019-09-17 13:12:16','',0,'http://23.235.208.11/~ondisp5/wp/?p=287',0,'customize_changeset','',0),(288,1,'2019-09-17 13:12:16','2019-09-17 13:12:16','.main-header-bar {\n	height: 90px;\npadding-top: 10px;\n	padding-bottom: 10px;\n}','astra-child','','inherit','closed','closed','','283-revision-v1','','','2019-09-17 13:12:16','2019-09-17 13:12:16','',283,'http://23.235.208.11/~ondisp5/wp/2019/09/17/283-revision-v1/',0,'revision','',0),(289,1,'2019-09-17 13:18:53','2019-09-17 13:18:53','{\n    \"custom_css[astra-child]\": {\n        \"value\": \".main-header-bar {\\n\\theight: 90px;\\n}\\ndiv.ast-flex.main-header-container {\\n}\",\n        \"type\": \"custom_css\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2019-09-17 13:18:53\"\n    }\n}','','','trash','closed','closed','','8d04cd1d-0f8b-4e63-b2e6-61a90ece996e','','','2019-09-17 13:18:53','2019-09-17 13:18:53','',0,'http://23.235.208.11/~ondisp5/wp/?p=289',0,'customize_changeset','',0),(291,1,'2019-09-17 13:22:28','2019-09-17 13:22:28','{\n    \"custom_css[astra-child]\": {\n        \"value\": \".main-header-bar {\\n\\theight: 90px;\\n\\tline-height: 6;\\n}\\ndiv.ast-flex.main-header-container {\\n}\",\n        \"type\": \"custom_css\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2019-09-17 13:22:28\"\n    }\n}','','','trash','closed','closed','','c340e63b-e059-4558-b7bd-43d032e66614','','','2019-09-17 13:22:28','2019-09-17 13:22:28','',0,'http://23.235.208.11/~ondisp5/wp/2019/09/17/c340e63b-e059-4558-b7bd-43d032e66614/',0,'customize_changeset','',0),(290,1,'2019-09-17 13:18:53','2019-09-17 13:18:53','.main-header-bar {\n	height: 90px;\n}\ndiv.ast-flex.main-header-container {\n}','astra-child','','inherit','closed','closed','','283-revision-v1','','','2019-09-17 13:18:53','2019-09-17 13:18:53','',283,'http://23.235.208.11/~ondisp5/wp/2019/09/17/283-revision-v1/',0,'revision','',0),(294,1,'2019-09-17 13:38:02','2019-09-17 13:38:02','.main-header-bar {\n	height: 90px;\npadding-top: 1%\n}\n','astra-child','','inherit','closed','closed','','283-revision-v1','','','2019-09-17 13:38:02','2019-09-17 13:38:02','',283,'http://23.235.208.11/~ondisp5/wp/2019/09/17/283-revision-v1/',0,'revision','',0),(292,1,'2019-09-17 13:22:28','2019-09-17 13:22:28','.main-header-bar {\n	height: 90px;\n	line-height: 6;\n}\ndiv.ast-flex.main-header-container {\n}','astra-child','','inherit','closed','closed','','283-revision-v1','','','2019-09-17 13:22:28','2019-09-17 13:22:28','',283,'http://23.235.208.11/~ondisp5/wp/2019/09/17/283-revision-v1/',0,'revision','',0),(293,1,'2019-09-17 13:38:02','2019-09-17 13:38:02','{\n    \"custom_css[astra-child]\": {\n        \"value\": \".main-header-bar {\\n\\theight: 90px;\\npadding-top: 1%\\n}\\n\",\n        \"type\": \"custom_css\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2019-09-17 13:38:02\"\n    }\n}','','','trash','closed','closed','','abc698f5-8e4c-4a7e-9545-064803597afd','','','2019-09-17 13:38:02','2019-09-17 13:38:02','',0,'http://23.235.208.11/~ondisp5/wp/?p=293',0,'customize_changeset','',0),(295,1,'2019-09-17 13:38:26','2019-09-17 13:38:26','{\n    \"custom_css[astra-child]\": {\n        \"value\": \".main-header-bar {\\n\\theight: 90px;\\npadding-top: 1%;\\npadding-bottom: 1%;\\n}\\n\",\n        \"type\": \"custom_css\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2019-09-17 13:38:26\"\n    }\n}','','','trash','closed','closed','','6d1b66b7-c434-49d9-820a-1e537d1e2c02','','','2019-09-17 13:38:26','2019-09-17 13:38:26','',0,'http://23.235.208.11/~ondisp5/wp/2019/09/17/6d1b66b7-c434-49d9-820a-1e537d1e2c02/',0,'customize_changeset','',0),(296,1,'2019-09-17 13:38:26','2019-09-17 13:38:26','.main-header-bar {\n	height: 90px;\npadding-top: 1%;\npadding-bottom: 1%;\n}\n','astra-child','','inherit','closed','closed','','283-revision-v1','','','2019-09-17 13:38:26','2019-09-17 13:38:26','',283,'http://23.235.208.11/~ondisp5/wp/2019/09/17/283-revision-v1/',0,'revision','',0),(549,1,'2019-09-25 03:50:57','2019-09-25 03:50:57','','47Meters_02_cropped.jpg','','inherit','open','closed','','47meters_02_cropped-jpg','','','2019-09-25 03:50:57','2019-09-25 03:50:57','',0,'http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/47Meters_02_cropped.jpg.jpg',0,'attachment','image/jpeg',0),(298,1,'2019-09-17 20:30:34','2019-09-17 20:30:34','','wtf2','','trash','closed','closed','','__trashed','','','2019-09-17 20:30:34','2019-09-17 20:30:34','',0,'http://23.235.208.11/~ondisp5/wp/?post_type=elementor_library&#038;p=298',0,'elementor_library','',0),(299,1,'2019-09-17 20:30:34','2019-09-17 20:30:34','','wtf2','','inherit','closed','closed','','298-revision-v1','','','2019-09-17 20:30:34','2019-09-17 20:30:34','',298,'http://23.235.208.11/~ondisp5/wp/2019/09/17/298-revision-v1/',0,'revision','',0),(300,1,'2019-09-17 20:30:34','2019-09-17 20:30:34','','wtf','','inherit','closed','closed','','276-revision-v1','','','2019-09-17 20:30:34','2019-09-17 20:30:34','',276,'http://23.235.208.11/~ondisp5/wp/2019/09/17/276-revision-v1/',0,'revision','',0),(301,1,'2019-09-17 20:30:34','2019-09-17 20:30:34','','nothing','','inherit','closed','closed','','270-revision-v1','','','2019-09-17 20:30:34','2019-09-17 20:30:34','',270,'http://23.235.208.11/~ondisp5/wp/2019/09/17/270-revision-v1/',0,'revision','',0),(302,1,'2019-09-17 20:30:59','2019-09-17 20:30:59','<img width=\"780\" height=\"79\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/a-400x41.png\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/a.png 780w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/a-300x30.png 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/a-768x78.png 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/a-400x41.png 400w\" sizes=\"(max-width: 780px) 100vw, 780px\" />','header+nav','','publish','closed','closed','','wtf3','','','2019-09-21 21:22:46','2019-09-21 21:22:46','',0,'http://23.235.208.11/~ondisp5/wp/?post_type=elementor_library&#038;p=302',0,'elementor_library','',0),(303,1,'2019-09-17 20:33:47','2019-09-17 20:33:47','','wtf3','','inherit','closed','closed','','302-revision-v1','','','2019-09-17 20:33:47','2019-09-17 20:33:47','',302,'http://23.235.208.11/~ondisp5/wp/2019/09/17/302-revision-v1/',0,'revision','',0),(304,1,'2019-09-17 20:33:47','2019-09-17 20:33:47','<img width=\"500\" height=\"108\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Logo-W.png\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Logo-W.png 500w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Logo-W-300x65.png 300w\" sizes=\"(max-width: 500px) 100vw, 500px\" />','wtf3','','inherit','closed','closed','','302-revision-v1','','','2019-09-17 20:33:47','2019-09-17 20:33:47','',302,'http://23.235.208.11/~ondisp5/wp/2019/09/17/302-revision-v1/',0,'revision','',0),(305,1,'2019-09-17 20:35:32','2019-09-17 20:35:32','<img width=\"500\" height=\"108\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Logo-W.png\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Logo-W.png 500w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Logo-W-300x65.png 300w\" sizes=\"(max-width: 500px) 100vw, 500px\" />','wtf3','','inherit','closed','closed','','302-revision-v1','','','2019-09-17 20:35:32','2019-09-17 20:35:32','',302,'http://23.235.208.11/~ondisp5/wp/2019/09/17/302-revision-v1/',0,'revision','',0),(306,1,'2019-09-17 20:35:53','2019-09-17 20:35:53','<img width=\"500\" height=\"108\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Logo-W.png\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Logo-W.png 500w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Logo-W-300x65.png 300w\" sizes=\"(max-width: 500px) 100vw, 500px\" />','wtf3','','inherit','closed','closed','','302-revision-v1','','','2019-09-17 20:35:53','2019-09-17 20:35:53','',302,'http://23.235.208.11/~ondisp5/wp/2019/09/17/302-revision-v1/',0,'revision','',0),(307,1,'2019-09-17 20:38:14','2019-09-17 20:38:14','<img width=\"500\" height=\"108\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Logo-W.png\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Logo-W.png 500w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Logo-W-300x65.png 300w\" sizes=\"(max-width: 500px) 100vw, 500px\" />','wtf3','','inherit','closed','closed','','302-revision-v1','','','2019-09-17 20:38:14','2019-09-17 20:38:14','',302,'http://23.235.208.11/~ondisp5/wp/2019/09/17/302-revision-v1/',0,'revision','',0),(309,1,'2019-09-18 04:06:18','2019-09-18 04:06:18','<img width=\"780\" height=\"79\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/a-400x41.png\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/a.png 780w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/a-300x30.png 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/a-768x78.png 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/a-400x41.png 400w\" sizes=\"(max-width: 780px) 100vw, 780px\" />','wtf3','','inherit','closed','closed','','302-revision-v1','','','2019-09-18 04:06:18','2019-09-18 04:06:18','',302,'http://23.235.208.11/~ondisp5/wp/2019/09/18/302-revision-v1/',0,'revision','',0),(310,1,'2019-09-18 04:06:54','2019-09-18 04:06:54','<img width=\"300\" height=\"30\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/a-400x41.png\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/a-300x30.png 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/a-768x78.png 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/a-400x41.png 400w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/a.png 780w\" sizes=\"(max-width: 300px) 100vw, 300px\" />','wtf3','','inherit','closed','closed','','302-revision-v1','','','2019-09-18 04:06:54','2019-09-18 04:06:54','',302,'http://23.235.208.11/~ondisp5/wp/2019/09/18/302-revision-v1/',0,'revision','',0),(311,1,'2019-09-18 04:09:00','2019-09-18 04:09:00','<img width=\"300\" height=\"30\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/a-400x41.png\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/a-300x30.png 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/a-768x78.png 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/a-400x41.png 400w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/a.png 780w\" sizes=\"(max-width: 300px) 100vw, 300px\" />','wtf3','','inherit','closed','closed','','302-revision-v1','','','2019-09-18 04:09:00','2019-09-18 04:09:00','',302,'http://23.235.208.11/~ondisp5/wp/2019/09/18/302-revision-v1/',0,'revision','',0),(313,1,'2019-09-18 04:15:04','2019-09-18 04:15:04','<img width=\"300\" height=\"30\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/a-400x41.png\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/a-300x30.png 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/a-768x78.png 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/a-400x41.png 400w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/a.png 780w\" sizes=\"(max-width: 300px) 100vw, 300px\" />','wtf3','','inherit','closed','closed','','302-revision-v1','','','2019-09-18 04:15:04','2019-09-18 04:15:04','',302,'http://23.235.208.11/~ondisp5/wp/2019/09/18/302-revision-v1/',0,'revision','',0),(315,1,'2019-09-18 04:23:33','2019-09-18 04:23:33','<img width=\"300\" height=\"30\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/a-400x41.png\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/a-300x30.png 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/a-768x78.png 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/a-400x41.png 400w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/a.png 780w\" sizes=\"(max-width: 300px) 100vw, 300px\" />','wtf3','','inherit','closed','closed','','302-revision-v1','','','2019-09-18 04:23:33','2019-09-18 04:23:33','',302,'http://23.235.208.11/~ondisp5/wp/2019/09/18/302-revision-v1/',0,'revision','',0),(316,1,'2019-09-18 04:24:03','2019-09-18 04:24:03','{\n    \"custom_css[astra-child]\": {\n        \"value\": \"    .elementor-menu-toggle:before {\\n        position: relative;\\n      content: \\\"Menu\\\";\\n        padding-right: 10px;\\n        bottom: 3px;\\n        color: red;\\n    }\",\n        \"type\": \"custom_css\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2019-09-18 04:24:03\"\n    }\n}','','','trash','closed','closed','','4141c8d4-baf9-4a99-a289-8a0cdd28b9b9','','','2019-09-18 04:24:03','2019-09-18 04:24:03','',0,'http://23.235.208.11/~ondisp5/wp/2019/09/18/4141c8d4-baf9-4a99-a289-8a0cdd28b9b9/',0,'customize_changeset','',0),(319,1,'2019-09-18 04:24:22','2019-09-18 04:24:22','    .elementor-menu-toggle {\n        color: red;\n        background-color: transparent;\n    }','astra-child','','inherit','closed','closed','','283-revision-v1','','','2019-09-18 04:24:22','2019-09-18 04:24:22','',283,'http://23.235.208.11/~ondisp5/wp/2019/09/18/283-revision-v1/',0,'revision','',0),(317,1,'2019-09-18 04:24:03','2019-09-18 04:24:03','    .elementor-menu-toggle:before {\n        position: relative;\n      content: \"Menu\";\n        padding-right: 10px;\n        bottom: 3px;\n        color: red;\n    }','astra-child','','inherit','closed','closed','','283-revision-v1','','','2019-09-18 04:24:03','2019-09-18 04:24:03','',283,'http://23.235.208.11/~ondisp5/wp/2019/09/18/283-revision-v1/',0,'revision','',0),(318,1,'2019-09-18 04:24:22','2019-09-18 04:24:22','{\n    \"custom_css[astra-child]\": {\n        \"value\": \"    .elementor-menu-toggle {\\n        color: red;\\n        background-color: transparent;\\n    }\",\n        \"type\": \"custom_css\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2019-09-18 04:24:22\"\n    }\n}','','','trash','closed','closed','','b6a67fe4-ea3f-490c-921f-27527a59707c','','','2019-09-18 04:24:22','2019-09-18 04:24:22','',0,'http://23.235.208.11/~ondisp5/wp/2019/09/18/b6a67fe4-ea3f-490c-921f-27527a59707c/',0,'customize_changeset','',0),(320,1,'2019-09-18 04:24:54','2019-09-18 04:24:54','{\n    \"custom_css[astra-child]\": {\n        \"value\": \"    .elementor-menu-toggle:before {\\n        position: relative;\\n      content: \\\"Menu\\\";\\n        padding-right: 10px;\\n        bottom: 3px;\\n        color: red;\\n    }\",\n        \"type\": \"custom_css\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2019-09-18 04:24:54\"\n    }\n}','','','trash','closed','closed','','7ba852de-0ce4-4ef4-a69c-e46ad7c5e10a','','','2019-09-18 04:24:54','2019-09-18 04:24:54','',0,'http://23.235.208.11/~ondisp5/wp/2019/09/18/7ba852de-0ce4-4ef4-a69c-e46ad7c5e10a/',0,'customize_changeset','',0),(321,1,'2019-09-18 04:24:54','2019-09-18 04:24:54','    .elementor-menu-toggle:before {\n        position: relative;\n      content: \"Menu\";\n        padding-right: 10px;\n        bottom: 3px;\n        color: red;\n    }','astra-child','','inherit','closed','closed','','283-revision-v1','','','2019-09-18 04:24:54','2019-09-18 04:24:54','',283,'http://23.235.208.11/~ondisp5/wp/2019/09/18/283-revision-v1/',0,'revision','',0),(322,1,'2019-09-18 04:25:48','2019-09-18 04:25:48','{\n    \"custom_css[astra-child]\": {\n        \"value\": \"  #mobile-nav .elementor-menu-toggle:before {\\nposition: relative;\\ncontent: \\u201cMenu\\u201d;\\npadding-right: 10px;\\nbottom: 3px;\\ncolor: red;\\n}\\n\\n#mobile-nav .elementor-menu-toggle {\\ncolor: red;\\nbackground-color: transparent;\\n}\",\n        \"type\": \"custom_css\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2019-09-18 04:25:48\"\n    }\n}','','','trash','closed','closed','','6147e273-7d79-4679-8f90-b10b24b01925','','','2019-09-18 04:25:48','2019-09-18 04:25:48','',0,'http://23.235.208.11/~ondisp5/wp/2019/09/18/6147e273-7d79-4679-8f90-b10b24b01925/',0,'customize_changeset','',0),(325,1,'2019-09-18 04:31:02','2019-09-18 04:31:02','.eicon-menu-bar {\n	color: #16161d;\n}','astra-child','','inherit','closed','closed','','283-revision-v1','','','2019-09-18 04:31:02','2019-09-18 04:31:02','',283,'http://23.235.208.11/~ondisp5/wp/2019/09/18/283-revision-v1/',0,'revision','',0),(323,1,'2019-09-18 04:25:48','2019-09-18 04:25:48','  #mobile-nav .elementor-menu-toggle:before {\nposition: relative;\ncontent: “Menu”;\npadding-right: 10px;\nbottom: 3px;\ncolor: red;\n}\n\n#mobile-nav .elementor-menu-toggle {\ncolor: red;\nbackground-color: transparent;\n}','astra-child','','inherit','closed','closed','','283-revision-v1','','','2019-09-18 04:25:48','2019-09-18 04:25:48','',283,'http://23.235.208.11/~ondisp5/wp/2019/09/18/283-revision-v1/',0,'revision','',0),(324,1,'2019-09-18 04:31:02','2019-09-18 04:31:02','{\n    \"custom_css[astra-child]\": {\n        \"value\": \".eicon-menu-bar {\\n\\tcolor: #16161d;\\n}\",\n        \"type\": \"custom_css\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2019-09-18 04:30:58\"\n    }\n}','','','trash','closed','closed','','48510680-f9b7-4604-97ca-164093bf0fbe','','','2019-09-18 04:31:02','2019-09-18 04:31:02','',0,'http://23.235.208.11/~ondisp5/wp/?p=324',0,'customize_changeset','',0),(326,1,'2019-09-18 04:32:02','2019-09-18 04:32:02','{\n    \"custom_css[astra-child]\": {\n        \"value\": \".eicon-menu-bar a {\\n\\tcolor: #16161d;\\n}\\n.eicon-menu-bar a:hover {\\n\\tcolor: #16161d;\\n}\",\n        \"type\": \"custom_css\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2019-09-18 04:32:02\"\n    }\n}','','','trash','closed','closed','','c9b35caa-cba3-4a5d-8ad4-70225941a194','','','2019-09-18 04:32:02','2019-09-18 04:32:02','',0,'http://23.235.208.11/~ondisp5/wp/?p=326',0,'customize_changeset','',0),(328,1,'2019-09-18 04:32:12','2019-09-18 04:32:12','{\n    \"custom_css[astra-child]\": {\n        \"value\": \".eicon-menu-bar {\\n\\tcolor: #16161d;\\n}\\n.eicon-menu-bar a:hover {\\n\\tcolor: #16161d;\\n}\",\n        \"type\": \"custom_css\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2019-09-18 04:32:12\"\n    }\n}','','','trash','closed','closed','','94a1f72a-92ff-4b17-9659-02f6d66b7db0','','','2019-09-18 04:32:12','2019-09-18 04:32:12','',0,'http://23.235.208.11/~ondisp5/wp/2019/09/18/94a1f72a-92ff-4b17-9659-02f6d66b7db0/',0,'customize_changeset','',0),(335,1,'2019-09-18 04:38:53','2019-09-18 04:38:53','','astra-child','','inherit','closed','closed','','283-revision-v1','','','2019-09-18 04:38:53','2019-09-18 04:38:53','',283,'http://23.235.208.11/~ondisp5/wp/2019/09/18/283-revision-v1/',0,'revision','',0),(327,1,'2019-09-18 04:32:02','2019-09-18 04:32:02','.eicon-menu-bar a {\n	color: #16161d;\n}\n.eicon-menu-bar a:hover {\n	color: #16161d;\n}','astra-child','','inherit','closed','closed','','283-revision-v1','','','2019-09-18 04:32:02','2019-09-18 04:32:02','',283,'http://23.235.208.11/~ondisp5/wp/2019/09/18/283-revision-v1/',0,'revision','',0),(329,1,'2019-09-18 04:32:12','2019-09-18 04:32:12','.eicon-menu-bar {\n	color: #16161d;\n}\n.eicon-menu-bar a:hover {\n	color: #16161d;\n}','astra-child','','inherit','closed','closed','','283-revision-v1','','','2019-09-18 04:32:12','2019-09-18 04:32:12','',283,'http://23.235.208.11/~ondisp5/wp/2019/09/18/283-revision-v1/',0,'revision','',0),(330,1,'2019-09-18 04:33:15','2019-09-18 04:33:15','{\n    \"custom_css[astra-child]\": {\n        \"value\": \".eicon-menu-bar a {\\n\\tcolor: #16161d;\\n}\\n.eicon-menu-bar a:hover{\\n\\tcolor:red;\\n}\",\n        \"type\": \"custom_css\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2019-09-18 04:33:15\"\n    }\n}','','','trash','closed','closed','','791b8943-046c-465b-a9af-4736619d62d3','','','2019-09-18 04:33:15','2019-09-18 04:33:15','',0,'http://23.235.208.11/~ondisp5/wp/?p=330',0,'customize_changeset','',0),(331,1,'2019-09-18 04:33:15','2019-09-18 04:33:15','.eicon-menu-bar a {\n	color: #16161d;\n}\n.eicon-menu-bar a:hover{\n	color:red;\n}','astra-child','','inherit','closed','closed','','283-revision-v1','','','2019-09-18 04:33:15','2019-09-18 04:33:15','',283,'http://23.235.208.11/~ondisp5/wp/2019/09/18/283-revision-v1/',0,'revision','',0),(332,1,'2019-09-18 04:33:40','2019-09-18 04:33:40','<img width=\"300\" height=\"30\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/a-400x41.png\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/a-300x30.png 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/a-768x78.png 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/a-400x41.png 400w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/a.png 780w\" sizes=\"(max-width: 300px) 100vw, 300px\" />','wtf3','','inherit','closed','closed','','302-revision-v1','','','2019-09-18 04:33:40','2019-09-18 04:33:40','',302,'http://23.235.208.11/~ondisp5/wp/2019/09/18/302-revision-v1/',0,'revision','',0),(333,1,'2019-09-18 04:38:32','2019-09-18 04:38:32','<img width=\"300\" height=\"30\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/a-400x41.png\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/a-300x30.png 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/a-768x78.png 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/a-400x41.png 400w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/a.png 780w\" sizes=\"(max-width: 300px) 100vw, 300px\" />','wtf3','','inherit','closed','closed','','302-revision-v1','','','2019-09-18 04:38:32','2019-09-18 04:38:32','',302,'http://23.235.208.11/~ondisp5/wp/2019/09/18/302-revision-v1/',0,'revision','',0),(334,1,'2019-09-18 04:38:53','2019-09-18 04:38:53','{\n    \"custom_css[astra-child]\": {\n        \"value\": \"\",\n        \"type\": \"custom_css\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2019-09-18 04:38:53\"\n    }\n}','','','trash','closed','closed','','9525526f-d36c-408d-919e-ad7987664740','','','2019-09-18 04:38:53','2019-09-18 04:38:53','',0,'http://23.235.208.11/~ondisp5/wp/2019/09/18/9525526f-d36c-408d-919e-ad7987664740/',0,'customize_changeset','',0),(336,1,'2019-09-18 04:40:10','2019-09-18 04:40:10','<img width=\"300\" height=\"30\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/a-400x41.png\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/a-300x30.png 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/a-768x78.png 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/a-400x41.png 400w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/a.png 780w\" sizes=\"(max-width: 300px) 100vw, 300px\" />','header+nav','','inherit','closed','closed','','302-revision-v1','','','2019-09-18 04:40:10','2019-09-18 04:40:10','',302,'http://23.235.208.11/~ondisp5/wp/2019/09/18/302-revision-v1/',0,'revision','',0),(337,1,'2019-09-18 04:41:05','2019-09-18 04:41:05','<img width=\"300\" height=\"30\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/a-400x41.png\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/a-300x30.png 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/a-768x78.png 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/a-400x41.png 400w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/a.png 780w\" sizes=\"(max-width: 300px) 100vw, 300px\" />','header+nav','','inherit','closed','closed','','302-revision-v1','','','2019-09-18 04:41:05','2019-09-18 04:41:05','',302,'http://23.235.208.11/~ondisp5/wp/2019/09/18/302-revision-v1/',0,'revision','',0),(338,1,'2019-09-18 04:43:33','2019-09-18 04:43:33','<img width=\"300\" height=\"30\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/a-400x41.png\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/a-300x30.png 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/a-768x78.png 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/a-400x41.png 400w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/a.png 780w\" sizes=\"(max-width: 300px) 100vw, 300px\" />','header+nav','','inherit','closed','closed','','302-revision-v1','','','2019-09-18 04:43:33','2019-09-18 04:43:33','',302,'http://23.235.208.11/~ondisp5/wp/2019/09/18/302-revision-v1/',0,'revision','',0),(339,1,'2019-09-18 04:44:39','2019-09-18 04:44:39','<img width=\"300\" height=\"30\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/a-400x41.png\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/a-300x30.png 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/a-768x78.png 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/a-400x41.png 400w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/a.png 780w\" sizes=\"(max-width: 300px) 100vw, 300px\" />','header+nav','','inherit','closed','closed','','302-revision-v1','','','2019-09-18 04:44:39','2019-09-18 04:44:39','',302,'http://23.235.208.11/~ondisp5/wp/2019/09/18/302-revision-v1/',0,'revision','',0),(340,1,'2019-09-18 04:46:09','2019-09-18 04:46:09','<img width=\"300\" height=\"30\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/a-400x41.png\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/a-300x30.png 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/a-768x78.png 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/a-400x41.png 400w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/a.png 780w\" sizes=\"(max-width: 300px) 100vw, 300px\" />','header+nav','','inherit','closed','closed','','302-revision-v1','','','2019-09-18 04:46:09','2019-09-18 04:46:09','',302,'http://23.235.208.11/~ondisp5/wp/2019/09/18/302-revision-v1/',0,'revision','',0),(341,1,'2019-09-18 04:47:19','2019-09-18 04:47:19','<img width=\"300\" height=\"30\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/a-400x41.png\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/a-300x30.png 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/a-768x78.png 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/a-400x41.png 400w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/a.png 780w\" sizes=\"(max-width: 300px) 100vw, 300px\" />','header+nav','','inherit','closed','closed','','302-revision-v1','','','2019-09-18 04:47:19','2019-09-18 04:47:19','',302,'http://23.235.208.11/~ondisp5/wp/2019/09/18/302-revision-v1/',0,'revision','',0),(342,1,'2019-09-18 04:48:47','2019-09-18 04:48:47','<img width=\"300\" height=\"30\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/a-400x41.png\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/a-300x30.png 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/a-768x78.png 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/a-400x41.png 400w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/a.png 780w\" sizes=\"(max-width: 300px) 100vw, 300px\" />','header+nav','','inherit','closed','closed','','302-revision-v1','','','2019-09-18 04:48:47','2019-09-18 04:48:47','',302,'http://23.235.208.11/~ondisp5/wp/2019/09/18/302-revision-v1/',0,'revision','',0),(343,1,'2019-09-18 04:56:49','2019-09-18 04:56:49','<img width=\"300\" height=\"30\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/a-400x41.png\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/a-300x30.png 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/a-768x78.png 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/a-400x41.png 400w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/a.png 780w\" sizes=\"(max-width: 300px) 100vw, 300px\" />','header+nav','','inherit','closed','closed','','302-revision-v1','','','2019-09-18 04:56:49','2019-09-18 04:56:49','',302,'http://23.235.208.11/~ondisp5/wp/2019/09/18/302-revision-v1/',0,'revision','',0),(344,1,'2019-09-18 04:57:44','2019-09-18 04:57:44','<img width=\"300\" height=\"30\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/a-400x41.png\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/a-300x30.png 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/a-768x78.png 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/a-400x41.png 400w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/a.png 780w\" sizes=\"(max-width: 300px) 100vw, 300px\" />','header+nav','','inherit','closed','closed','','302-revision-v1','','','2019-09-18 04:57:44','2019-09-18 04:57:44','',302,'http://23.235.208.11/~ondisp5/wp/2019/09/18/302-revision-v1/',0,'revision','',0),(346,1,'2019-09-18 05:01:12','2019-09-18 05:01:12','<img width=\"300\" height=\"30\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/a-400x41.png\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/a-300x30.png 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/a-768x78.png 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/a-400x41.png 400w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/a.png 780w\" sizes=\"(max-width: 300px) 100vw, 300px\" />','header+nav','','inherit','closed','closed','','302-revision-v1','','','2019-09-18 05:01:12','2019-09-18 05:01:12','',302,'http://23.235.208.11/~ondisp5/wp/2019/09/18/302-revision-v1/',0,'revision','',0),(347,1,'2019-09-18 05:01:47','2019-09-18 05:01:47','<img width=\"300\" height=\"30\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/a-400x41.png\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/a-300x30.png 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/a-768x78.png 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/a-400x41.png 400w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/a.png 780w\" sizes=\"(max-width: 300px) 100vw, 300px\" />','header+nav','','inherit','closed','closed','','302-revision-v1','','','2019-09-18 05:01:47','2019-09-18 05:01:47','',302,'http://23.235.208.11/~ondisp5/wp/2019/09/18/302-revision-v1/',0,'revision','',0),(348,1,'2019-09-18 05:07:07','2019-09-18 05:07:07','<img width=\"768\" height=\"78\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/a-400x41.png\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/a-768x78.png 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/a-300x30.png 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/a-400x41.png 400w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/a.png 780w\" sizes=\"(max-width: 768px) 100vw, 768px\" />','header+nav','','inherit','closed','closed','','302-revision-v1','','','2019-09-18 05:07:07','2019-09-18 05:07:07','',302,'http://23.235.208.11/~ondisp5/wp/2019/09/18/302-revision-v1/',0,'revision','',0),(349,1,'2019-09-18 12:48:36','2019-09-18 12:48:36','<img width=\"768\" height=\"78\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/a-400x41.png\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/a-768x78.png 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/a-300x30.png 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/a-400x41.png 400w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/a.png 780w\" sizes=\"(max-width: 768px) 100vw, 768px\" />','header+nav','','inherit','closed','closed','','302-revision-v1','','','2019-09-18 12:48:36','2019-09-18 12:48:36','',302,'http://23.235.208.11/~ondisp5/wp/2019/09/18/302-revision-v1/',0,'revision','',0),(350,1,'2019-09-18 12:50:46','2019-09-18 12:50:46','<img width=\"768\" height=\"78\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/a-400x41.png\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/a-768x78.png 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/a-300x30.png 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/a-400x41.png 400w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/a.png 780w\" sizes=\"(max-width: 768px) 100vw, 768px\" />','header+nav','','inherit','closed','closed','','302-revision-v1','','','2019-09-18 12:50:46','2019-09-18 12:50:46','',302,'http://23.235.208.11/~ondisp5/wp/2019/09/18/302-revision-v1/',0,'revision','',0),(351,1,'2019-09-18 12:51:05','2019-09-18 12:51:05','<img width=\"768\" height=\"78\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/a-400x41.png\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/a-768x78.png 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/a-300x30.png 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/a-400x41.png 400w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/a.png 780w\" sizes=\"(max-width: 768px) 100vw, 768px\" />','header+nav','','inherit','closed','closed','','302-revision-v1','','','2019-09-18 12:51:05','2019-09-18 12:51:05','',302,'http://23.235.208.11/~ondisp5/wp/2019/09/18/302-revision-v1/',0,'revision','',0),(352,1,'2019-09-18 12:52:02','2019-09-18 12:52:02','<img width=\"768\" height=\"78\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/a-400x41.png\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/a-768x78.png 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/a-300x30.png 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/a-400x41.png 400w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/a.png 780w\" sizes=\"(max-width: 768px) 100vw, 768px\" />','header+nav','','inherit','closed','closed','','302-revision-v1','','','2019-09-18 12:52:02','2019-09-18 12:52:02','',302,'http://23.235.208.11/~ondisp5/wp/2019/09/18/302-revision-v1/',0,'revision','',0),(353,1,'2019-09-18 12:52:42','2019-09-18 12:52:42','<img width=\"768\" height=\"78\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/a-400x41.png\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/a-768x78.png 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/a-300x30.png 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/a-400x41.png 400w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/a.png 780w\" sizes=\"(max-width: 768px) 100vw, 768px\" />','header+nav','','inherit','closed','closed','','302-revision-v1','','','2019-09-18 12:52:42','2019-09-18 12:52:42','',302,'http://23.235.208.11/~ondisp5/wp/2019/09/18/302-revision-v1/',0,'revision','',0),(354,1,'2019-09-18 13:00:23','2019-09-18 13:00:23','<img width=\"768\" height=\"78\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/a-400x41.png\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/a-768x78.png 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/a-300x30.png 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/a-400x41.png 400w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/a.png 780w\" sizes=\"(max-width: 768px) 100vw, 768px\" />','header+nav','','inherit','closed','closed','','302-revision-v1','','','2019-09-18 13:00:23','2019-09-18 13:00:23','',302,'http://23.235.208.11/~ondisp5/wp/2019/09/18/302-revision-v1/',0,'revision','',0),(355,1,'2019-09-18 13:02:49','2019-09-18 13:02:49','<img width=\"780\" height=\"79\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/a-400x41.png\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/a.png 780w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/a-300x30.png 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/a-768x78.png 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/a-400x41.png 400w\" sizes=\"(max-width: 780px) 100vw, 780px\" />','header+nav','','inherit','closed','closed','','302-revision-v1','','','2019-09-18 13:02:49','2019-09-18 13:02:49','',302,'http://23.235.208.11/~ondisp5/wp/2019/09/18/302-revision-v1/',0,'revision','',0),(356,1,'2019-09-21 17:04:13','2019-09-21 17:04:13','<h2>#WHAT\'S COOL</h2>\n<h2>INNOVATIONS FROM ONDISPLAY CREATIVE</h2>\n<h1>LIVING STANDEES HAUNTING THEATERS</h1>\n<h3>ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS</h3>\n<h2>INSIDIOUS – THE LAST KEY</h2>\nMovie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!\n\n<img src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" width=\"768\" height=\"1024\">\n<img src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" width=\"768\" height=\"1024\">\nhttps://vimeo.com/257088337\n<h2>INSIDIOUS CHAPTER 3</h2>\nOnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.\n\n<img src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset.jpeg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset.jpeg 1000w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-300x240.jpeg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-768x614.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" width=\"1000\" height=\"800\">\nhttps://vimeo.com/130807026\n<h1>VIRTUAL REALITY EXPERIENCE</h1>\n<h3>SOMETHING SOMETHING SOMETHING</h3>\n<h2>SPIDER-MAN HOMECOMING DISPLAY</h2>\nSubmerse yourself in the world of your friendly neighborhood Spider-Man in this fun and thrilling VR Theatrical Display.&nbsp;&nbsp;Based on the all-new 2017 film, the Spider-Man Homecoming VR Experience is a first-person look through the eyes of Spidey himself.\n\n<img src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-1024x711.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-1024x711.jpg 1024w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-300x208.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-768x533.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" width=\"1024\" height=\"711\">\n<img src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834.jpg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834-225x300.jpg 225w\" sizes=\"(max-width: 750px) 100vw, 750px\" width=\"750\" height=\"1000\">\n<img src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788.jpg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788-150x150.jpg 150w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788-300x300.jpg 300w\" sizes=\"(max-width: 750px) 100vw, 750px\" width=\"750\" height=\"750\">\n<h4>Our company is a collective of amazing people striving to build delightful products.</h4>\nIt is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.\n\n<a href=\"#\" role=\"button\">\nRead More\n</a>','Home BU2','','publish','closed','closed','','home-3','','','2019-09-21 17:04:14','2019-09-21 17:04:14','',0,'http://23.235.208.11/~ondisp5/wp/?page_id=356',0,'page','',0),(357,1,'2019-09-21 17:04:13','2019-09-21 17:04:13','<h2>#WHAT\'S COOL</h2>\n<h2>INNOVATIONS FROM ONDISPLAY CREATIVE</h2>\n<h1>LIVING STANDEES HAUNTING THEATERS</h1>\n<h3>ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS</h3>\n<h2>INSIDIOUS – THE LAST KEY</h2>\nMovie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!\n\n<img src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" width=\"768\" height=\"1024\">\n<img src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" width=\"768\" height=\"1024\">\nhttps://vimeo.com/257088337\n<h2>INSIDIOUS CHAPTER 3</h2>\nOnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.\n\n<img src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset.jpeg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset.jpeg 1000w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-300x240.jpeg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-768x614.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" width=\"1000\" height=\"800\">\nhttps://vimeo.com/130807026\n<h1>VIRTUAL REALITY EXPERIENCE</h1>\n<h3>SOMETHING SOMETHING SOMETHING</h3>\n<h2>SPIDER-MAN HOMECOMING DISPLAY</h2>\nSubmerse yourself in the world of your friendly neighborhood Spider-Man in this fun and thrilling VR Theatrical Display.&nbsp;&nbsp;Based on the all-new 2017 film, the Spider-Man Homecoming VR Experience is a first-person look through the eyes of Spidey himself.\n\n<img src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-1024x711.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-1024x711.jpg 1024w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-300x208.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-768x533.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" width=\"1024\" height=\"711\">\n<img src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834.jpg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834-225x300.jpg 225w\" sizes=\"(max-width: 750px) 100vw, 750px\" width=\"750\" height=\"1000\">\n<img src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788.jpg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788-150x150.jpg 150w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788-300x300.jpg 300w\" sizes=\"(max-width: 750px) 100vw, 750px\" width=\"750\" height=\"750\">\n<h4>Our company is a collective of amazing people striving to build delightful products.</h4>\nIt is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.\n\n<a href=\"#\" role=\"button\">\nRead More\n</a>','Home BU2','','inherit','closed','closed','','356-revision-v1','','','2019-09-21 17:04:13','2019-09-21 17:04:13','',356,'http://23.235.208.11/~ondisp5/wp/2019/09/21/356-revision-v1/',0,'revision','',0),(364,1,'2019-09-21 17:34:54','2019-09-21 17:34:54','<h2>#WHAT\'S COOL</h2>\n<h2>INNOVATIONS FROM ONDISPLAY CREATIVE</h2>\n<h1>LIVING STANDEES HAUNTING THEATERS</h1>\n<h3>ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS</h3>\n<h2>INSIDIOUS – THE LAST KEY</h2>\nMovie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!\n\n<img src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" width=\"768\" height=\"1024\">\n<img src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" width=\"768\" height=\"1024\">\nhttps://vimeo.com/257088337\n<h2>INSIDIOUS CHAPTER 3</h2>\nOnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.\n\n<img src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset.jpeg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset.jpeg 1000w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-300x240.jpeg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-768x614.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" width=\"1000\" height=\"800\">\nhttps://vimeo.com/130807026\n<h1>VIRTUAL REALITY EXPERIENCE</h1>\n<h3>SOMETHING SOMETHING SOMETHING</h3>\n<h2>SPIDER-MAN HOMECOMING DISPLAY</h2>\nSubmerse yourself in the world of your friendly neighborhood Spider-Man in this fun and thrilling VR Theatrical Display.&nbsp;&nbsp;Based on the all-new 2017 film, the Spider-Man Homecoming VR Experience is a first-person look through the eyes of Spidey himself.\n\n<img src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-1024x711.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-1024x711.jpg 1024w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-300x208.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-768x533.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" width=\"1024\" height=\"711\">\n<img src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834.jpg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834-225x300.jpg 225w\" sizes=\"(max-width: 750px) 100vw, 750px\" width=\"750\" height=\"1000\">\n<img src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788.jpg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788-150x150.jpg 150w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788-300x300.jpg 300w\" sizes=\"(max-width: 750px) 100vw, 750px\" width=\"750\" height=\"750\">\n<h4>Our company is a collective of amazing people striving to build delightful products.</h4>\nIt is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.\n\n<a href=\"#\" role=\"button\">\nRead More\n</a>','Home','','inherit','closed','closed','','5-revision-v1','','','2019-09-21 17:34:54','2019-09-21 17:34:54','',5,'http://23.235.208.11/~ondisp5/wp/2019/09/21/5-revision-v1/',0,'revision','',0),(358,1,'2019-09-21 17:05:24','2019-09-21 17:05:24','<h2>#WHAT\'S COOL</h2>		\n			<h2>INNOVATIONS FROM ONDISPLAY CREATIVE</h2>		\n			<h1>LIVING STANDEES HAUNTING THEATERS</h1>		\n			<h3>ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS</h3>		\n			<h2>INSIDIOUS – THE LAST KEY</h2>		\n		<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!</p>		\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n		https://vimeo.com/257088337		\n			<h2>INSIDIOUS CHAPTER 3</h2>		\n		<p>OnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.</p>		\n										<img width=\"1000\" height=\"800\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset.jpeg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset.jpeg 1000w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-300x240.jpeg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-768x614.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />											\n		https://vimeo.com/130807026		\n			<h1>VIRTUAL REALITY EXPERIENCE</h1>		\n			<h3>SOMETHING SOMETHING SOMETHING</h3>		\n			<h2>SPIDER-MAN HOMECOMING DISPLAY</h2>		\n		<p>Submerse yourself in the world of your friendly neighborhood Spider-Man in this fun and thrilling VR Theatrical Display.  Based on the all-new 2017 film, the Spider-Man Homecoming VR Experience is a first-person look through the eyes of Spidey himself.</p>		\n										<img width=\"1024\" height=\"711\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-1024x711.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-1024x711.jpg 1024w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-300x208.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-768x533.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n										<img width=\"750\" height=\"1000\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834.jpg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834-225x300.jpg 225w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n										<img width=\"750\" height=\"750\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788.jpg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788-150x150.jpg 150w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788-300x300.jpg 300w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n			<h4>Our company is a collective of amazing people striving to build delightful products.</h4>		\n		<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.</p>		\n			<a href=\"#\" role=\"button\">\n						Read More\n					</a>','Home','','inherit','closed','closed','','5-revision-v1','','','2019-09-21 17:05:24','2019-09-21 17:05:24','',5,'http://23.235.208.11/~ondisp5/wp/2019/09/21/5-revision-v1/',0,'revision','',0),(359,1,'2019-09-21 17:06:31','2019-09-21 17:06:31','<h2>#WHAT\'S COOL</h2>		\n			<h2>INNOVATIONS FROM ONDISPLAY CREATIVE</h2>		\n			<h1>LIVING STANDEES HAUNTING THEATERS</h1>		\n			<h3>ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS</h3>		\n			<h2>INSIDIOUS – THE LAST KEY</h2>		\n		<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!</p>		\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n		https://vimeo.com/257088337		\n			<h2>INSIDIOUS CHAPTER 3</h2>		\n		<p>OnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.</p>		\n										<img width=\"1000\" height=\"800\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset.jpeg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset.jpeg 1000w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-300x240.jpeg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-768x614.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />											\n		https://vimeo.com/130807026		\n			<h1>VIRTUAL REALITY EXPERIENCE</h1>		\n			<h3>SOMETHING SOMETHING SOMETHING</h3>		\n			<h2>SPIDER-MAN HOMECOMING DISPLAY</h2>		\n		<p>Submerse yourself in the world of your friendly neighborhood Spider-Man in this fun and thrilling VR Theatrical Display.  Based on the all-new 2017 film, the Spider-Man Homecoming VR Experience is a first-person look through the eyes of Spidey himself.</p>		\n										<img width=\"1024\" height=\"711\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-1024x711.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-1024x711.jpg 1024w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-300x208.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-768x533.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n										<img width=\"750\" height=\"1000\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834.jpg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834-225x300.jpg 225w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n										<img width=\"750\" height=\"750\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788.jpg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788-150x150.jpg 150w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788-300x300.jpg 300w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n			<h4>Our company is a collective of amazing people striving to build delightful products.</h4>		\n		<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.</p>		\n			<a href=\"#\" role=\"button\">\n						Read More\n					</a>','Home','','inherit','closed','closed','','5-revision-v1','','','2019-09-21 17:06:31','2019-09-21 17:06:31','',5,'http://23.235.208.11/~ondisp5/wp/2019/09/21/5-revision-v1/',0,'revision','',0),(360,1,'2019-09-21 17:08:17','2019-09-21 17:08:17','<h2>#WHAT\'S COOL</h2>		\n			<h2>INNOVATIONS FROM ONDISPLAY CREATIVE</h2>		\n			<h1>LIVING STANDEES HAUNTING THEATERS</h1>		\n			<h3>ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS</h3>		\n			<h2>INSIDIOUS – THE LAST KEY</h2>		\n		<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!</p>		\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n		https://vimeo.com/257088337		\n			<h2>INSIDIOUS CHAPTER 3</h2>		\n		<p>OnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.</p>		\n										<img width=\"1000\" height=\"800\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset.jpeg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset.jpeg 1000w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-300x240.jpeg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-768x614.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />											\n		https://vimeo.com/130807026		\n			<h1>VIRTUAL REALITY EXPERIENCE</h1>		\n			<h3>SOMETHING SOMETHING SOMETHING</h3>		\n			<h2>SPIDER-MAN HOMECOMING DISPLAY</h2>		\n		<p>Submerse yourself in the world of your friendly neighborhood Spider-Man in this fun and thrilling VR Theatrical Display.  Based on the all-new 2017 film, the Spider-Man Homecoming VR Experience is a first-person look through the eyes of Spidey himself.</p>		\n										<img width=\"1024\" height=\"711\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-1024x711.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-1024x711.jpg 1024w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-300x208.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-768x533.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n										<img width=\"750\" height=\"1000\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834.jpg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834-225x300.jpg 225w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n										<img width=\"750\" height=\"750\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788.jpg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788-150x150.jpg 150w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788-300x300.jpg 300w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n			<h4>Our company is a collective of amazing people striving to build delightful products.</h4>		\n		<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.</p>		\n			<a href=\"#\" role=\"button\">\n						Read More\n					</a>','Home','','inherit','closed','closed','','5-revision-v1','','','2019-09-21 17:08:17','2019-09-21 17:08:17','',5,'http://23.235.208.11/~ondisp5/wp/2019/09/21/5-revision-v1/',0,'revision','',0),(361,1,'2019-09-21 17:10:11','2019-09-21 17:10:11','<h2>#WHAT\'S COOL</h2>		\n			<h2>INNOVATIONS FROM ONDISPLAY CREATIVE</h2>		\n			<h1>LIVING STANDEES HAUNTING THEATERS</h1>		\n			<h3>ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS</h3>		\n			<h2>INSIDIOUS – THE LAST KEY</h2>		\n		<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!</p>		\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n		https://vimeo.com/257088337		\n			<h2>INSIDIOUS CHAPTER 3</h2>		\n		<p>OnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.</p>		\n										<img width=\"1000\" height=\"800\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset.jpeg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset.jpeg 1000w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-300x240.jpeg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-768x614.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />											\n		https://vimeo.com/130807026		\n			<h1>VIRTUAL REALITY EXPERIENCE</h1>		\n			<h3>SOMETHING SOMETHING SOMETHING</h3>		\n			<h2>SPIDER-MAN HOMECOMING DISPLAY</h2>		\n		<p>Submerse yourself in the world of your friendly neighborhood Spider-Man in this fun and thrilling VR Theatrical Display.  Based on the all-new 2017 film, the Spider-Man Homecoming VR Experience is a first-person look through the eyes of Spidey himself.</p>		\n										<img width=\"1024\" height=\"711\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-1024x711.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-1024x711.jpg 1024w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-300x208.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-768x533.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n										<img width=\"750\" height=\"1000\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834.jpg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834-225x300.jpg 225w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n										<img width=\"750\" height=\"750\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788.jpg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788-150x150.jpg 150w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788-300x300.jpg 300w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n			<h4>Our company is a collective of amazing people striving to build delightful products.</h4>		\n		<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.</p>		\n			<a href=\"#\" role=\"button\">\n						Read More\n					</a>','Home','','inherit','closed','closed','','5-revision-v1','','','2019-09-21 17:10:11','2019-09-21 17:10:11','',5,'http://23.235.208.11/~ondisp5/wp/2019/09/21/5-revision-v1/',0,'revision','',0),(362,1,'2019-09-21 17:10:33','2019-09-21 17:10:33','<h2>#WHAT\'S COOL</h2>		\n			<h2>INNOVATIONS FROM ONDISPLAY CREATIVE</h2>		\n			<h1>LIVING STANDEES HAUNTING THEATERS</h1>		\n			<h3>ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS</h3>		\n			<h2>INSIDIOUS – THE LAST KEY</h2>		\n		<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!</p>		\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n		https://vimeo.com/257088337		\n			<h2>INSIDIOUS CHAPTER 3</h2>		\n		<p>OnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.</p>		\n										<img width=\"1000\" height=\"800\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset.jpeg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset.jpeg 1000w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-300x240.jpeg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-768x614.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />											\n		https://vimeo.com/130807026		\n			<h1>VIRTUAL REALITY EXPERIENCE</h1>		\n			<h3>SOMETHING SOMETHING SOMETHING</h3>		\n			<h2>SPIDER-MAN HOMECOMING DISPLAY</h2>		\n		<p>Submerse yourself in the world of your friendly neighborhood Spider-Man in this fun and thrilling VR Theatrical Display.  Based on the all-new 2017 film, the Spider-Man Homecoming VR Experience is a first-person look through the eyes of Spidey himself.</p>		\n										<img width=\"1024\" height=\"711\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-1024x711.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-1024x711.jpg 1024w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-300x208.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-768x533.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n										<img width=\"750\" height=\"1000\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834.jpg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834-225x300.jpg 225w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n										<img width=\"750\" height=\"750\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788.jpg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788-150x150.jpg 150w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788-300x300.jpg 300w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n			<h4>Our company is a collective of amazing people striving to build delightful products.</h4>		\n		<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.</p>		\n			<a href=\"#\" role=\"button\">\n						Read More\n					</a>','Home','','inherit','closed','closed','','5-revision-v1','','','2019-09-21 17:10:33','2019-09-21 17:10:33','',5,'http://23.235.208.11/~ondisp5/wp/2019/09/21/5-revision-v1/',0,'revision','',0),(363,1,'2019-09-21 17:32:32','2019-09-21 17:32:32','<h2>#WHAT\'S COOL</h2>		\n			<h2>INNOVATIONS FROM ONDISPLAY CREATIVE</h2>		\n			<h1>LIVING STANDEES HAUNTING THEATERS</h1>		\n			<h3>ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS</h3>		\n			<h2>INSIDIOUS – THE LAST KEY</h2>		\n		<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!</p>		\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n		https://vimeo.com/257088337		\n			<h2>INSIDIOUS CHAPTER 3</h2>		\n		<p>OnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.</p>		\n										<img width=\"1000\" height=\"800\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset.jpeg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset.jpeg 1000w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-300x240.jpeg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-768x614.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />											\n		https://vimeo.com/130807026		\n			<h1>VIRTUAL REALITY EXPERIENCE</h1>		\n			<h3>SOMETHING SOMETHING SOMETHING</h3>		\n			<h2>SPIDER-MAN HOMECOMING DISPLAY</h2>		\n		<p>Submerse yourself in the world of your friendly neighborhood Spider-Man in this fun and thrilling VR Theatrical Display.  Based on the all-new 2017 film, the Spider-Man Homecoming VR Experience is a first-person look through the eyes of Spidey himself.</p>		\n										<img width=\"1024\" height=\"711\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-1024x711.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-1024x711.jpg 1024w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-300x208.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-768x533.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n										<img width=\"750\" height=\"1000\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834.jpg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834-225x300.jpg 225w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n										<img width=\"750\" height=\"750\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788.jpg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788-150x150.jpg 150w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788-300x300.jpg 300w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n			<h4>Our company is a collective of amazing people striving to build delightful products.</h4>		\n		<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.</p>		\n			<a href=\"#\" role=\"button\">\n						Read More\n					</a>','Home','','inherit','closed','closed','','5-revision-v1','','','2019-09-21 17:32:32','2019-09-21 17:32:32','',5,'http://23.235.208.11/~ondisp5/wp/2019/09/21/5-revision-v1/',0,'revision','',0),(393,1,'2019-09-21 20:48:32','2019-09-21 20:48:32','<h2>#WHAT\'S COOL</h2>\n<h2>INNOVATIONS FROM ONDISPLAY CREATIVE</h2>\n<h1>LIVING STANDEES HAUNTING THEATERS</h1>\n<h3>ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS</h3>\n<h2>INSIDIOUS – THE LAST KEY</h2>\nMovie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!\n\n<img src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" width=\"768\" height=\"1024\">\n<img src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" width=\"768\" height=\"1024\">\nhttps://vimeo.com/257088337\n<h2>INSIDIOUS CHAPTER 3</h2>\nOnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.\n\n<img src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset.jpeg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset.jpeg 1000w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-300x240.jpeg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-768x614.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" width=\"1000\" height=\"800\">\nhttps://vimeo.com/130807026\n<h1>VIRTUAL REALITY EXPERIENCE</h1>\n<h3>SOMETHING SOMETHING SOMETHING</h3>\n<h2>SPIDER-MAN HOMECOMING DISPLAY</h2>\nSubmerse yourself in the world of your friendly neighborhood Spider-Man in this fun and thrilling VR Theatrical Display.&nbsp;&nbsp;Based on the all-new 2017 film, the Spider-Man Homecoming VR Experience is a first-person look through the eyes of Spidey himself.\n\n<img src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-1024x711.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-1024x711.jpg 1024w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-300x208.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-768x533.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" width=\"1024\" height=\"711\">\n<img src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834.jpg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834-225x300.jpg 225w\" sizes=\"(max-width: 750px) 100vw, 750px\" width=\"750\" height=\"1000\">\n<img src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788.jpg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788-150x150.jpg 150w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788-300x300.jpg 300w\" sizes=\"(max-width: 750px) 100vw, 750px\" width=\"750\" height=\"750\">\n<h4>Our company is a collective of amazing people striving to build delightful products.</h4>\nIt is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.\n\n<a href=\"#\" role=\"button\">\nRead More\n</a>','Home','','inherit','closed','closed','','5-revision-v1','','','2019-09-21 20:48:32','2019-09-21 20:48:32','',5,'http://23.235.208.11/~ondisp5/wp/2019/09/21/5-revision-v1/',0,'revision','',0),(365,1,'2019-09-21 17:42:23','2019-09-21 17:42:23','<h2>#WHAT\'S COOL</h2>		\n			<h2>INNOVATIONS FROM ONDISPLAY CREATIVE</h2>		\n			<h1>LIVING STANDEES HAUNTING THEATERS</h1>		\n			<h3>ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS</h3>		\n			<h2>INSIDIOUS – THE LAST KEY</h2>		\n		<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!</p>		\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n		https://vimeo.com/257088337		\n			<h2>INSIDIOUS CHAPTER 3</h2>		\n		<p>OnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.</p>		\n										<img width=\"1000\" height=\"800\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset.jpeg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset.jpeg 1000w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-300x240.jpeg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-768x614.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />											\n		https://vimeo.com/130807026		\n			<h1>VIRTUAL REALITY EXPERIENCE</h1>		\n			<h3>SOMETHING SOMETHING SOMETHING</h3>		\n			<h2>SPIDER-MAN HOMECOMING DISPLAY</h2>		\n		<p>Submerse yourself in the world of your friendly neighborhood Spider-Man in this fun and thrilling VR Theatrical Display.  Based on the all-new 2017 film, the Spider-Man Homecoming VR Experience is a first-person look through the eyes of Spidey himself.</p>		\n										<img width=\"1024\" height=\"711\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-1024x711.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-1024x711.jpg 1024w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-300x208.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-768x533.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n										<img width=\"750\" height=\"1000\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834.jpg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834-225x300.jpg 225w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n										<img width=\"750\" height=\"750\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788.jpg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788-150x150.jpg 150w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788-300x300.jpg 300w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n			<h4>Our company is a collective of amazing people striving to build delightful products.</h4>		\n		<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.</p>		\n			<a href=\"#\" role=\"button\">\n						Read More\n					</a>','Home','','inherit','closed','closed','','5-revision-v1','','','2019-09-21 17:42:23','2019-09-21 17:42:23','',5,'http://23.235.208.11/~ondisp5/wp/2019/09/21/5-revision-v1/',0,'revision','',0),(366,1,'2019-09-21 17:43:07','2019-09-21 17:43:07','<h2>#WHAT\'S COOL</h2>		\n			<h2>INNOVATIONS FROM ONDISPLAY CREATIVE</h2>		\n			<h1>LIVING STANDEES HAUNTING THEATERS</h1>		\n			<h3>ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS</h3>		\n			<h2>INSIDIOUS – THE LAST KEY</h2>		\n		<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!</p>		\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n		https://vimeo.com/257088337		\n			<h2>INSIDIOUS CHAPTER 3</h2>		\n		<p>OnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.</p>		\n										<img width=\"1000\" height=\"800\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset.jpeg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset.jpeg 1000w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-300x240.jpeg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-768x614.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />											\n		https://vimeo.com/130807026		\n			<h1>VIRTUAL REALITY EXPERIENCE</h1>		\n			<h3>SOMETHING SOMETHING SOMETHING</h3>		\n			<h2>SPIDER-MAN HOMECOMING DISPLAY</h2>		\n		<p>Submerse yourself in the world of your friendly neighborhood Spider-Man in this fun and thrilling VR Theatrical Display.  Based on the all-new 2017 film, the Spider-Man Homecoming VR Experience is a first-person look through the eyes of Spidey himself.</p>		\n										<img width=\"1024\" height=\"711\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-1024x711.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-1024x711.jpg 1024w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-300x208.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-768x533.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n										<img width=\"750\" height=\"1000\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834.jpg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834-225x300.jpg 225w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n										<img width=\"750\" height=\"750\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788.jpg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788-150x150.jpg 150w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788-300x300.jpg 300w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n			<h4>Our company is a collective of amazing people striving to build delightful products.</h4>		\n		<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.</p>		\n			<a href=\"#\" role=\"button\">\n						Read More\n					</a>','Home','','inherit','closed','closed','','5-revision-v1','','','2019-09-21 17:43:07','2019-09-21 17:43:07','',5,'http://23.235.208.11/~ondisp5/wp/2019/09/21/5-revision-v1/',0,'revision','',0),(367,1,'2019-09-21 18:37:01','2019-09-21 18:37:01','<h2>#WHAT\'S COOL</h2>		\n			<h2>INNOVATIONS FROM ONDISPLAY CREATIVE</h2>		\n			<h1>LIVING STANDEES HAUNTING THEATERS</h1>		\n			<h3>ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS</h3>		\n			<h2>INSIDIOUS – THE LAST KEY</h2>		\n		<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!</p>		\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n		https://vimeo.com/257088337		\n			<h2>INSIDIOUS CHAPTER 3</h2>		\n		<p>OnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.</p>		\n										<img width=\"1000\" height=\"800\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset.jpeg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset.jpeg 1000w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-300x240.jpeg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-768x614.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />											\n		https://vimeo.com/130807026		\n			<h1>VIRTUAL REALITY EXPERIENCE</h1>		\n			<h3>SOMETHING SOMETHING SOMETHING</h3>		\n			<h2>SPIDER-MAN HOMECOMING DISPLAY</h2>		\n		<p>Submerse yourself in the world of your friendly neighborhood Spider-Man in this fun and thrilling VR Theatrical Display.  Based on the all-new 2017 film, the Spider-Man Homecoming VR Experience is a first-person look through the eyes of Spidey himself.</p>		\n										<img width=\"1024\" height=\"711\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-1024x711.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-1024x711.jpg 1024w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-300x208.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-768x533.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n										<img width=\"750\" height=\"1000\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834.jpg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834-225x300.jpg 225w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n										<img width=\"750\" height=\"750\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788.jpg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788-150x150.jpg 150w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788-300x300.jpg 300w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n			<h4>Our company is a collective of amazing people striving to build delightful products.</h4>		\n		<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.</p>		\n			<a href=\"#\" role=\"button\">\n						Read More\n					</a>','Home','','inherit','closed','closed','','5-revision-v1','','','2019-09-21 18:37:01','2019-09-21 18:37:01','',5,'http://23.235.208.11/~ondisp5/wp/2019/09/21/5-revision-v1/',0,'revision','',0),(368,1,'2019-09-21 18:37:52','2019-09-21 18:37:52','<h2>#WHAT\'S COOL</h2>		\n			<h2>INNOVATIONS FROM ONDISPLAY CREATIVE</h2>		\n			<h1>LIVING STANDEES HAUNTING THEATERS</h1>		\n			<h3>ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS</h3>		\n			<h2>INSIDIOUS – THE LAST KEY</h2>		\n		<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!</p>		\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n		https://vimeo.com/257088337		\n			<h2>INSIDIOUS CHAPTER 3</h2>		\n		<p>OnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.</p>		\n										<img width=\"1000\" height=\"800\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset.jpeg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset.jpeg 1000w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-300x240.jpeg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-768x614.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />											\n		https://vimeo.com/130807026		\n			<h1>VIRTUAL REALITY EXPERIENCE</h1>		\n			<h3>SOMETHING SOMETHING SOMETHING</h3>		\n			<h2>SPIDER-MAN HOMECOMING DISPLAY</h2>		\n		<p>Submerse yourself in the world of your friendly neighborhood Spider-Man in this fun and thrilling VR Theatrical Display.  Based on the all-new 2017 film, the Spider-Man Homecoming VR Experience is a first-person look through the eyes of Spidey himself.</p>		\n										<img width=\"1024\" height=\"711\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-1024x711.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-1024x711.jpg 1024w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-300x208.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-768x533.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n										<img width=\"750\" height=\"1000\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834.jpg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834-225x300.jpg 225w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n										<img width=\"750\" height=\"750\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788.jpg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788-150x150.jpg 150w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788-300x300.jpg 300w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n			<h4>Our company is a collective of amazing people striving to build delightful products.</h4>		\n		<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.</p>		\n			<a href=\"#\" role=\"button\">\n						Read More\n					</a>','Home','','inherit','closed','closed','','5-revision-v1','','','2019-09-21 18:37:52','2019-09-21 18:37:52','',5,'http://23.235.208.11/~ondisp5/wp/2019/09/21/5-revision-v1/',0,'revision','',0),(369,1,'2019-09-21 18:43:47','2019-09-21 18:43:47','<h2>#WHAT\'S COOL</h2>		\n			<h2>INNOVATIONS FROM ONDISPLAY CREATIVE</h2>		\n			<h1>LIVING STANDEES HAUNTING THEATERS</h1>		\n			<h3>ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS</h3>		\n			<h2>INSIDIOUS – THE LAST KEY</h2>		\n		<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!</p>		\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n		https://vimeo.com/257088337		\n			<h2>INSIDIOUS CHAPTER 3</h2>		\n		<p>OnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.</p>		\n										<img width=\"1000\" height=\"800\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset.jpeg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset.jpeg 1000w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-300x240.jpeg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-768x614.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />											\n		https://vimeo.com/130807026		\n			<h1>VIRTUAL REALITY EXPERIENCE</h1>		\n			<h3>SOMETHING SOMETHING SOMETHING</h3>		\n			<h2>SPIDER-MAN HOMECOMING DISPLAY</h2>		\n		<p>Submerse yourself in the world of your friendly neighborhood Spider-Man in this fun and thrilling VR Theatrical Display.  Based on the all-new 2017 film, the Spider-Man Homecoming VR Experience is a first-person look through the eyes of Spidey himself.</p>		\n										<img width=\"1024\" height=\"711\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-1024x711.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-1024x711.jpg 1024w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-300x208.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-768x533.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n										<img width=\"750\" height=\"1000\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834.jpg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834-225x300.jpg 225w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n										<img width=\"750\" height=\"750\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788.jpg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788-150x150.jpg 150w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788-300x300.jpg 300w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n			<h4>Our company is a collective of amazing people striving to build delightful products.</h4>		\n		<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.</p>		\n			<a href=\"#\" role=\"button\">\n						Read More\n					</a>','Home','','inherit','closed','closed','','5-revision-v1','','','2019-09-21 18:43:47','2019-09-21 18:43:47','',5,'http://23.235.208.11/~ondisp5/wp/2019/09/21/5-revision-v1/',0,'revision','',0),(371,1,'2019-09-21 19:00:13','2019-09-21 19:00:13','<img width=\"780\" height=\"79\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/a-400x41.png\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/a.png 780w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/a-300x30.png 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/a-768x78.png 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/a-400x41.png 400w\" sizes=\"(max-width: 780px) 100vw, 780px\" />','header+nav','','inherit','closed','closed','','302-revision-v1','','','2019-09-21 19:00:13','2019-09-21 19:00:13','',302,'http://23.235.208.11/~ondisp5/wp/2019/09/21/302-revision-v1/',0,'revision','',0),(372,1,'2019-09-21 19:01:26','2019-09-21 19:01:26','<img width=\"780\" height=\"79\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/a-400x41.png\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/a.png 780w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/a-300x30.png 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/a-768x78.png 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/a-400x41.png 400w\" sizes=\"(max-width: 780px) 100vw, 780px\" />','header+nav','','inherit','closed','closed','','302-revision-v1','','','2019-09-21 19:01:26','2019-09-21 19:01:26','',302,'http://23.235.208.11/~ondisp5/wp/2019/09/21/302-revision-v1/',0,'revision','',0),(373,1,'2019-09-21 19:02:15','2019-09-21 19:02:15','<img width=\"780\" height=\"79\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/a-400x41.png\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/a.png 780w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/a-300x30.png 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/a-768x78.png 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/a-400x41.png 400w\" sizes=\"(max-width: 780px) 100vw, 780px\" />','header+nav','','inherit','closed','closed','','302-revision-v1','','','2019-09-21 19:02:15','2019-09-21 19:02:15','',302,'http://23.235.208.11/~ondisp5/wp/2019/09/21/302-revision-v1/',0,'revision','',0),(374,1,'2019-09-21 19:03:01','2019-09-21 19:03:01','<img width=\"780\" height=\"79\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/a-400x41.png\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/a.png 780w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/a-300x30.png 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/a-768x78.png 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/a-400x41.png 400w\" sizes=\"(max-width: 780px) 100vw, 780px\" />','header+nav','','inherit','closed','closed','','302-revision-v1','','','2019-09-21 19:03:01','2019-09-21 19:03:01','',302,'http://23.235.208.11/~ondisp5/wp/2019/09/21/302-revision-v1/',0,'revision','',0),(375,1,'2019-09-21 19:04:39','2019-09-21 19:04:39','<img width=\"780\" height=\"79\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/a-400x41.png\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/a.png 780w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/a-300x30.png 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/a-768x78.png 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/a-400x41.png 400w\" sizes=\"(max-width: 780px) 100vw, 780px\" />','header+nav','','inherit','closed','closed','','302-revision-v1','','','2019-09-21 19:04:39','2019-09-21 19:04:39','',302,'http://23.235.208.11/~ondisp5/wp/2019/09/21/302-revision-v1/',0,'revision','',0),(376,1,'2019-09-21 19:05:21','2019-09-21 19:05:21','<img width=\"780\" height=\"79\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/a-400x41.png\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/a.png 780w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/a-300x30.png 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/a-768x78.png 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/a-400x41.png 400w\" sizes=\"(max-width: 780px) 100vw, 780px\" />','header+nav','','inherit','closed','closed','','302-revision-v1','','','2019-09-21 19:05:21','2019-09-21 19:05:21','',302,'http://23.235.208.11/~ondisp5/wp/2019/09/21/302-revision-v1/',0,'revision','',0),(377,1,'2019-09-21 19:05:36','2019-09-21 19:05:36','<img width=\"780\" height=\"79\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/a-400x41.png\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/a.png 780w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/a-300x30.png 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/a-768x78.png 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/a-400x41.png 400w\" sizes=\"(max-width: 780px) 100vw, 780px\" />','header+nav','','inherit','closed','closed','','302-revision-v1','','','2019-09-21 19:05:36','2019-09-21 19:05:36','',302,'http://23.235.208.11/~ondisp5/wp/2019/09/21/302-revision-v1/',0,'revision','',0),(378,1,'2019-09-21 19:09:05','2019-09-21 19:09:05','<img width=\"780\" height=\"79\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/a-400x41.png\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/a.png 780w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/a-300x30.png 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/a-768x78.png 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/a-400x41.png 400w\" sizes=\"(max-width: 780px) 100vw, 780px\" />','header+nav','','inherit','closed','closed','','302-revision-v1','','','2019-09-21 19:09:05','2019-09-21 19:09:05','',302,'http://23.235.208.11/~ondisp5/wp/2019/09/21/302-revision-v1/',0,'revision','',0),(379,1,'2019-09-21 19:12:24','2019-09-21 19:12:24','<img width=\"780\" height=\"79\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/a-400x41.png\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/a.png 780w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/a-300x30.png 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/a-768x78.png 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/a-400x41.png 400w\" sizes=\"(max-width: 780px) 100vw, 780px\" />','header+nav','','inherit','closed','closed','','302-revision-v1','','','2019-09-21 19:12:24','2019-09-21 19:12:24','',302,'http://23.235.208.11/~ondisp5/wp/2019/09/21/302-revision-v1/',0,'revision','',0),(380,1,'2019-09-21 19:13:14','2019-09-21 19:13:14','<img width=\"780\" height=\"79\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/a-400x41.png\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/a.png 780w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/a-300x30.png 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/a-768x78.png 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/a-400x41.png 400w\" sizes=\"(max-width: 780px) 100vw, 780px\" />','header+nav','','inherit','closed','closed','','302-revision-v1','','','2019-09-21 19:13:14','2019-09-21 19:13:14','',302,'http://23.235.208.11/~ondisp5/wp/2019/09/21/302-revision-v1/',0,'revision','',0),(381,1,'2019-09-21 19:13:48','2019-09-21 19:13:48','<img width=\"780\" height=\"79\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/a-400x41.png\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/a.png 780w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/a-300x30.png 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/a-768x78.png 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/a-400x41.png 400w\" sizes=\"(max-width: 780px) 100vw, 780px\" />','header+nav','','inherit','closed','closed','','302-revision-v1','','','2019-09-21 19:13:48','2019-09-21 19:13:48','',302,'http://23.235.208.11/~ondisp5/wp/2019/09/21/302-revision-v1/',0,'revision','',0),(382,1,'2019-09-21 19:14:35','2019-09-21 19:14:35','<img width=\"780\" height=\"79\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/a-400x41.png\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/a.png 780w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/a-300x30.png 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/a-768x78.png 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/a-400x41.png 400w\" sizes=\"(max-width: 780px) 100vw, 780px\" />','header+nav','','inherit','closed','closed','','302-revision-v1','','','2019-09-21 19:14:35','2019-09-21 19:14:35','',302,'http://23.235.208.11/~ondisp5/wp/2019/09/21/302-revision-v1/',0,'revision','',0),(383,1,'2019-09-21 19:14:56','2019-09-21 19:14:56','<img width=\"780\" height=\"79\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/a-400x41.png\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/a.png 780w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/a-300x30.png 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/a-768x78.png 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/a-400x41.png 400w\" sizes=\"(max-width: 780px) 100vw, 780px\" />','header+nav','','inherit','closed','closed','','302-revision-v1','','','2019-09-21 19:14:56','2019-09-21 19:14:56','',302,'http://23.235.208.11/~ondisp5/wp/2019/09/21/302-revision-v1/',0,'revision','',0),(384,1,'2019-09-21 19:18:04','2019-09-21 19:18:04','<img width=\"780\" height=\"79\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/a-400x41.png\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/a.png 780w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/a-300x30.png 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/a-768x78.png 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/a-400x41.png 400w\" sizes=\"(max-width: 780px) 100vw, 780px\" />','header+nav','','inherit','closed','closed','','302-revision-v1','','','2019-09-21 19:18:04','2019-09-21 19:18:04','',302,'http://23.235.208.11/~ondisp5/wp/2019/09/21/302-revision-v1/',0,'revision','',0),(385,1,'2019-09-21 19:20:34','2019-09-21 19:20:34','<img width=\"780\" height=\"79\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/a-400x41.png\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/a.png 780w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/a-300x30.png 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/a-768x78.png 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/a-400x41.png 400w\" sizes=\"(max-width: 780px) 100vw, 780px\" />','header+nav','','inherit','closed','closed','','302-revision-v1','','','2019-09-21 19:20:34','2019-09-21 19:20:34','',302,'http://23.235.208.11/~ondisp5/wp/2019/09/21/302-revision-v1/',0,'revision','',0),(386,1,'2019-09-21 19:22:27','2019-09-21 19:22:27','<img width=\"780\" height=\"79\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/a-400x41.png\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/a.png 780w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/a-300x30.png 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/a-768x78.png 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/a-400x41.png 400w\" sizes=\"(max-width: 780px) 100vw, 780px\" />','header+nav','','inherit','closed','closed','','302-revision-v1','','','2019-09-21 19:22:27','2019-09-21 19:22:27','',302,'http://23.235.208.11/~ondisp5/wp/2019/09/21/302-revision-v1/',0,'revision','',0),(387,1,'2019-09-21 19:52:01','0000-00-00 00:00:00','{\n    \"custom_css[astra-child]\": {\n        \"value\": \"li {\\n\\tcolor: yellow !important;\\n}\",\n        \"type\": \"custom_css\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2019-09-21 19:52:01\"\n    }\n}','','','auto-draft','closed','closed','','8a17c862-764f-4575-afdd-642a5808baaa','','','2019-09-21 19:52:01','2019-09-21 19:52:01','',0,'http://23.235.208.11/~ondisp5/wp/?p=387',0,'customize_changeset','',0),(388,1,'2019-09-21 19:58:49','2019-09-21 19:58:49','{\n    \"astra-settings[text-color]\": {\n        \"value\": \"#16161d\",\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2019-09-21 19:58:49\"\n    },\n    \"astra-settings[link-color]\": {\n        \"value\": \"#16161d\",\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2019-09-21 19:58:49\"\n    },\n    \"astra-settings[link-h-color]\": {\n        \"value\": \"#ee7624\",\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2019-09-21 19:58:49\"\n    }\n}','','','trash','closed','closed','','8cf28dfd-d4c8-4475-a558-6396a2369098','','','2019-09-21 19:58:49','2019-09-21 19:58:49','',0,'http://23.235.208.11/~ondisp5/wp/2019/09/21/8cf28dfd-d4c8-4475-a558-6396a2369098/',0,'customize_changeset','',0),(389,1,'2019-09-21 20:39:30','2019-09-21 20:39:30','{\n    \"custom_css[astra-child]\": {\n        \"value\": \".elementor-nav-menu--dropdown a:hover, \\n.elementor-nav-menu--dropdown a.highlighted, \\n.elementor-menu-toggle:hover { \\ncolor: red !important;\\n}\\n\\n.elementor-element.elementor-element-2bc4e941 .elementor-nav-menu--dropdown a.elementor-item-active { \\ncolor: yellow !important;\\n}\\n\",\n        \"type\": \"custom_css\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2019-09-21 20:39:20\"\n    }\n}','','','trash','closed','closed','','b848505b-4ff1-45f9-bbb8-75100710300e','','','2019-09-21 20:39:30','2019-09-21 20:39:30','',0,'http://23.235.208.11/~ondisp5/wp/?p=389',0,'customize_changeset','',0),(392,1,'2019-09-21 20:40:53','2019-09-21 20:40:53','.elementor-nav-menu--dropdown a:hover, \n.elementor-nav-menu--dropdown a.highlighted, \n.elementor-menu-toggle:hover { \ncolor: #ee7624 !important;\n}\n\n.elementor-nav-menu--dropdown a.elementor-item-active { \ncolor: #ee7624 !important;\n}\n','astra-child','','inherit','closed','closed','','283-revision-v1','','','2019-09-21 20:40:53','2019-09-21 20:40:53','',283,'http://23.235.208.11/~ondisp5/wp/2019/09/21/283-revision-v1/',0,'revision','',0),(390,1,'2019-09-21 20:39:30','2019-09-21 20:39:30','.elementor-nav-menu--dropdown a:hover, \n.elementor-nav-menu--dropdown a.highlighted, \n.elementor-menu-toggle:hover { \ncolor: red !important;\n}\n\n.elementor-element.elementor-element-2bc4e941 .elementor-nav-menu--dropdown a.elementor-item-active { \ncolor: yellow !important;\n}\n','astra-child','','inherit','closed','closed','','283-revision-v1','','','2019-09-21 20:39:30','2019-09-21 20:39:30','',283,'http://23.235.208.11/~ondisp5/wp/2019/09/21/283-revision-v1/',0,'revision','',0),(391,1,'2019-09-21 20:40:53','2019-09-21 20:40:53','{\n    \"custom_css[astra-child]\": {\n        \"value\": \".elementor-nav-menu--dropdown a:hover, \\n.elementor-nav-menu--dropdown a.highlighted, \\n.elementor-menu-toggle:hover { \\ncolor: #ee7624 !important;\\n}\\n\\n.elementor-nav-menu--dropdown a.elementor-item-active { \\ncolor: #ee7624 !important;\\n}\\n\",\n        \"type\": \"custom_css\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2019-09-21 20:40:53\"\n    }\n}','','','trash','closed','closed','','d9d7c1f6-d28e-4b7a-955c-c80eb51c9790','','','2019-09-21 20:40:53','2019-09-21 20:40:53','',0,'http://23.235.208.11/~ondisp5/wp/2019/09/21/d9d7c1f6-d28e-4b7a-955c-c80eb51c9790/',0,'customize_changeset','',0),(394,1,'2019-09-21 20:54:33','2019-09-21 20:54:33','{\n    \"custom_css[astra-child]\": {\n        \"value\": \".elementor-nav-menu--dropdown a:hover, \\n.elementor-nav-menu--dropdown a.highlighted, \\n.elementor-menu-toggle:hover { \\ncolor: #ee7624 !important;\\n}\\n\\n.elementor-nav-menu--dropdown a.elementor-item-active { \\ncolor: #ee7624 !important;\\n}\\n\\n.elementor-302 .elementor-element.elementor-element-2bc4e941 div.elementor-menu-toggle:hover { \\ncolor: yellow !important;\\n}\",\n        \"type\": \"custom_css\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2019-09-21 20:54:33\"\n    }\n}','','','trash','closed','closed','','d16f5f36-29f9-4811-8365-51619a61f249','','','2019-09-21 20:54:33','2019-09-21 20:54:33','',0,'http://23.235.208.11/~ondisp5/wp/?p=394',0,'customize_changeset','',0),(395,1,'2019-09-21 20:54:33','2019-09-21 20:54:33','.elementor-nav-menu--dropdown a:hover, \n.elementor-nav-menu--dropdown a.highlighted, \n.elementor-menu-toggle:hover { \ncolor: #ee7624 !important;\n}\n\n.elementor-nav-menu--dropdown a.elementor-item-active { \ncolor: #ee7624 !important;\n}\n\n.elementor-302 .elementor-element.elementor-element-2bc4e941 div.elementor-menu-toggle:hover { \ncolor: yellow !important;\n}','astra-child','','inherit','closed','closed','','283-revision-v1','','','2019-09-21 20:54:33','2019-09-21 20:54:33','',283,'http://23.235.208.11/~ondisp5/wp/2019/09/21/283-revision-v1/',0,'revision','',0),(396,1,'2019-09-21 20:56:40','2019-09-21 20:56:40','{\n    \"custom_css[astra-child]\": {\n        \"value\": \".elementor-nav-menu--dropdown a:hover, \\n.elementor-nav-menu--dropdown a.highlighted, \\n.elementor-menu-toggle:hover { \\ncolor: #ee7624 !important;\\n}\\n\\n.elementor-nav-menu--dropdown a.elementor-item-active { \\ncolor: #ee7624 !important;\\n}\\n\\ndiv.elementor-menu-toggle:active,\\ndiv.elementor-menu-toggle:visited{ \\ncolor: blue !important;\\n}\",\n        \"type\": \"custom_css\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2019-09-21 20:56:40\"\n    }\n}','','','trash','closed','closed','','86f19087-3671-419a-bba7-067d58ce8ff6','','','2019-09-21 20:56:40','2019-09-21 20:56:40','',0,'http://23.235.208.11/~ondisp5/wp/?p=396',0,'customize_changeset','',0),(397,1,'2019-09-21 20:56:40','2019-09-21 20:56:40','.elementor-nav-menu--dropdown a:hover, \n.elementor-nav-menu--dropdown a.highlighted, \n.elementor-menu-toggle:hover { \ncolor: #ee7624 !important;\n}\n\n.elementor-nav-menu--dropdown a.elementor-item-active { \ncolor: #ee7624 !important;\n}\n\ndiv.elementor-menu-toggle:active,\ndiv.elementor-menu-toggle:visited{ \ncolor: blue !important;\n}','astra-child','','inherit','closed','closed','','283-revision-v1','','','2019-09-21 20:56:40','2019-09-21 20:56:40','',283,'http://23.235.208.11/~ondisp5/wp/2019/09/21/283-revision-v1/',0,'revision','',0),(398,1,'2019-09-21 20:59:03','2019-09-21 20:59:03','{\n    \"custom_css[astra-child]\": {\n        \"value\": \".elementor-nav-menu--dropdown a:hover, \\n.elementor-nav-menu--dropdown a.highlighted, \\n.elementor-menu-toggle:hover { \\ncolor: #ee7624 !important;\\n}\\n\\n.elementor-nav-menu--dropdown a.elementor-item-active { \\ncolor: #ee7624 !important;\\n}\\n\\ndiv.elementor-menu-toggle:hover\\ndiv.elementor-menu-toggle:active,\\ndiv.elementor-menu-toggle:visited{ \\ncolor: blue !important;\\n}\",\n        \"type\": \"custom_css\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2019-09-21 20:59:03\"\n    }\n}','','','trash','closed','closed','','d5ce1721-d98f-4f2c-85d9-041045c40e0e','','','2019-09-21 20:59:03','2019-09-21 20:59:03','',0,'http://23.235.208.11/~ondisp5/wp/2019/09/21/d5ce1721-d98f-4f2c-85d9-041045c40e0e/',0,'customize_changeset','',0),(399,1,'2019-09-21 20:59:03','2019-09-21 20:59:03','.elementor-nav-menu--dropdown a:hover, \n.elementor-nav-menu--dropdown a.highlighted, \n.elementor-menu-toggle:hover { \ncolor: #ee7624 !important;\n}\n\n.elementor-nav-menu--dropdown a.elementor-item-active { \ncolor: #ee7624 !important;\n}\n\ndiv.elementor-menu-toggle:hover\ndiv.elementor-menu-toggle:active,\ndiv.elementor-menu-toggle:visited{ \ncolor: blue !important;\n}','astra-child','','inherit','closed','closed','','283-revision-v1','','','2019-09-21 20:59:03','2019-09-21 20:59:03','',283,'http://23.235.208.11/~ondisp5/wp/2019/09/21/283-revision-v1/',0,'revision','',0),(400,1,'2019-09-21 21:01:55','2019-09-21 21:01:55','{\n    \"custom_css[astra-child]\": {\n        \"value\": \".elementor-nav-menu--dropdown a:hover, \\n.elementor-nav-menu--dropdown a.highlighted, \\n.elementor-menu-toggle:hover { \\ncolor: #ee7624 !important;\\n}\\n\\n.elementor-nav-menu--dropdown a.elementor-item-active { \\ncolor: #ee7624 !important;\\n}\\n\\ndiv.elementor-menu-toggle:hover,\\ndiv.elementor-menu-toggle:active,\\ndiv.elementor-menu-toggle:visited{ \\ncolor: blue !important;\\n}\",\n        \"type\": \"custom_css\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2019-09-21 21:01:55\"\n    }\n}','','','trash','closed','closed','','d93cfdf1-553a-4c97-b43e-f832e5de634d','','','2019-09-21 21:01:55','2019-09-21 21:01:55','',0,'http://23.235.208.11/~ondisp5/wp/2019/09/21/d93cfdf1-553a-4c97-b43e-f832e5de634d/',0,'customize_changeset','',0),(401,1,'2019-09-21 21:01:55','2019-09-21 21:01:55','.elementor-nav-menu--dropdown a:hover, \n.elementor-nav-menu--dropdown a.highlighted, \n.elementor-menu-toggle:hover { \ncolor: #ee7624 !important;\n}\n\n.elementor-nav-menu--dropdown a.elementor-item-active { \ncolor: #ee7624 !important;\n}\n\ndiv.elementor-menu-toggle:hover,\ndiv.elementor-menu-toggle:active,\ndiv.elementor-menu-toggle:visited{ \ncolor: blue !important;\n}','astra-child','','inherit','closed','closed','','283-revision-v1','','','2019-09-21 21:01:55','2019-09-21 21:01:55','',283,'http://23.235.208.11/~ondisp5/wp/2019/09/21/283-revision-v1/',0,'revision','',0),(402,1,'2019-09-21 21:05:23','2019-09-21 21:05:23','{\n    \"custom_css[astra-child]\": {\n        \"value\": \".elementor-nav-menu--dropdown a:hover, \\n.elementor-nav-menu--dropdown a.highlighted, \\n.elementor-menu-toggle:hover { \\ncolor: #ee7624 !important;\\n}\\n\\n.elementor-nav-menu--dropdown a.elementor-item-active { \\ncolor: #ee7624 !important;\\n}\\n\\ndiv.elementor-menu-toggle:hover {\\ncolor: #ee7624 !important;\\n}\\n\\ndiv.elementor-menu-toggle:active,\\ndiv.elementor-menu-toggle:visited { \\n\\tcolor: #16161d !important;\\n}\",\n        \"type\": \"custom_css\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2019-09-21 21:05:23\"\n    }\n}','','','trash','closed','closed','','72e0920a-6e9c-41fb-8903-b23dc77390e8','','','2019-09-21 21:05:23','2019-09-21 21:05:23','',0,'http://23.235.208.11/~ondisp5/wp/?p=402',0,'customize_changeset','',0),(404,1,'2019-09-21 21:07:30','2019-09-21 21:07:30','{\n    \"custom_css[astra-child]\": {\n        \"value\": \".elementor-nav-menu--dropdown a:hover, \\n.elementor-nav-menu--dropdown a.highlighted, \\n.elementor-menu-toggle:hover { \\ncolor: #ee7624 !important;\\n}\\n\\n.elementor-nav-menu--dropdown a.elementor-item-active { \\ncolor: #ee7624 !important;\\n}\\n\\ndiv.elementor-menu-toggle:hover {\\ncolor: blue !important;\\n}\\n\\ndiv.elementor-menu-toggle:active,\\ndiv.elementor-menu-toggle:visited { \\n\\tcolor: yellow !important;\\n}\",\n        \"type\": \"custom_css\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2019-09-21 21:07:30\"\n    }\n}','','','trash','closed','closed','','8268af98-9d01-40a0-a267-27965ea6dfb6','','','2019-09-21 21:07:30','2019-09-21 21:07:30','',0,'http://23.235.208.11/~ondisp5/wp/2019/09/21/8268af98-9d01-40a0-a267-27965ea6dfb6/',0,'customize_changeset','',0),(417,1,'2019-09-21 21:20:11','2019-09-21 21:20:11','.elementor-nav-menu--dropdown a:hover, \n.elementor-nav-menu--dropdown a.highlighted, \n.elementor-menu-toggle:hover { \ncolor: #ee7624 !important;\n}\n\n.elementor-nav-menu--dropdown a.elementor-item-active { \ncolor: #ee7624 !important;\n}\n\n\n','astra-child','','inherit','closed','closed','','283-revision-v1','','','2019-09-21 21:20:11','2019-09-21 21:20:11','',283,'http://23.235.208.11/~ondisp5/wp/2019/09/21/283-revision-v1/',0,'revision','',0),(403,1,'2019-09-21 21:05:23','2019-09-21 21:05:23','.elementor-nav-menu--dropdown a:hover, \n.elementor-nav-menu--dropdown a.highlighted, \n.elementor-menu-toggle:hover { \ncolor: #ee7624 !important;\n}\n\n.elementor-nav-menu--dropdown a.elementor-item-active { \ncolor: #ee7624 !important;\n}\n\ndiv.elementor-menu-toggle:hover {\ncolor: #ee7624 !important;\n}\n\ndiv.elementor-menu-toggle:active,\ndiv.elementor-menu-toggle:visited { \n	color: #16161d !important;\n}','astra-child','','inherit','closed','closed','','283-revision-v1','','','2019-09-21 21:05:23','2019-09-21 21:05:23','',283,'http://23.235.208.11/~ondisp5/wp/2019/09/21/283-revision-v1/',0,'revision','',0),(405,1,'2019-09-21 21:07:30','2019-09-21 21:07:30','.elementor-nav-menu--dropdown a:hover, \n.elementor-nav-menu--dropdown a.highlighted, \n.elementor-menu-toggle:hover { \ncolor: #ee7624 !important;\n}\n\n.elementor-nav-menu--dropdown a.elementor-item-active { \ncolor: #ee7624 !important;\n}\n\ndiv.elementor-menu-toggle:hover {\ncolor: blue !important;\n}\n\ndiv.elementor-menu-toggle:active,\ndiv.elementor-menu-toggle:visited { \n	color: yellow !important;\n}','astra-child','','inherit','closed','closed','','283-revision-v1','','','2019-09-21 21:07:30','2019-09-21 21:07:30','',283,'http://23.235.208.11/~ondisp5/wp/2019/09/21/283-revision-v1/',0,'revision','',0),(406,1,'2019-09-21 21:08:01','2019-09-21 21:08:01','{\n    \"custom_css[astra-child]\": {\n        \"value\": \".elementor-nav-menu--dropdown a:hover, \\n.elementor-nav-menu--dropdown a.highlighted, \\n.elementor-menu-toggle:hover { \\ncolor: #ee7624 !important;\\n}\\n\\n.elementor-nav-menu--dropdown a.elementor-item-active { \\ncolor: #ee7624 !important;\\n}\\n\\ndiv.elementor-menu-toggle:hover {\\ncolor: orange !important;\\n}\\n\\ndiv.elementor-menu-toggle:active,\\ndiv.elementor-menu-toggle:visited { \\n\\tcolor: yellow !important;\\n}\",\n        \"type\": \"custom_css\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2019-09-21 21:08:01\"\n    }\n}','','','trash','closed','closed','','42002287-80a8-4181-af5f-f0de80cfd7d3','','','2019-09-21 21:08:01','2019-09-21 21:08:01','',0,'http://23.235.208.11/~ondisp5/wp/2019/09/21/42002287-80a8-4181-af5f-f0de80cfd7d3/',0,'customize_changeset','',0),(407,1,'2019-09-21 21:08:01','2019-09-21 21:08:01','.elementor-nav-menu--dropdown a:hover, \n.elementor-nav-menu--dropdown a.highlighted, \n.elementor-menu-toggle:hover { \ncolor: #ee7624 !important;\n}\n\n.elementor-nav-menu--dropdown a.elementor-item-active { \ncolor: #ee7624 !important;\n}\n\ndiv.elementor-menu-toggle:hover {\ncolor: orange !important;\n}\n\ndiv.elementor-menu-toggle:active,\ndiv.elementor-menu-toggle:visited { \n	color: yellow !important;\n}','astra-child','','inherit','closed','closed','','283-revision-v1','','','2019-09-21 21:08:01','2019-09-21 21:08:01','',283,'http://23.235.208.11/~ondisp5/wp/2019/09/21/283-revision-v1/',0,'revision','',0),(408,1,'2019-09-21 21:12:47','2019-09-21 21:12:47','{\n    \"custom_css[astra-child]\": {\n        \"value\": \".elementor-nav-menu--dropdown a:hover, \\n.elementor-nav-menu--dropdown a.highlighted, \\n.elementor-menu-toggle:hover { \\ncolor: #ee7624 !important;\\n}\\n\\n.elementor-nav-menu--dropdown a.elementor-item-active { \\ncolor: #ee7624 !important;\\n}\\n\\ndiv.elementor-menu-toggle:hover {\\ncolor: orange !important;\\n}\\n\\ndiv.elementor-menu-toggle:active,\\ndiv.elementor-menu-toggle:focus,\\ndiv.elementor-menu-toggle:visited { \\n\\tcolor: yellow !important;\\n}\",\n        \"type\": \"custom_css\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2019-09-21 21:12:47\"\n    }\n}','','','trash','closed','closed','','69756999-56af-4d20-b44a-90ea5c4e2944','','','2019-09-21 21:12:47','2019-09-21 21:12:47','',0,'http://23.235.208.11/~ondisp5/wp/2019/09/21/69756999-56af-4d20-b44a-90ea5c4e2944/',0,'customize_changeset','',0),(409,1,'2019-09-21 21:12:47','2019-09-21 21:12:47','.elementor-nav-menu--dropdown a:hover, \n.elementor-nav-menu--dropdown a.highlighted, \n.elementor-menu-toggle:hover { \ncolor: #ee7624 !important;\n}\n\n.elementor-nav-menu--dropdown a.elementor-item-active { \ncolor: #ee7624 !important;\n}\n\ndiv.elementor-menu-toggle:hover {\ncolor: orange !important;\n}\n\ndiv.elementor-menu-toggle:active,\ndiv.elementor-menu-toggle:focus,\ndiv.elementor-menu-toggle:visited { \n	color: yellow !important;\n}','astra-child','','inherit','closed','closed','','283-revision-v1','','','2019-09-21 21:12:47','2019-09-21 21:12:47','',283,'http://23.235.208.11/~ondisp5/wp/2019/09/21/283-revision-v1/',0,'revision','',0),(410,1,'2019-09-21 21:14:38','2019-09-21 21:14:38','{\n    \"custom_css[astra-child]\": {\n        \"value\": \".elementor-nav-menu--dropdown a:hover, \\n.elementor-nav-menu--dropdown a.highlighted, \\n.elementor-menu-toggle:hover { \\ncolor: #ee7624 !important;\\n}\\n\\n.elementor-nav-menu--dropdown a.elementor-item-active { \\ncolor: #ee7624 !important;\\n}\\n\\ndiv.elementor-menu-toggle:hover {\\ncolor: orange !important;\\n}\\n\\ndiv.elementor-menu-toggle:active,\\ndiv.elementor-menu-toggle:focus,\\ndiv.elementor-menu-toggle:visited { \\n\\tcolor: black !important;\\n}\",\n        \"type\": \"custom_css\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2019-09-21 21:14:32\"\n    }\n}','','','trash','closed','closed','','8d66f896-332a-4737-b655-85a4a01306c4','','','2019-09-21 21:14:38','2019-09-21 21:14:38','',0,'http://23.235.208.11/~ondisp5/wp/?p=410',0,'customize_changeset','',0),(411,1,'2019-09-21 21:14:38','2019-09-21 21:14:38','.elementor-nav-menu--dropdown a:hover, \n.elementor-nav-menu--dropdown a.highlighted, \n.elementor-menu-toggle:hover { \ncolor: #ee7624 !important;\n}\n\n.elementor-nav-menu--dropdown a.elementor-item-active { \ncolor: #ee7624 !important;\n}\n\ndiv.elementor-menu-toggle:hover {\ncolor: orange !important;\n}\n\ndiv.elementor-menu-toggle:active,\ndiv.elementor-menu-toggle:focus,\ndiv.elementor-menu-toggle:visited { \n	color: black !important;\n}','astra-child','','inherit','closed','closed','','283-revision-v1','','','2019-09-21 21:14:38','2019-09-21 21:14:38','',283,'http://23.235.208.11/~ondisp5/wp/2019/09/21/283-revision-v1/',0,'revision','',0),(412,1,'2019-09-21 21:17:34','2019-09-21 21:17:34','{\n    \"custom_css[astra-child]\": {\n        \"value\": \".elementor-nav-menu--dropdown a:hover, \\n.elementor-nav-menu--dropdown a.highlighted, \\n.elementor-menu-toggle:hover { \\ncolor: #ee7624 !important;\\n}\\n\\n.elementor-nav-menu--dropdown a.elementor-item-active { \\ncolor: #ee7624 !important;\\n}\\n\\ndiv.elementor-menu-toggle:link {\\ncolor: #16161d !important;\\n}\\n\\ndiv.elementor-menu-toggle:visited {\\ncolor: #16161d !important;\\n}\\n\\ndiv.elementor-menu-toggle:hover {\\ncolor: #ee7624 !important;\\n}\\n\\ndiv.elementor-menu-toggle:active {\\ncolor: #16161d !important;\\n}\\n\",\n        \"type\": \"custom_css\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2019-09-21 21:17:34\"\n    }\n}','','','trash','closed','closed','','ede0cf21-0278-45da-b6c5-49423ffb8720','','','2019-09-21 21:17:34','2019-09-21 21:17:34','',0,'http://23.235.208.11/~ondisp5/wp/2019/09/21/ede0cf21-0278-45da-b6c5-49423ffb8720/',0,'customize_changeset','',0),(415,1,'2019-09-21 21:19:38','2019-09-21 21:19:38','.elementor-nav-menu--dropdown a:hover, \n.elementor-nav-menu--dropdown a.highlighted, \n.elementor-menu-toggle:hover { \ncolor: #ee7624 !important;\n}\n\n.elementor-nav-menu--dropdown a.elementor-item-active { \ncolor: #ee7624 !important;\n}\n\n\ndiv.elementor-menu-toggle:link,\ndiv.elementor-menu-toggle:visited,\ndiv.elementor-menu-toggle:hover,\ndiv.elementor-menu-toggle:active {\ncolor: #16161d !important;\n}','astra-child','','inherit','closed','closed','','283-revision-v1','','','2019-09-21 21:19:38','2019-09-21 21:19:38','',283,'http://23.235.208.11/~ondisp5/wp/2019/09/21/283-revision-v1/',0,'revision','',0),(413,1,'2019-09-21 21:17:34','2019-09-21 21:17:34','.elementor-nav-menu--dropdown a:hover, \n.elementor-nav-menu--dropdown a.highlighted, \n.elementor-menu-toggle:hover { \ncolor: #ee7624 !important;\n}\n\n.elementor-nav-menu--dropdown a.elementor-item-active { \ncolor: #ee7624 !important;\n}\n\ndiv.elementor-menu-toggle:link {\ncolor: #16161d !important;\n}\n\ndiv.elementor-menu-toggle:visited {\ncolor: #16161d !important;\n}\n\ndiv.elementor-menu-toggle:hover {\ncolor: #ee7624 !important;\n}\n\ndiv.elementor-menu-toggle:active {\ncolor: #16161d !important;\n}\n','astra-child','','inherit','closed','closed','','283-revision-v1','','','2019-09-21 21:17:34','2019-09-21 21:17:34','',283,'http://23.235.208.11/~ondisp5/wp/2019/09/21/283-revision-v1/',0,'revision','',0),(414,1,'2019-09-21 21:19:38','2019-09-21 21:19:38','{\n    \"custom_css[astra-child]\": {\n        \"value\": \".elementor-nav-menu--dropdown a:hover, \\n.elementor-nav-menu--dropdown a.highlighted, \\n.elementor-menu-toggle:hover { \\ncolor: #ee7624 !important;\\n}\\n\\n.elementor-nav-menu--dropdown a.elementor-item-active { \\ncolor: #ee7624 !important;\\n}\\n\\n\\ndiv.elementor-menu-toggle:link,\\ndiv.elementor-menu-toggle:visited,\\ndiv.elementor-menu-toggle:hover,\\ndiv.elementor-menu-toggle:active {\\ncolor: #16161d !important;\\n}\",\n        \"type\": \"custom_css\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2019-09-21 21:19:38\"\n    }\n}','','','trash','closed','closed','','bf5f9b6d-b6f1-4514-809d-7f713ad847e4','','','2019-09-21 21:19:38','2019-09-21 21:19:38','',0,'http://23.235.208.11/~ondisp5/wp/?p=414',0,'customize_changeset','',0),(416,1,'2019-09-21 21:20:11','2019-09-21 21:20:11','{\n    \"custom_css[astra-child]\": {\n        \"value\": \".elementor-nav-menu--dropdown a:hover, \\n.elementor-nav-menu--dropdown a.highlighted, \\n.elementor-menu-toggle:hover { \\ncolor: #ee7624 !important;\\n}\\n\\n.elementor-nav-menu--dropdown a.elementor-item-active { \\ncolor: #ee7624 !important;\\n}\\n\\n\\n\",\n        \"type\": \"custom_css\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2019-09-21 21:20:11\"\n    }\n}','','','trash','closed','closed','','326b2059-f867-4fdb-bc84-b082d2651750','','','2019-09-21 21:20:11','2019-09-21 21:20:11','',0,'http://23.235.208.11/~ondisp5/wp/2019/09/21/326b2059-f867-4fdb-bc84-b082d2651750/',0,'customize_changeset','',0),(418,1,'2019-09-21 21:20:26','2019-09-21 21:20:26','{\n    \"custom_css[astra-child]\": {\n        \"value\": \".elementor-nav-menu--dropdown a:hover, \\n.elementor-nav-menu--dropdown a.highlighted, \\n.elementor-menu-toggle:hover { \\ncolor: #ee7624 !important;\\n}\\n\\n.elementor-nav-menu--dropdown a.elementor-item-active { \\ncolor: #ee7624 !important;\\n}\\n\\n\\ndiv.elementor-menu-toggle:link,\\ndiv.elementor-menu-toggle:visited,\\ndiv.elementor-menu-toggle:hover,\\ndiv.elementor-menu-toggle:active {\\ncolor: #16161d !important;\\n}\",\n        \"type\": \"custom_css\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2019-09-21 21:20:26\"\n    }\n}','','','trash','closed','closed','','a020a2bf-d296-458f-b955-1a539dffd37a','','','2019-09-21 21:20:26','2019-09-21 21:20:26','',0,'http://23.235.208.11/~ondisp5/wp/2019/09/21/a020a2bf-d296-458f-b955-1a539dffd37a/',0,'customize_changeset','',0),(419,1,'2019-09-21 21:20:26','2019-09-21 21:20:26','.elementor-nav-menu--dropdown a:hover, \n.elementor-nav-menu--dropdown a.highlighted, \n.elementor-menu-toggle:hover { \ncolor: #ee7624 !important;\n}\n\n.elementor-nav-menu--dropdown a.elementor-item-active { \ncolor: #ee7624 !important;\n}\n\n\ndiv.elementor-menu-toggle:link,\ndiv.elementor-menu-toggle:visited,\ndiv.elementor-menu-toggle:hover,\ndiv.elementor-menu-toggle:active {\ncolor: #16161d !important;\n}','astra-child','','inherit','closed','closed','','283-revision-v1','','','2019-09-21 21:20:26','2019-09-21 21:20:26','',283,'http://23.235.208.11/~ondisp5/wp/2019/09/21/283-revision-v1/',0,'revision','',0),(420,1,'2019-09-21 21:22:46','2019-09-21 21:22:46','<img width=\"780\" height=\"79\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/a-400x41.png\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/a.png 780w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/a-300x30.png 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/a-768x78.png 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/a-400x41.png 400w\" sizes=\"(max-width: 780px) 100vw, 780px\" />','header+nav','','inherit','closed','closed','','302-revision-v1','','','2019-09-21 21:22:46','2019-09-21 21:22:46','',302,'http://23.235.208.11/~ondisp5/wp/2019/09/21/302-revision-v1/',0,'revision','',0),(429,1,'2019-09-21 21:57:19','2019-09-21 21:57:19','<h2>#WHAT\'S COOL</h2>\n<h2>INNOVATIONS FROM ONDISPLAY CREATIVE</h2>\n<h1>LIVING STANDEES HAUNTING THEATERS</h1>\n<h3>ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS</h3>\n<h2>INSIDIOUS – THE LAST KEY</h2>\nMovie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!\n\n<img src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" width=\"768\" height=\"1024\">\n<img src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" width=\"768\" height=\"1024\">\nhttps://vimeo.com/257088337\n<h2>INSIDIOUS CHAPTER 3</h2>\nOnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.\n\n<img src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset.jpeg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset.jpeg 1000w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-300x240.jpeg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-768x614.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" width=\"1000\" height=\"800\">\nhttps://vimeo.com/130807026\n<h1>VIRTUAL REALITY EXPERIENCE</h1>\n<h3>SOMETHING SOMETHING WHATEVER</h3>\n<h2>SPIDER-MAN HOMECOMING DISPLAY</h2>\nSubmerse yourself in the world of your friendly neighborhood Spider-Man in this fun and thrilling VR Theatrical Display.&nbsp;&nbsp;Based on the all-new 2017 film, the Spider-Man Homecoming VR Experience is a first-person look through the eyes of Spidey himself.\n\n<img src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-1024x711.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-1024x711.jpg 1024w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-300x208.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-768x533.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" width=\"1024\" height=\"711\">\n<img src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834.jpg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834-225x300.jpg 225w\" sizes=\"(max-width: 750px) 100vw, 750px\" width=\"750\" height=\"1000\">\n<img src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788.jpg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788-150x150.jpg 150w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788-300x300.jpg 300w\" sizes=\"(max-width: 750px) 100vw, 750px\" width=\"750\" height=\"750\">\n<h4>Our company is a collective of amazing people striving to build delightful products.</h4>\nIt is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.\n\n<a href=\"#\" role=\"button\">\nRead More\n</a>','Home','','inherit','closed','closed','','5-revision-v1','','','2019-09-21 21:57:19','2019-09-21 21:57:19','',5,'http://23.235.208.11/~ondisp5/wp/2019/09/21/5-revision-v1/',0,'revision','',0),(421,1,'2019-09-21 21:24:15','2019-09-21 21:24:15','<h2>#WHAT\'S COOL</h2>		\n			<h2>INNOVATIONS FROM ONDISPLAY CREATIVE</h2>		\n			<h1>LIVING STANDEES HAUNTING THEATERS</h1>		\n			<h3>ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS</h3>		\n			<h2>INSIDIOUS – THE LAST KEY</h2>		\n		<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!</p>		\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n		https://vimeo.com/257088337		\n			<h2>INSIDIOUS CHAPTER 3</h2>		\n		<p>OnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.</p>		\n										<img width=\"1000\" height=\"800\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset.jpeg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset.jpeg 1000w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-300x240.jpeg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-768x614.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />											\n		https://vimeo.com/130807026		\n			<h1>VIRTUAL REALITY EXPERIENCE</h1>		\n			<h3>SOMETHING SOMETHING SOMETHING</h3>		\n			<h2>SPIDER-MAN HOMECOMING DISPLAY</h2>		\n		<p>Submerse yourself in the world of your friendly neighborhood Spider-Man in this fun and thrilling VR Theatrical Display.  Based on the all-new 2017 film, the Spider-Man Homecoming VR Experience is a first-person look through the eyes of Spidey himself.</p>		\n										<img width=\"1024\" height=\"711\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-1024x711.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-1024x711.jpg 1024w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-300x208.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-768x533.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n										<img width=\"750\" height=\"1000\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834.jpg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834-225x300.jpg 225w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n										<img width=\"750\" height=\"750\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788.jpg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788-150x150.jpg 150w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788-300x300.jpg 300w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n			<h4>Our company is a collective of amazing people striving to build delightful products.</h4>		\n		<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.</p>		\n			<a href=\"#\" role=\"button\">\n						Read More\n					</a>','Home','','inherit','closed','closed','','5-revision-v1','','','2019-09-21 21:24:15','2019-09-21 21:24:15','',5,'http://23.235.208.11/~ondisp5/wp/2019/09/21/5-revision-v1/',0,'revision','',0),(422,1,'2019-09-21 21:26:04','2019-09-21 21:26:04','<h2>#WHAT\'S COOL</h2>		\n			<h2>INNOVATIONS FROM ONDISPLAY CREATIVE</h2>		\n			<h1>LIVING STANDEES HAUNTING THEATERS</h1>		\n			<h3>ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS</h3>		\n			<h2>INSIDIOUS – THE LAST KEY</h2>		\n		<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!</p>		\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n		https://vimeo.com/257088337		\n			<h2>INSIDIOUS CHAPTER 3</h2>		\n		<p>OnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.</p>		\n										<img width=\"1000\" height=\"800\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset.jpeg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset.jpeg 1000w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-300x240.jpeg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-768x614.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />											\n		https://vimeo.com/130807026		\n			<h1>VIRTUAL REALITY EXPERIENCE</h1>		\n			<h3>SOMETHING SOMETHING SOMETHING</h3>		\n			<h2>SPIDER-MAN HOMECOMING DISPLAY</h2>		\n		<p>Submerse yourself in the world of your friendly neighborhood Spider-Man in this fun and thrilling VR Theatrical Display.  Based on the all-new 2017 film, the Spider-Man Homecoming VR Experience is a first-person look through the eyes of Spidey himself.</p>		\n										<img width=\"1024\" height=\"711\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-1024x711.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-1024x711.jpg 1024w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-300x208.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-768x533.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n										<img width=\"750\" height=\"1000\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834.jpg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834-225x300.jpg 225w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n										<img width=\"750\" height=\"750\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788.jpg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788-150x150.jpg 150w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788-300x300.jpg 300w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n			<h4>Our company is a collective of amazing people striving to build delightful products.</h4>		\n		<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.</p>		\n			<a href=\"#\" role=\"button\">\n						Read More\n					</a>','Home','','inherit','closed','closed','','5-revision-v1','','','2019-09-21 21:26:04','2019-09-21 21:26:04','',5,'http://23.235.208.11/~ondisp5/wp/2019/09/21/5-revision-v1/',0,'revision','',0),(423,1,'2019-09-21 21:27:32','2019-09-21 21:27:32','<h2>#WHAT\'S COOL</h2>		\n			<h2>INNOVATIONS FROM ONDISPLAY CREATIVE</h2>		\n			<h1>LIVING STANDEES HAUNTING THEATERS</h1>		\n			<h3>ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS</h3>		\n			<h2>INSIDIOUS – THE LAST KEY</h2>		\n		<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!</p>		\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n		https://vimeo.com/257088337		\n			<h2>INSIDIOUS CHAPTER 3</h2>		\n		<p>OnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.</p>		\n										<img width=\"1000\" height=\"800\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset.jpeg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset.jpeg 1000w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-300x240.jpeg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-768x614.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />											\n		https://vimeo.com/130807026		\n			<h1>VIRTUAL REALITY EXPERIENCE</h1>		\n			<h3>SOMETHING SOMETHING SOMETHING</h3>		\n			<h2>SPIDER-MAN HOMECOMING DISPLAY</h2>		\n		<p>Submerse yourself in the world of your friendly neighborhood Spider-Man in this fun and thrilling VR Theatrical Display.  Based on the all-new 2017 film, the Spider-Man Homecoming VR Experience is a first-person look through the eyes of Spidey himself.</p>		\n										<img width=\"1024\" height=\"711\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-1024x711.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-1024x711.jpg 1024w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-300x208.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-768x533.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n										<img width=\"750\" height=\"1000\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834.jpg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834-225x300.jpg 225w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n										<img width=\"750\" height=\"750\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788.jpg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788-150x150.jpg 150w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788-300x300.jpg 300w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n			<h4>Our company is a collective of amazing people striving to build delightful products.</h4>		\n		<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.</p>		\n			<a href=\"#\" role=\"button\">\n						Read More\n					</a>','Home','','inherit','closed','closed','','5-revision-v1','','','2019-09-21 21:27:32','2019-09-21 21:27:32','',5,'http://23.235.208.11/~ondisp5/wp/2019/09/21/5-revision-v1/',0,'revision','',0),(424,1,'2019-09-21 21:29:26','2019-09-21 21:29:26','<h2>#WHAT\'S COOL</h2>		\n			<h2>INNOVATIONS FROM ONDISPLAY CREATIVE</h2>		\n			<h1>LIVING STANDEES HAUNTING THEATERS</h1>		\n			<h3>ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS</h3>		\n			<h2>INSIDIOUS – THE LAST KEY</h2>		\n		<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!</p>		\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n		https://vimeo.com/257088337		\n			<h2>INSIDIOUS CHAPTER 3</h2>		\n		<p>OnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.</p>		\n										<img width=\"1000\" height=\"800\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset.jpeg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset.jpeg 1000w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-300x240.jpeg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-768x614.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />											\n		https://vimeo.com/130807026		\n			<h1>VIRTUAL REALITY EXPERIENCE</h1>		\n			<h3>SOMETHING SOMETHING SOMETHING</h3>		\n			<h2>SPIDER-MAN HOMECOMING DISPLAY</h2>		\n		<p>Submerse yourself in the world of your friendly neighborhood Spider-Man in this fun and thrilling VR Theatrical Display.  Based on the all-new 2017 film, the Spider-Man Homecoming VR Experience is a first-person look through the eyes of Spidey himself.</p>		\n										<img width=\"1024\" height=\"711\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-1024x711.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-1024x711.jpg 1024w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-300x208.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-768x533.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n										<img width=\"750\" height=\"1000\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834.jpg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834-225x300.jpg 225w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n										<img width=\"750\" height=\"750\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788.jpg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788-150x150.jpg 150w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788-300x300.jpg 300w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n			<h4>Our company is a collective of amazing people striving to build delightful products.</h4>		\n		<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.</p>		\n			<a href=\"#\" role=\"button\">\n						Read More\n					</a>','Home','','inherit','closed','closed','','5-revision-v1','','','2019-09-21 21:29:26','2019-09-21 21:29:26','',5,'http://23.235.208.11/~ondisp5/wp/2019/09/21/5-revision-v1/',0,'revision','',0),(425,1,'2019-09-21 21:30:01','2019-09-21 21:30:01','<h2>#WHAT\'S COOL</h2>		\n			<h2>INNOVATIONS FROM ONDISPLAY CREATIVE</h2>		\n			<h1>LIVING STANDEES HAUNTING THEATERS</h1>		\n			<h3>ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS</h3>		\n			<h2>INSIDIOUS – THE LAST KEY</h2>		\n		<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!</p>		\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n		https://vimeo.com/257088337		\n			<h2>INSIDIOUS CHAPTER 3</h2>		\n		<p>OnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.</p>		\n										<img width=\"1000\" height=\"800\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset.jpeg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset.jpeg 1000w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-300x240.jpeg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-768x614.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />											\n		https://vimeo.com/130807026		\n			<h1>VIRTUAL REALITY EXPERIENCE</h1>		\n			<h3>SOMETHING SOMETHING SOMETHING</h3>		\n			<h2>SPIDER-MAN HOMECOMING DISPLAY</h2>		\n		<p>Submerse yourself in the world of your friendly neighborhood Spider-Man in this fun and thrilling VR Theatrical Display.  Based on the all-new 2017 film, the Spider-Man Homecoming VR Experience is a first-person look through the eyes of Spidey himself.</p>		\n										<img width=\"1024\" height=\"711\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-1024x711.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-1024x711.jpg 1024w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-300x208.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-768x533.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n										<img width=\"750\" height=\"1000\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834.jpg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834-225x300.jpg 225w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n										<img width=\"750\" height=\"750\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788.jpg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788-150x150.jpg 150w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788-300x300.jpg 300w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n			<h4>Our company is a collective of amazing people striving to build delightful products.</h4>		\n		<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.</p>		\n			<a href=\"#\" role=\"button\">\n						Read More\n					</a>','Home','','inherit','closed','closed','','5-revision-v1','','','2019-09-21 21:30:01','2019-09-21 21:30:01','',5,'http://23.235.208.11/~ondisp5/wp/2019/09/21/5-revision-v1/',0,'revision','',0),(427,1,'2019-09-21 21:37:22','2019-09-21 21:37:22','<h2>#WHAT\'S COOL</h2>		\n			<h2>INNOVATIONS FROM ONDISPLAY CREATIVE</h2>		\n			<h1>LIVING STANDEES HAUNTING THEATERS</h1>		\n			<h3>ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS</h3>		\n			<h2>INSIDIOUS – THE LAST KEY</h2>		\n		<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!</p>		\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n		https://vimeo.com/257088337		\n			<h2>INSIDIOUS CHAPTER 3</h2>		\n		<p>OnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.</p>		\n										<img width=\"1000\" height=\"800\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset.jpeg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset.jpeg 1000w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-300x240.jpeg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-768x614.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />											\n		https://vimeo.com/130807026		\n			<h1>VIRTUAL REALITY EXPERIENCE</h1>		\n			<h3>SOMETHING SOMETHING WHATEVER</h3>		\n			<h2>SPIDER-MAN HOMECOMING DISPLAY</h2>		\n		<p>Submerse yourself in the world of your friendly neighborhood Spider-Man in this fun and thrilling VR Theatrical Display.  Based on the all-new 2017 film, the Spider-Man Homecoming VR Experience is a first-person look through the eyes of Spidey himself.</p>		\n										<img width=\"1024\" height=\"711\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-1024x711.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-1024x711.jpg 1024w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-300x208.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-768x533.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n										<img width=\"750\" height=\"1000\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834.jpg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834-225x300.jpg 225w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n										<img width=\"750\" height=\"750\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788.jpg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788-150x150.jpg 150w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788-300x300.jpg 300w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n			<h4>Our company is a collective of amazing people striving to build delightful products.</h4>		\n		<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.</p>		\n			<a href=\"#\" role=\"button\">\n						Read More\n					</a>','Home','','inherit','closed','closed','','5-revision-v1','','','2019-09-21 21:37:22','2019-09-21 21:37:22','',5,'http://23.235.208.11/~ondisp5/wp/2019/09/21/5-revision-v1/',0,'revision','',0),(432,1,'2019-09-21 22:23:04','2019-09-21 22:23:04','<h2>#WHAT\'S COOL</h2>		\n			<h2>INNOVATIONS FROM ONDISPLAY CREATIVE</h2>		\n			<h1>LIVING STANDEES HAUNTING THEATERS</h1>		\n			<h3>ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS</h3>		\n			<h2>INSIDIOUS – THE LAST KEY</h2>		\n		<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!</p>		\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n		https://vimeo.com/257088337		\n			<h2>INSIDIOUS CHAPTER 3</h2>		\n		<p>OnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.</p>		\n										<img width=\"1000\" height=\"800\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset.jpeg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset.jpeg 1000w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-300x240.jpeg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-768x614.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />											\n		https://vimeo.com/130807026		\n			<h1>VIRTUAL REALITY EXPERIENCE</h1>		\n			<h2>SPIDER-MAN HOMECOMING DISPLAY</h2>		\n		<p>Submerse yourself in the world of your friendly neighborhood Spider-Man in this fun and thrilling VR Theatrical Display.  Based on the all-new 2017 film, the Spider-Man Homecoming VR Experience is a first-person look through the eyes of Spidey himself.</p>		\n										<img width=\"1024\" height=\"711\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-1024x711.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-1024x711.jpg 1024w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-300x208.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-768x533.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n										<img width=\"750\" height=\"1000\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834.jpg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834-225x300.jpg 225w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n										<img width=\"750\" height=\"750\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788.jpg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788-150x150.jpg 150w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788-300x300.jpg 300w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n			<h4>Our company is a collective of amazing people striving to build delightful products.</h4>		\n		<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.</p>		\n			<a href=\"#\" role=\"button\">\n						Read More\n					</a>','Home','','inherit','closed','closed','','5-revision-v1','','','2019-09-21 22:23:04','2019-09-21 22:23:04','',5,'http://23.235.208.11/~ondisp5/wp/2019/09/21/5-revision-v1/',0,'revision','',0),(438,1,'2019-09-21 22:48:10','2019-09-21 22:48:10','<h2>#WHAT\'S COOL</h2>\n<h2>INNOVATIONS FROM ONDISPLAY CREATIVE</h2>\n<h1>LIVING STANDEES HAUNTING THEATERS</h1>\n<h3>ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS</h3>\n<h2>INSIDIOUS – THE LAST KEY</h2>\nMovie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!\n\n<img src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" width=\"768\" height=\"1024\">\n<img src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" width=\"768\" height=\"1024\">\nhttps://vimeo.com/257088337\n<h2>INSIDIOUS CHAPTER 3</h2>\nOnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.\n\n<img src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset.jpeg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset.jpeg 1000w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-300x240.jpeg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-768x614.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" width=\"1000\" height=\"800\">\nhttps://vimeo.com/130807026\n<h1>VIRTUAL REALITY EXPERIENCE</h1>\n<h2>SPIDER-MAN HOMECOMING DISPLAY</h2>\nSubmerse yourself in the world of your friendly neighborhood Spider-Man in this fun and thrilling VR Theatrical Display.&nbsp;&nbsp;Based on the all-new 2017 film, the Spider-Man Homecoming VR Experience is a first-person look through the eyes of Spidey himself.\n\n<img src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-1024x711.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-1024x711.jpg 1024w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-300x208.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-768x533.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" width=\"1024\" height=\"711\">\n<img src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834.jpg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834-225x300.jpg 225w\" sizes=\"(max-width: 750px) 100vw, 750px\" width=\"750\" height=\"1000\">\n<img src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788.jpg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788-150x150.jpg 150w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788-300x300.jpg 300w\" sizes=\"(max-width: 750px) 100vw, 750px\" width=\"750\" height=\"750\">\n<h2>THE STRANDERS PREY AT NIGHT</h2>\n<h2>GRAND FORMAT PHOTO-OP STANDEE</h2>\n<h4>Our company is a collective of amazing people striving to build delightful products.</h4>\nIt is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.\n\n<a href=\"#\" role=\"button\">\nRead More\n</a>','Home','','inherit','closed','closed','','5-revision-v1','','','2019-09-21 22:48:10','2019-09-21 22:48:10','',5,'http://23.235.208.11/~ondisp5/wp/2019/09/21/5-revision-v1/',0,'revision','',0),(434,1,'2019-09-21 22:29:32','2019-09-21 22:29:32','<h2>#WHAT\'S COOL</h2>		\n			<h2>INNOVATIONS FROM ONDISPLAY CREATIVE</h2>		\n			<h1>LIVING STANDEES HAUNTING THEATERS</h1>		\n			<h3>ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS</h3>		\n			<h2>INSIDIOUS – THE LAST KEY</h2>		\n		<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!</p>		\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n		https://vimeo.com/257088337		\n			<h2>INSIDIOUS CHAPTER 3</h2>		\n		<p>OnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.</p>		\n										<img width=\"1000\" height=\"800\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset.jpeg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset.jpeg 1000w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-300x240.jpeg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-768x614.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />											\n		https://vimeo.com/130807026		\n			<h1>VIRTUAL REALITY EXPERIENCE</h1>		\n			<h2>SPIDER-MAN HOMECOMING DISPLAY</h2>		\n		<p>Submerse yourself in the world of your friendly neighborhood Spider-Man in this fun and thrilling VR Theatrical Display.  Based on the all-new 2017 film, the Spider-Man Homecoming VR Experience is a first-person look through the eyes of Spidey himself.</p>		\n										<img width=\"1024\" height=\"711\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-1024x711.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-1024x711.jpg 1024w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-300x208.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-768x533.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n										<img width=\"750\" height=\"1000\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834.jpg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834-225x300.jpg 225w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n										<img width=\"750\" height=\"750\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788.jpg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788-150x150.jpg 150w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788-300x300.jpg 300w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n			<h2>#WHAT\'S COOL</h2>		\n			<h2>INNOVATIONS FROM ONDISPLAY CREATIVE</h2>		\n			<h4>Our company is a collective of amazing people striving to build delightful products.</h4>		\n		<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.</p>		\n			<a href=\"#\" role=\"button\">\n						Read More\n					</a>','Home','','inherit','closed','closed','','5-revision-v1','','','2019-09-21 22:29:32','2019-09-21 22:29:32','',5,'http://23.235.208.11/~ondisp5/wp/2019/09/21/5-revision-v1/',0,'revision','',0),(435,1,'2019-09-21 22:44:32','2019-09-21 22:44:32','','TheStrangers_V01','','inherit','open','closed','','thestrangers_v01','','','2019-09-21 22:44:32','2019-09-21 22:44:32','',5,'http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/TheStrangers_V01.jpg',0,'attachment','image/jpeg',0),(436,1,'2019-09-21 22:44:46','2019-09-21 22:44:46','<h2>#WHAT\'S COOL</h2>		\n			<h2>INNOVATIONS FROM ONDISPLAY CREATIVE</h2>		\n			<h1>LIVING STANDEES HAUNTING THEATERS</h1>		\n			<h3>ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS</h3>		\n			<h2>INSIDIOUS – THE LAST KEY</h2>		\n		<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!</p>		\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n		https://vimeo.com/257088337		\n			<h2>INSIDIOUS CHAPTER 3</h2>		\n		<p>OnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.</p>		\n										<img width=\"1000\" height=\"800\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset.jpeg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset.jpeg 1000w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-300x240.jpeg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-768x614.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />											\n		https://vimeo.com/130807026		\n			<h1>VIRTUAL REALITY EXPERIENCE</h1>		\n			<h2>SPIDER-MAN HOMECOMING DISPLAY</h2>		\n		<p>Submerse yourself in the world of your friendly neighborhood Spider-Man in this fun and thrilling VR Theatrical Display.  Based on the all-new 2017 film, the Spider-Man Homecoming VR Experience is a first-person look through the eyes of Spidey himself.</p>		\n										<img width=\"1024\" height=\"711\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-1024x711.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-1024x711.jpg 1024w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-300x208.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-768x533.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n										<img width=\"750\" height=\"1000\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834.jpg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834-225x300.jpg 225w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n										<img width=\"750\" height=\"750\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788.jpg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788-150x150.jpg 150w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788-300x300.jpg 300w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n			<h2>#WHAT\'S COOL</h2>		\n			<h2>INNOVATIONS FROM ONDISPLAY CREATIVE</h2>		\n			<h4>Our company is a collective of amazing people striving to build delightful products.</h4>		\n		<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.</p>		\n			<a href=\"#\" role=\"button\">\n						Read More\n					</a>','Home','','inherit','closed','closed','','5-revision-v1','','','2019-09-21 22:44:46','2019-09-21 22:44:46','',5,'http://23.235.208.11/~ondisp5/wp/2019/09/21/5-revision-v1/',0,'revision','',0),(437,1,'2019-09-21 22:45:28','2019-09-21 22:45:28','<h2>#WHAT\'S COOL</h2>		\n			<h2>INNOVATIONS FROM ONDISPLAY CREATIVE</h2>		\n			<h1>LIVING STANDEES HAUNTING THEATERS</h1>		\n			<h3>ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS</h3>		\n			<h2>INSIDIOUS – THE LAST KEY</h2>		\n		<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!</p>		\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n		https://vimeo.com/257088337		\n			<h2>INSIDIOUS CHAPTER 3</h2>		\n		<p>OnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.</p>		\n										<img width=\"1000\" height=\"800\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset.jpeg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset.jpeg 1000w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-300x240.jpeg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-768x614.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />											\n		https://vimeo.com/130807026		\n			<h1>VIRTUAL REALITY EXPERIENCE</h1>		\n			<h2>SPIDER-MAN HOMECOMING DISPLAY</h2>		\n		<p>Submerse yourself in the world of your friendly neighborhood Spider-Man in this fun and thrilling VR Theatrical Display.  Based on the all-new 2017 film, the Spider-Man Homecoming VR Experience is a first-person look through the eyes of Spidey himself.</p>		\n										<img width=\"1024\" height=\"711\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-1024x711.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-1024x711.jpg 1024w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-300x208.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-768x533.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n										<img width=\"750\" height=\"1000\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834.jpg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834-225x300.jpg 225w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n										<img width=\"750\" height=\"750\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788.jpg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788-150x150.jpg 150w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788-300x300.jpg 300w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n			<h2>THE STRANDERS PREY AT NIGHT</h2>		\n			<h2>GRAND FORMAT PHOTO-OP STANDEE</h2>		\n			<h4>Our company is a collective of amazing people striving to build delightful products.</h4>		\n		<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.</p>		\n			<a href=\"#\" role=\"button\">\n						Read More\n					</a>','Home','','inherit','closed','closed','','5-revision-v1','','','2019-09-21 22:45:28','2019-09-21 22:45:28','',5,'http://23.235.208.11/~ondisp5/wp/2019/09/21/5-revision-v1/',0,'revision','',0),(442,1,'2019-09-21 22:53:14','2019-09-21 22:53:14','<h2>#WHAT\'S COOL</h2>\n<h2>INNOVATIONS FROM ONDISPLAY CREATIVE</h2>\n<h1>LIVING STANDEES HAUNTING THEATERS</h1>\n<h3>ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS</h3>\n<h2>INSIDIOUS – THE LAST KEY</h2>\nMovie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!\n\n<img src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" width=\"768\" height=\"1024\">\n<img src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" width=\"768\" height=\"1024\">\nhttps://vimeo.com/257088337\n<h2>INSIDIOUS CHAPTER 3</h2>\nOnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.\n\n<img src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset.jpeg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset.jpeg 1000w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-300x240.jpeg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-768x614.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" width=\"1000\" height=\"800\">\nhttps://vimeo.com/130807026\n<h1>VIRTUAL REALITY EXPERIENCE</h1>\n<h2>SPIDER-MAN HOMECOMING DISPLAY</h2>\nSubmerse yourself in the world of your friendly neighborhood Spider-Man in this fun and thrilling VR Theatrical Display.&nbsp;&nbsp;Based on the all-new 2017 film, the Spider-Man Homecoming VR Experience is a first-person look through the eyes of Spidey himself.\n\n<img src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-1024x711.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-1024x711.jpg 1024w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-300x208.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-768x533.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" width=\"1024\" height=\"711\">\n<img src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834.jpg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834-225x300.jpg 225w\" sizes=\"(max-width: 750px) 100vw, 750px\" width=\"750\" height=\"1000\">\n<img src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788.jpg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788-150x150.jpg 150w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788-300x300.jpg 300w\" sizes=\"(max-width: 750px) 100vw, 750px\" width=\"750\" height=\"750\">\n<h2>THE STRANGERS PREY AT NIGHT</h2>\n<h2>GRAND FORMAT PHOTO-OP STANDEE</h2>\n<h4>Our company is a collective of amazing people striving to build delightful products.</h4>\nIt is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.\n\n<a href=\"#\" role=\"button\">\nRead More\n</a>','Home','','inherit','closed','closed','','5-revision-v1','','','2019-09-21 22:53:14','2019-09-21 22:53:14','',5,'http://23.235.208.11/~ondisp5/wp/2019/09/21/5-revision-v1/',0,'revision','',0),(440,1,'2019-09-21 22:50:37','2019-09-21 22:50:37','<h2>#WHAT\'S COOL</h2>		\n			<h2>INNOVATIONS FROM ONDISPLAY CREATIVE</h2>		\n			<h1>LIVING STANDEES HAUNTING THEATERS</h1>		\n			<h3>ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS</h3>		\n			<h2>INSIDIOUS – THE LAST KEY</h2>		\n		<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!</p>		\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n		https://vimeo.com/257088337		\n			<h2>INSIDIOUS CHAPTER 3</h2>		\n		<p>OnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.</p>		\n										<img width=\"1000\" height=\"800\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset.jpeg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset.jpeg 1000w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-300x240.jpeg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-768x614.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />											\n		https://vimeo.com/130807026		\n			<h1>VIRTUAL REALITY EXPERIENCE</h1>		\n			<h2>SPIDER-MAN HOMECOMING DISPLAY</h2>		\n		<p>Submerse yourself in the world of your friendly neighborhood Spider-Man in this fun and thrilling VR Theatrical Display.  Based on the all-new 2017 film, the Spider-Man Homecoming VR Experience is a first-person look through the eyes of Spidey himself.</p>		\n										<img width=\"1024\" height=\"711\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-1024x711.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-1024x711.jpg 1024w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-300x208.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-768x533.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n										<img width=\"750\" height=\"1000\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834.jpg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834-225x300.jpg 225w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n										<img width=\"750\" height=\"750\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788.jpg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788-150x150.jpg 150w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788-300x300.jpg 300w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n			<h2>THE STRANGERS PREY AT NIGHT</h2>		\n			<h2>GRAND FORMAT PHOTO-OP STANDEE</h2>		\n			<h4>Our company is a collective of amazing people striving to build delightful products.</h4>		\n		<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.</p>		\n			<a href=\"#\" role=\"button\">\n						Read More\n					</a>','Home','','inherit','closed','closed','','5-revision-v1','','','2019-09-21 22:50:37','2019-09-21 22:50:37','',5,'http://23.235.208.11/~ondisp5/wp/2019/09/21/5-revision-v1/',0,'revision','',0),(441,1,'2019-09-21 22:50:53','2019-09-21 22:50:53','<h2>#WHAT\'S COOL</h2>		\n			<h2>INNOVATIONS FROM ONDISPLAY CREATIVE</h2>		\n			<h1>LIVING STANDEES HAUNTING THEATERS</h1>		\n			<h3>ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS</h3>		\n			<h2>INSIDIOUS – THE LAST KEY</h2>		\n		<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!</p>		\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n		https://vimeo.com/257088337		\n			<h2>INSIDIOUS CHAPTER 3</h2>		\n		<p>OnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.</p>		\n										<img width=\"1000\" height=\"800\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset.jpeg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset.jpeg 1000w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-300x240.jpeg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-768x614.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />											\n		https://vimeo.com/130807026		\n			<h1>VIRTUAL REALITY EXPERIENCE</h1>		\n			<h2>SPIDER-MAN HOMECOMING DISPLAY</h2>		\n		<p>Submerse yourself in the world of your friendly neighborhood Spider-Man in this fun and thrilling VR Theatrical Display.  Based on the all-new 2017 film, the Spider-Man Homecoming VR Experience is a first-person look through the eyes of Spidey himself.</p>		\n										<img width=\"1024\" height=\"711\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-1024x711.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-1024x711.jpg 1024w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-300x208.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-768x533.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n										<img width=\"750\" height=\"1000\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834.jpg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834-225x300.jpg 225w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n										<img width=\"750\" height=\"750\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788.jpg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788-150x150.jpg 150w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788-300x300.jpg 300w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n			<h2>THE STRANGERS PREY AT NIGHT</h2>		\n			<h2>GRAND FORMAT PHOTO-OP STANDEE</h2>		\n			<h4>Our company is a collective of amazing people striving to build delightful products.</h4>		\n		<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.</p>		\n			<a href=\"#\" role=\"button\">\n						Read More\n					</a>','Home','','inherit','closed','closed','','5-revision-v1','','','2019-09-21 22:50:53','2019-09-21 22:50:53','',5,'http://23.235.208.11/~ondisp5/wp/2019/09/21/5-revision-v1/',0,'revision','',0),(443,1,'2019-09-21 22:54:11','2019-09-21 22:54:11','<h2>#WHAT\'S COOL</h2>		\n			<h2>INNOVATIONS FROM ONDISPLAY CREATIVE</h2>		\n			<h1>LIVING STANDEES HAUNTING THEATERS</h1>		\n			<h3>ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS</h3>		\n			<h2>INSIDIOUS – THE LAST KEY</h2>		\n		<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!</p>		\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n		https://vimeo.com/257088337		\n			<h2>INSIDIOUS CHAPTER 3</h2>		\n		<p>OnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.</p>		\n										<img width=\"1000\" height=\"800\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset.jpeg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset.jpeg 1000w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-300x240.jpeg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-768x614.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />											\n		https://vimeo.com/130807026		\n			<h1>VIRTUAL REALITY EXPERIENCE</h1>		\n			<h2>SPIDER-MAN HOMECOMING DISPLAY</h2>		\n		<p>Submerse yourself in the world of your friendly neighborhood Spider-Man in this fun and thrilling VR Theatrical Display.  Based on the all-new 2017 film, the Spider-Man Homecoming VR Experience is a first-person look through the eyes of Spidey himself.</p>		\n										<img width=\"1024\" height=\"711\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-1024x711.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-1024x711.jpg 1024w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-300x208.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-768x533.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n										<img width=\"750\" height=\"1000\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834.jpg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834-225x300.jpg 225w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n										<img width=\"750\" height=\"750\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788.jpg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788-150x150.jpg 150w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788-300x300.jpg 300w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n			<h2>THE STRANGERS PREY AT NIGHT</h2>		\n			<h2>GRAND FORMAT PHOTO-OP STANDEE</h2>		\n			<h4>Our company is a collective of amazing people striving to build delightful products.</h4>		\n		<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.</p>		\n			<a href=\"#\" role=\"button\">\n						Read More\n					</a>','Home','','inherit','closed','closed','','5-revision-v1','','','2019-09-21 22:54:11','2019-09-21 22:54:11','',5,'http://23.235.208.11/~ondisp5/wp/2019/09/21/5-revision-v1/',0,'revision','',0),(448,1,'2019-09-21 22:59:41','2019-09-21 22:59:41','<h2>#WHAT\'S COOL</h2>		\n			<h2>INNOVATIONS FROM ONDISPLAY CREATIVE</h2>		\n			<h1>LIVING STANDEES HAUNTING THEATERS</h1>		\n			<h3>ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS</h3>		\n			<h2>INSIDIOUS – THE LAST KEY</h2>		\n		<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!</p>		\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n		https://vimeo.com/257088337		\n			<h2>INSIDIOUS CHAPTER 3</h2>		\n		<p>OnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.</p>		\n										<img width=\"1000\" height=\"800\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset.jpeg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset.jpeg 1000w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-300x240.jpeg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-768x614.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />											\n		https://vimeo.com/130807026		\n			<h1>VIRTUAL REALITY EXPERIENCE</h1>		\n			<h2>SPIDER-MAN HOMECOMING DISPLAY</h2>		\n		<p>Submerse yourself in the world of your friendly neighborhood Spider-Man in this fun and thrilling VR Theatrical Display.  Based on the all-new 2017 film, the Spider-Man Homecoming VR Experience is a first-person look through the eyes of Spidey himself.</p>		\n										<img width=\"1024\" height=\"711\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-1024x711.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-1024x711.jpg 1024w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-300x208.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-768x533.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n										<img width=\"750\" height=\"1000\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834.jpg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834-225x300.jpg 225w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n										<img width=\"750\" height=\"750\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788.jpg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788-150x150.jpg 150w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788-300x300.jpg 300w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n			<h2>THE STRANGERS PREY AT NIGHT</h2>		\n			<h2>GRAND FORMAT PHOTO-OP STANDEE</h2>		\n			<h1>MARKETING AT ITS FINEST, TAILORED FOR SOCIAL MEDIA</h1>		\n		<p>This theatrical display allows fans to take photos with Dollface, Pin-up Girl, the Man in the Mask and share their photos on social media.</p>		\n										<img width=\"942\" height=\"703\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003.jpg 942w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003-300x224.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003-768x573.jpg 768w\" sizes=\"(max-width: 942px) 100vw, 942px\" />											\n										<img width=\"950\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-950x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-950x1024.jpg 950w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-278x300.jpg 278w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-768x828.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n.jpg 1000w\" sizes=\"(max-width: 950px) 100vw, 950px\" />											\n		https://vimeo.com/257088337		\n			<h4>Our company is a collective of amazing people striving to build delightful products.</h4>		\n		<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.</p>		\n			<a href=\"#\" role=\"button\">\n						Read More\n					</a>','Home','','inherit','closed','closed','','5-revision-v1','','','2019-09-21 22:59:41','2019-09-21 22:59:41','',5,'http://23.235.208.11/~ondisp5/wp/2019/09/21/5-revision-v1/',0,'revision','',0),(445,1,'2019-09-21 22:56:41','2019-09-21 22:56:41','<h2>#WHAT\'S COOL</h2>		\n			<h2>INNOVATIONS FROM ONDISPLAY CREATIVE</h2>		\n			<h1>LIVING STANDEES HAUNTING THEATERS</h1>		\n			<h3>ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS</h3>		\n			<h2>INSIDIOUS – THE LAST KEY</h2>		\n		<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!</p>		\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n		https://vimeo.com/257088337		\n			<h2>INSIDIOUS CHAPTER 3</h2>		\n		<p>OnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.</p>		\n										<img width=\"1000\" height=\"800\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset.jpeg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset.jpeg 1000w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-300x240.jpeg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-768x614.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />											\n		https://vimeo.com/130807026		\n			<h1>VIRTUAL REALITY EXPERIENCE</h1>		\n			<h2>SPIDER-MAN HOMECOMING DISPLAY</h2>		\n		<p>Submerse yourself in the world of your friendly neighborhood Spider-Man in this fun and thrilling VR Theatrical Display.  Based on the all-new 2017 film, the Spider-Man Homecoming VR Experience is a first-person look through the eyes of Spidey himself.</p>		\n										<img width=\"1024\" height=\"711\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-1024x711.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-1024x711.jpg 1024w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-300x208.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-768x533.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n										<img width=\"750\" height=\"1000\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834.jpg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834-225x300.jpg 225w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n										<img width=\"750\" height=\"750\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788.jpg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788-150x150.jpg 150w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788-300x300.jpg 300w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n			<h2>THE STRANGERS PREY AT NIGHT</h2>		\n			<h2>GRAND FORMAT PHOTO-OP STANDEE</h2>		\n			<h1>MARKETING AT ITS FINEST, TAILORED FOR SOCIAL MEDIA</h1>		\n		<p>This theatrical display allows fans to take photos with Dollface, Pin-up Girl, the Man in the Mask and share their photos on social media.</p>		\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n		https://vimeo.com/257088337		\n			<h2>INSIDIOUS CHAPTER 3</h2>		\n		<p>OnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.</p>		\n										<img width=\"1000\" height=\"800\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset.jpeg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset.jpeg 1000w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-300x240.jpeg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-768x614.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />											\n		https://vimeo.com/130807026		\n			<h1>VIRTUAL REALITY EXPERIENCE</h1>		\n			<h2>SPIDER-MAN HOMECOMING DISPLAY</h2>		\n		<p>Submerse yourself in the world of your friendly neighborhood Spider-Man in this fun and thrilling VR Theatrical Display.  Based on the all-new 2017 film, the Spider-Man Homecoming VR Experience is a first-person look through the eyes of Spidey himself.</p>		\n										<img width=\"1024\" height=\"711\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-1024x711.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-1024x711.jpg 1024w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-300x208.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-768x533.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n										<img width=\"750\" height=\"1000\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834.jpg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834-225x300.jpg 225w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n										<img width=\"750\" height=\"750\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788.jpg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788-150x150.jpg 150w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788-300x300.jpg 300w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n			<h4>Our company is a collective of amazing people striving to build delightful products.</h4>		\n		<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.</p>		\n			<a href=\"#\" role=\"button\">\n						Read More\n					</a>','Home','','inherit','closed','closed','','5-revision-v1','','','2019-09-21 22:56:41','2019-09-21 22:56:41','',5,'http://23.235.208.11/~ondisp5/wp/2019/09/21/5-revision-v1/',0,'revision','',0),(444,1,'2019-09-21 22:55:04','2019-09-21 22:55:04','<h2>#WHAT\'S COOL</h2>		\n			<h2>INNOVATIONS FROM ONDISPLAY CREATIVE</h2>		\n			<h1>LIVING STANDEES HAUNTING THEATERS</h1>		\n			<h3>ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS</h3>		\n			<h2>INSIDIOUS – THE LAST KEY</h2>		\n		<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!</p>		\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n		https://vimeo.com/257088337		\n			<h2>INSIDIOUS CHAPTER 3</h2>		\n		<p>OnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.</p>		\n										<img width=\"1000\" height=\"800\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset.jpeg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset.jpeg 1000w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-300x240.jpeg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-768x614.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />											\n		https://vimeo.com/130807026		\n			<h1>VIRTUAL REALITY EXPERIENCE</h1>		\n			<h2>SPIDER-MAN HOMECOMING DISPLAY</h2>		\n		<p>Submerse yourself in the world of your friendly neighborhood Spider-Man in this fun and thrilling VR Theatrical Display.  Based on the all-new 2017 film, the Spider-Man Homecoming VR Experience is a first-person look through the eyes of Spidey himself.</p>		\n										<img width=\"1024\" height=\"711\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-1024x711.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-1024x711.jpg 1024w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-300x208.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-768x533.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n										<img width=\"750\" height=\"1000\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834.jpg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834-225x300.jpg 225w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n										<img width=\"750\" height=\"750\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788.jpg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788-150x150.jpg 150w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788-300x300.jpg 300w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n			<h2>THE STRANGERS PREY AT NIGHT</h2>		\n			<h2>GRAND FORMAT PHOTO-OP STANDEE</h2>		\n			<h1>LIVING STANDEES HAUNTING THEATERS</h1>		\n			<h3>ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS</h3>		\n			<h2>INSIDIOUS – THE LAST KEY</h2>		\n		<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!</p>		\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n		https://vimeo.com/257088337		\n			<h2>INSIDIOUS CHAPTER 3</h2>		\n		<p>OnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.</p>		\n										<img width=\"1000\" height=\"800\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset.jpeg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset.jpeg 1000w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-300x240.jpeg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-768x614.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />											\n		https://vimeo.com/130807026		\n			<h1>VIRTUAL REALITY EXPERIENCE</h1>		\n			<h2>SPIDER-MAN HOMECOMING DISPLAY</h2>		\n		<p>Submerse yourself in the world of your friendly neighborhood Spider-Man in this fun and thrilling VR Theatrical Display.  Based on the all-new 2017 film, the Spider-Man Homecoming VR Experience is a first-person look through the eyes of Spidey himself.</p>		\n										<img width=\"1024\" height=\"711\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-1024x711.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-1024x711.jpg 1024w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-300x208.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-768x533.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n										<img width=\"750\" height=\"1000\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834.jpg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834-225x300.jpg 225w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n										<img width=\"750\" height=\"750\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788.jpg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788-150x150.jpg 150w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788-300x300.jpg 300w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n			<h4>Our company is a collective of amazing people striving to build delightful products.</h4>		\n		<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.</p>		\n			<a href=\"#\" role=\"button\">\n						Read More\n					</a>','Home','','inherit','closed','closed','','5-revision-v1','','','2019-09-21 22:55:04','2019-09-21 22:55:04','',5,'http://23.235.208.11/~ondisp5/wp/2019/09/21/5-revision-v1/',0,'revision','',0),(446,1,'2019-09-21 22:58:33','2019-09-21 22:58:33','','003','','inherit','open','closed','','003','','','2019-09-21 22:58:33','2019-09-21 22:58:33','',5,'http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003.jpg',0,'attachment','image/jpeg',0),(447,1,'2019-09-21 22:58:58','2019-09-21 22:58:58','','26222472_170774200201231_6120473304701599744_n','','inherit','open','closed','','26222472_170774200201231_6120473304701599744_n','','','2019-09-21 22:58:58','2019-09-21 22:58:58','',5,'http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n.jpg',0,'attachment','image/jpeg',0),(449,1,'2019-09-21 23:01:34','2019-09-21 23:01:34','','VIDEO_COMING_SOON_01','','inherit','open','closed','','video_coming_soon_01','','','2019-09-21 23:01:34','2019-09-21 23:01:34','',5,'http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01.jpg',0,'attachment','image/jpeg',0),(460,1,'2019-09-21 23:18:44','2019-09-21 23:18:44','<h2>#WHAT\'S COOL</h2>\n<h2>INNOVATIONS FROM ONDISPLAY CREATIVE</h2>\n<h1>LIVING STANDEES HAUNTING THEATERS</h1>\n<h3>ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS</h3>\n<h2>INSIDIOUS – THE LAST KEY</h2>\nMovie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!\n\n<img src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" width=\"768\" height=\"1024\">\n<img src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" width=\"768\" height=\"1024\">\nhttps://vimeo.com/257088337\n<h2>INSIDIOUS CHAPTER 3</h2>\nOnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.\n\n<img src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset.jpeg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset.jpeg 1000w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-300x240.jpeg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-768x614.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" width=\"1000\" height=\"800\">\nhttps://vimeo.com/130807026\n<h1>VIRTUAL REALITY EXPERIENCE</h1>\n<h2>SPIDER-MAN HOMECOMING DISPLAY</h2>\nSubmerse yourself in the world of your friendly neighborhood Spider-Man in this fun and thrilling VR Theatrical Display.&nbsp;&nbsp;Based on the all-new 2017 film, the Spider-Man Homecoming VR Experience is a first-person look through the eyes of Spidey himself.\n\n<img src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-1024x711.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-1024x711.jpg 1024w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-300x208.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-768x533.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" width=\"1024\" height=\"711\">\n<img src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834.jpg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834-225x300.jpg 225w\" sizes=\"(max-width: 750px) 100vw, 750px\" width=\"750\" height=\"1000\">\n<img src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788.jpg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788-150x150.jpg 150w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788-300x300.jpg 300w\" sizes=\"(max-width: 750px) 100vw, 750px\" width=\"750\" height=\"750\">\n<h2>THE STRANGERS PREY AT NIGHT</h2>\n<h2>GRAND FORMAT PHOTO-OP STANDEE</h2>\n<h1>MARKETING AT ITS FINEST, TAILORED FOR SOCIAL MEDIA</h1>\nThis theatrical display allows fans to take photos with Dollface, Pin-up Girl, the Man in the Mask and share their photos on social media.\n\n<img src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003.jpg 942w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003-300x224.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003-768x573.jpg 768w\" sizes=\"(max-width: 942px) 100vw, 942px\" width=\"942\" height=\"703\">\n<img src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-950x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-950x1024.jpg 950w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-278x300.jpg 278w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-768x828.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n.jpg 1000w\" sizes=\"(max-width: 950px) 100vw, 950px\" width=\"950\" height=\"1024\">\n<img src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-1024x576.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-1024x576.jpg 1024w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-300x169.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-768x432.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01.jpg 1280w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" width=\"1024\" height=\"576\">\n<h4>Our company is a collective of amazing people striving to build delightful products.</h4>\nIt is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.\n\n<a href=\"#\" role=\"button\">\nRead More\n</a>','Home','','inherit','closed','closed','','5-revision-v1','','','2019-09-21 23:18:44','2019-09-21 23:18:44','',5,'http://23.235.208.11/~ondisp5/wp/2019/09/21/5-revision-v1/',0,'revision','',0),(450,1,'2019-09-21 23:02:16','2019-09-21 23:02:16','<h2>#WHAT\'S COOL</h2>		\n			<h2>INNOVATIONS FROM ONDISPLAY CREATIVE</h2>		\n			<h1>LIVING STANDEES HAUNTING THEATERS</h1>		\n			<h3>ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS</h3>		\n			<h2>INSIDIOUS – THE LAST KEY</h2>		\n		<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!</p>		\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n		https://vimeo.com/257088337		\n			<h2>INSIDIOUS CHAPTER 3</h2>		\n		<p>OnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.</p>		\n										<img width=\"1000\" height=\"800\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset.jpeg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset.jpeg 1000w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-300x240.jpeg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-768x614.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />											\n		https://vimeo.com/130807026		\n			<h1>VIRTUAL REALITY EXPERIENCE</h1>		\n			<h2>SPIDER-MAN HOMECOMING DISPLAY</h2>		\n		<p>Submerse yourself in the world of your friendly neighborhood Spider-Man in this fun and thrilling VR Theatrical Display.  Based on the all-new 2017 film, the Spider-Man Homecoming VR Experience is a first-person look through the eyes of Spidey himself.</p>		\n										<img width=\"1024\" height=\"711\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-1024x711.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-1024x711.jpg 1024w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-300x208.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-768x533.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n										<img width=\"750\" height=\"1000\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834.jpg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834-225x300.jpg 225w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n										<img width=\"750\" height=\"750\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788.jpg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788-150x150.jpg 150w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788-300x300.jpg 300w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n			<h2>THE STRANGERS PREY AT NIGHT</h2>		\n			<h2>GRAND FORMAT PHOTO-OP STANDEE</h2>		\n			<h1>MARKETING AT ITS FINEST, TAILORED FOR SOCIAL MEDIA</h1>		\n		<p>This theatrical display allows fans to take photos with Dollface, Pin-up Girl, the Man in the Mask and share their photos on social media.</p>		\n										<img width=\"942\" height=\"703\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003.jpg 942w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003-300x224.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003-768x573.jpg 768w\" sizes=\"(max-width: 942px) 100vw, 942px\" />											\n										<img width=\"950\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-950x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-950x1024.jpg 950w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-278x300.jpg 278w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-768x828.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n.jpg 1000w\" sizes=\"(max-width: 950px) 100vw, 950px\" />											\n										<img width=\"1024\" height=\"576\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-1024x576.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-1024x576.jpg 1024w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-300x169.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-768x432.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01.jpg 1280w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n			<h4>Our company is a collective of amazing people striving to build delightful products.</h4>		\n		<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.</p>		\n			<a href=\"#\" role=\"button\">\n						Read More\n					</a>','Home','','inherit','closed','closed','','5-revision-v1','','','2019-09-21 23:02:16','2019-09-21 23:02:16','',5,'http://23.235.208.11/~ondisp5/wp/2019/09/21/5-revision-v1/',0,'revision','',0),(451,1,'2019-09-21 23:04:38','2019-09-21 23:04:38','<h2>#WHAT\'S COOL</h2>		\n			<h2>INNOVATIONS FROM ONDISPLAY CREATIVE</h2>		\n			<h1>LIVING STANDEES HAUNTING THEATERS</h1>		\n			<h3>ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS</h3>		\n			<h2>INSIDIOUS – THE LAST KEY</h2>		\n		<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!</p>		\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n		https://vimeo.com/257088337		\n			<h2>INSIDIOUS CHAPTER 3</h2>		\n		<p>OnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.</p>		\n										<img width=\"1000\" height=\"800\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset.jpeg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset.jpeg 1000w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-300x240.jpeg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-768x614.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />											\n		https://vimeo.com/130807026		\n			<h1>VIRTUAL REALITY EXPERIENCE</h1>		\n			<h2>SPIDER-MAN HOMECOMING DISPLAY</h2>		\n		<p>Submerse yourself in the world of your friendly neighborhood Spider-Man in this fun and thrilling VR Theatrical Display.  Based on the all-new 2017 film, the Spider-Man Homecoming VR Experience is a first-person look through the eyes of Spidey himself.</p>		\n										<img width=\"1024\" height=\"711\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-1024x711.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-1024x711.jpg 1024w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-300x208.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-768x533.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n										<img width=\"750\" height=\"1000\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834.jpg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834-225x300.jpg 225w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n										<img width=\"750\" height=\"750\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788.jpg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788-150x150.jpg 150w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788-300x300.jpg 300w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n			<h2>THE STRANGERS PREY AT NIGHT</h2>		\n			<h2>GRAND FORMAT PHOTO-OP STANDEE</h2>		\n			<h1>MARKETING AT ITS FINEST, TAILORED FOR SOCIAL MEDIA</h1>		\n		<p>This theatrical display allows fans to take photos with Dollface, Pin-up Girl, the Man in the Mask and share their photos on social media.</p>		\n										<img width=\"942\" height=\"703\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003.jpg 942w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003-300x224.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003-768x573.jpg 768w\" sizes=\"(max-width: 942px) 100vw, 942px\" />											\n										<img width=\"950\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-950x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-950x1024.jpg 950w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-278x300.jpg 278w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-768x828.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n.jpg 1000w\" sizes=\"(max-width: 950px) 100vw, 950px\" />											\n										<img width=\"1024\" height=\"576\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-1024x576.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-1024x576.jpg 1024w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-300x169.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-768x432.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01.jpg 1280w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n			<h4>Our company is a collective of amazing people striving to build delightful products.</h4>		\n		<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.</p>		\n			<a href=\"#\" role=\"button\">\n						Read More\n					</a>','Home','','inherit','closed','closed','','5-revision-v1','','','2019-09-21 23:04:38','2019-09-21 23:04:38','',5,'http://23.235.208.11/~ondisp5/wp/2019/09/21/5-revision-v1/',0,'revision','',0),(452,1,'2019-09-21 23:05:36','2019-09-21 23:05:36','<h2>#WHAT\'S COOL</h2>		\n			<h2>INNOVATIONS FROM ONDISPLAY CREATIVE</h2>		\n			<h1>LIVING STANDEES HAUNTING THEATERS</h1>		\n			<h3>ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS</h3>		\n			<h2>INSIDIOUS – THE LAST KEY</h2>		\n		<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!</p>		\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n		https://vimeo.com/257088337		\n			<h2>INSIDIOUS CHAPTER 3</h2>		\n		<p>OnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.</p>		\n										<img width=\"1000\" height=\"800\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset.jpeg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset.jpeg 1000w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-300x240.jpeg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-768x614.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />											\n		https://vimeo.com/130807026		\n			<h1>VIRTUAL REALITY EXPERIENCE</h1>		\n			<h2>SPIDER-MAN HOMECOMING DISPLAY</h2>		\n		<p>Submerse yourself in the world of your friendly neighborhood Spider-Man in this fun and thrilling VR Theatrical Display.  Based on the all-new 2017 film, the Spider-Man Homecoming VR Experience is a first-person look through the eyes of Spidey himself.</p>		\n										<img width=\"1024\" height=\"711\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-1024x711.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-1024x711.jpg 1024w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-300x208.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-768x533.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n										<img width=\"750\" height=\"1000\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834.jpg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834-225x300.jpg 225w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n										<img width=\"750\" height=\"750\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788.jpg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788-150x150.jpg 150w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788-300x300.jpg 300w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n			<h2>THE STRANGERS PREY AT NIGHT</h2>		\n			<h2>GRAND FORMAT PHOTO-OP STANDEE</h2>		\n			<h1>MARKETING AT ITS FINEST, TAILORED FOR SOCIAL MEDIA</h1>		\n		<p>This theatrical display allows fans to take photos with Dollface, Pin-up Girl, the Man in the Mask and share their photos on social media.</p>		\n										<img width=\"942\" height=\"703\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003.jpg 942w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003-300x224.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003-768x573.jpg 768w\" sizes=\"(max-width: 942px) 100vw, 942px\" />											\n										<img width=\"950\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-950x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-950x1024.jpg 950w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-278x300.jpg 278w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-768x828.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n.jpg 1000w\" sizes=\"(max-width: 950px) 100vw, 950px\" />											\n										<img width=\"1024\" height=\"576\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-1024x576.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-1024x576.jpg 1024w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-300x169.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-768x432.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01.jpg 1280w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n			<h4>Our company is a collective of amazing people striving to build delightful products.</h4>		\n		<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.</p>		\n			<a href=\"#\" role=\"button\">\n						Read More\n					</a>','Home','','inherit','closed','closed','','5-revision-v1','','','2019-09-21 23:05:36','2019-09-21 23:05:36','',5,'http://23.235.208.11/~ondisp5/wp/2019/09/21/5-revision-v1/',0,'revision','',0),(453,1,'2019-09-21 23:05:57','2019-09-21 23:05:57','<h2>#WHAT\'S COOL</h2>		\n			<h2>INNOVATIONS FROM ONDISPLAY CREATIVE</h2>		\n			<h1>LIVING STANDEES HAUNTING THEATERS</h1>		\n			<h3>ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS</h3>		\n			<h2>INSIDIOUS – THE LAST KEY</h2>		\n		<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!</p>		\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n		https://vimeo.com/257088337		\n			<h2>INSIDIOUS CHAPTER 3</h2>		\n		<p>OnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.</p>		\n										<img width=\"1000\" height=\"800\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset.jpeg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset.jpeg 1000w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-300x240.jpeg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-768x614.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />											\n		https://vimeo.com/130807026		\n			<h1>VIRTUAL REALITY EXPERIENCE</h1>		\n			<h2>SPIDER-MAN HOMECOMING DISPLAY</h2>		\n		<p>Submerse yourself in the world of your friendly neighborhood Spider-Man in this fun and thrilling VR Theatrical Display.  Based on the all-new 2017 film, the Spider-Man Homecoming VR Experience is a first-person look through the eyes of Spidey himself.</p>		\n										<img width=\"1024\" height=\"711\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-1024x711.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-1024x711.jpg 1024w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-300x208.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-768x533.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n										<img width=\"750\" height=\"1000\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834.jpg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834-225x300.jpg 225w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n										<img width=\"750\" height=\"750\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788.jpg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788-150x150.jpg 150w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788-300x300.jpg 300w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n			<h2>THE STRANGERS PREY AT NIGHT</h2>		\n			<h2>GRAND FORMAT PHOTO-OP STANDEE</h2>		\n			<h1>MARKETING AT ITS FINEST, TAILORED FOR SOCIAL MEDIA</h1>		\n		<p>This theatrical display allows fans to take photos with Dollface, Pin-up Girl, the Man in the Mask and share their photos on social media.</p>		\n										<img width=\"942\" height=\"703\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003.jpg 942w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003-300x224.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003-768x573.jpg 768w\" sizes=\"(max-width: 942px) 100vw, 942px\" />											\n										<img width=\"950\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-950x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-950x1024.jpg 950w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-278x300.jpg 278w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-768x828.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n.jpg 1000w\" sizes=\"(max-width: 950px) 100vw, 950px\" />											\n										<img width=\"1024\" height=\"576\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-1024x576.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-1024x576.jpg 1024w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-300x169.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-768x432.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01.jpg 1280w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n			<h4>Our company is a collective of amazing people striving to build delightful products.</h4>		\n		<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.</p>		\n			<a href=\"#\" role=\"button\">\n						Read More\n					</a>','Home','','inherit','closed','closed','','5-revision-v1','','','2019-09-21 23:05:57','2019-09-21 23:05:57','',5,'http://23.235.208.11/~ondisp5/wp/2019/09/21/5-revision-v1/',0,'revision','',0),(454,1,'2019-09-21 23:06:29','2019-09-21 23:06:29','<h2>#WHAT\'S COOL</h2>		\n			<h2>INNOVATIONS FROM ONDISPLAY CREATIVE</h2>		\n			<h1>LIVING STANDEES HAUNTING THEATERS</h1>		\n			<h3>ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS</h3>		\n			<h2>INSIDIOUS – THE LAST KEY</h2>		\n		<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!</p>		\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n		https://vimeo.com/257088337		\n			<h2>INSIDIOUS CHAPTER 3</h2>		\n		<p>OnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.</p>		\n										<img width=\"1000\" height=\"800\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset.jpeg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset.jpeg 1000w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-300x240.jpeg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-768x614.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />											\n		https://vimeo.com/130807026		\n			<h1>VIRTUAL REALITY EXPERIENCE</h1>		\n			<h2>SPIDER-MAN HOMECOMING DISPLAY</h2>		\n		<p>Submerse yourself in the world of your friendly neighborhood Spider-Man in this fun and thrilling VR Theatrical Display.  Based on the all-new 2017 film, the Spider-Man Homecoming VR Experience is a first-person look through the eyes of Spidey himself.</p>		\n										<img width=\"1024\" height=\"711\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-1024x711.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-1024x711.jpg 1024w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-300x208.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-768x533.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n										<img width=\"750\" height=\"1000\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834.jpg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834-225x300.jpg 225w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n										<img width=\"750\" height=\"750\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788.jpg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788-150x150.jpg 150w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788-300x300.jpg 300w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n			<h2>THE STRANGERS PREY AT NIGHT</h2>		\n			<h2>GRAND FORMAT PHOTO-OP STANDEE</h2>		\n			<h1>MARKETING AT ITS FINEST, TAILORED FOR SOCIAL MEDIA</h1>		\n		<p>This theatrical display allows fans to take photos with Dollface, Pin-up Girl, the Man in the Mask and share their photos on social media.</p>		\n										<img width=\"942\" height=\"703\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003.jpg 942w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003-300x224.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003-768x573.jpg 768w\" sizes=\"(max-width: 942px) 100vw, 942px\" />											\n										<img width=\"950\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-950x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-950x1024.jpg 950w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-278x300.jpg 278w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-768x828.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n.jpg 1000w\" sizes=\"(max-width: 950px) 100vw, 950px\" />											\n										<img width=\"1024\" height=\"576\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-1024x576.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-1024x576.jpg 1024w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-300x169.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-768x432.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01.jpg 1280w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n			<h4>Our company is a collective of amazing people striving to build delightful products.</h4>		\n		<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.</p>		\n			<a href=\"#\" role=\"button\">\n						Read More\n					</a>','Home','','inherit','closed','closed','','5-revision-v1','','','2019-09-21 23:06:29','2019-09-21 23:06:29','',5,'http://23.235.208.11/~ondisp5/wp/2019/09/21/5-revision-v1/',0,'revision','',0),(455,1,'2019-09-21 23:07:09','2019-09-21 23:07:09','<h2>#WHAT\'S COOL</h2>		\n			<h2>INNOVATIONS FROM ONDISPLAY CREATIVE</h2>		\n			<h1>LIVING STANDEES HAUNTING THEATERS</h1>		\n			<h3>ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS</h3>		\n			<h2>INSIDIOUS – THE LAST KEY</h2>		\n		<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!</p>		\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n		https://vimeo.com/257088337		\n			<h2>INSIDIOUS CHAPTER 3</h2>		\n		<p>OnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.</p>		\n										<img width=\"1000\" height=\"800\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset.jpeg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset.jpeg 1000w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-300x240.jpeg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-768x614.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />											\n		https://vimeo.com/130807026		\n			<h1>VIRTUAL REALITY EXPERIENCE</h1>		\n			<h2>SPIDER-MAN HOMECOMING DISPLAY</h2>		\n		<p>Submerse yourself in the world of your friendly neighborhood Spider-Man in this fun and thrilling VR Theatrical Display.  Based on the all-new 2017 film, the Spider-Man Homecoming VR Experience is a first-person look through the eyes of Spidey himself.</p>		\n										<img width=\"1024\" height=\"711\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-1024x711.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-1024x711.jpg 1024w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-300x208.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-768x533.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n										<img width=\"750\" height=\"1000\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834.jpg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834-225x300.jpg 225w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n										<img width=\"750\" height=\"750\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788.jpg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788-150x150.jpg 150w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788-300x300.jpg 300w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n			<h2>THE STRANGERS PREY AT NIGHT</h2>		\n			<h2>GRAND FORMAT PHOTO-OP STANDEE</h2>		\n			<h1>MARKETING AT ITS FINEST, TAILORED FOR SOCIAL MEDIA</h1>		\n		<p>This theatrical display allows fans to take photos with Dollface, Pin-up Girl, the Man in the Mask and share their photos on social media.</p>		\n										<img width=\"942\" height=\"703\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003.jpg 942w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003-300x224.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003-768x573.jpg 768w\" sizes=\"(max-width: 942px) 100vw, 942px\" />											\n										<img width=\"950\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-950x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-950x1024.jpg 950w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-278x300.jpg 278w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-768x828.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n.jpg 1000w\" sizes=\"(max-width: 950px) 100vw, 950px\" />											\n										<img width=\"1024\" height=\"576\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-1024x576.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-1024x576.jpg 1024w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-300x169.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-768x432.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01.jpg 1280w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n			<h4>Our company is a collective of amazing people striving to build delightful products.</h4>		\n		<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.</p>		\n			<a href=\"#\" role=\"button\">\n						Read More\n					</a>','Home','','inherit','closed','closed','','5-revision-v1','','','2019-09-21 23:07:09','2019-09-21 23:07:09','',5,'http://23.235.208.11/~ondisp5/wp/2019/09/21/5-revision-v1/',0,'revision','',0),(456,1,'2019-09-21 23:07:55','2019-09-21 23:07:55','<h2>#WHAT\'S COOL</h2>		\n			<h2>INNOVATIONS FROM ONDISPLAY CREATIVE</h2>		\n			<h1>LIVING STANDEES HAUNTING THEATERS</h1>		\n			<h3>ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS</h3>		\n			<h2>INSIDIOUS – THE LAST KEY</h2>		\n		<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!</p>		\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n		https://vimeo.com/257088337		\n			<h2>INSIDIOUS CHAPTER 3</h2>		\n		<p>OnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.</p>		\n										<img width=\"1000\" height=\"800\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset.jpeg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset.jpeg 1000w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-300x240.jpeg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-768x614.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />											\n		https://vimeo.com/130807026		\n			<h1>VIRTUAL REALITY EXPERIENCE</h1>		\n			<h2>SPIDER-MAN HOMECOMING DISPLAY</h2>		\n		<p>Submerse yourself in the world of your friendly neighborhood Spider-Man in this fun and thrilling VR Theatrical Display.  Based on the all-new 2017 film, the Spider-Man Homecoming VR Experience is a first-person look through the eyes of Spidey himself.</p>		\n										<img width=\"1024\" height=\"711\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-1024x711.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-1024x711.jpg 1024w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-300x208.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-768x533.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n										<img width=\"750\" height=\"1000\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834.jpg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834-225x300.jpg 225w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n										<img width=\"750\" height=\"750\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788.jpg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788-150x150.jpg 150w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788-300x300.jpg 300w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n			<h2>THE STRANGERS PREY AT NIGHT</h2>		\n			<h2>GRAND FORMAT PHOTO-OP STANDEE</h2>		\n			<h1>MARKETING AT ITS FINEST, TAILORED FOR SOCIAL MEDIA</h1>		\n		<p>This theatrical display allows fans to take photos with Dollface, Pin-up Girl, the Man in the Mask and share their photos on social media.</p>		\n										<img width=\"942\" height=\"703\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003.jpg 942w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003-300x224.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003-768x573.jpg 768w\" sizes=\"(max-width: 942px) 100vw, 942px\" />											\n										<img width=\"950\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-950x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-950x1024.jpg 950w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-278x300.jpg 278w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-768x828.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n.jpg 1000w\" sizes=\"(max-width: 950px) 100vw, 950px\" />											\n										<img width=\"1024\" height=\"576\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-1024x576.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-1024x576.jpg 1024w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-300x169.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-768x432.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01.jpg 1280w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n			<h4>Our company is a collective of amazing people striving to build delightful products.</h4>		\n		<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.</p>		\n			<a href=\"#\" role=\"button\">\n						Read More\n					</a>','Home','','inherit','closed','closed','','5-revision-v1','','','2019-09-21 23:07:55','2019-09-21 23:07:55','',5,'http://23.235.208.11/~ondisp5/wp/2019/09/21/5-revision-v1/',0,'revision','',0),(457,1,'2019-09-21 23:10:14','2019-09-21 23:10:14','<h2>#WHAT\'S COOL</h2>		\n			<h2>INNOVATIONS FROM ONDISPLAY CREATIVE</h2>		\n			<h1>LIVING STANDEES HAUNTING THEATERS</h1>		\n			<h3>ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS</h3>		\n			<h2>INSIDIOUS – THE LAST KEY</h2>		\n		<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!</p>		\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n		https://vimeo.com/257088337		\n			<h2>INSIDIOUS CHAPTER 3</h2>		\n		<p>OnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.</p>		\n										<img width=\"1000\" height=\"800\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset.jpeg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset.jpeg 1000w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-300x240.jpeg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-768x614.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />											\n		https://vimeo.com/130807026		\n			<h1>VIRTUAL REALITY EXPERIENCE</h1>		\n			<h2>SPIDER-MAN HOMECOMING DISPLAY</h2>		\n		<p>Submerse yourself in the world of your friendly neighborhood Spider-Man in this fun and thrilling VR Theatrical Display.  Based on the all-new 2017 film, the Spider-Man Homecoming VR Experience is a first-person look through the eyes of Spidey himself.</p>		\n										<img width=\"1024\" height=\"711\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-1024x711.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-1024x711.jpg 1024w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-300x208.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-768x533.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n										<img width=\"750\" height=\"1000\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834.jpg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834-225x300.jpg 225w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n										<img width=\"750\" height=\"750\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788.jpg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788-150x150.jpg 150w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788-300x300.jpg 300w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n			<h2>THE STRANGERS PREY AT NIGHT</h2>		\n			<h2>GRAND FORMAT PHOTO-OP STANDEE</h2>		\n			<h1>MARKETING AT ITS FINEST, TAILORED FOR SOCIAL MEDIA</h1>		\n		<p>This theatrical display allows fans to take photos with Dollface, Pin-up Girl, the Man in the Mask and share their photos on social media.</p>		\n										<img width=\"942\" height=\"703\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003.jpg 942w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003-300x224.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003-768x573.jpg 768w\" sizes=\"(max-width: 942px) 100vw, 942px\" />											\n										<img width=\"950\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-950x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-950x1024.jpg 950w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-278x300.jpg 278w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-768x828.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n.jpg 1000w\" sizes=\"(max-width: 950px) 100vw, 950px\" />											\n										<img width=\"1024\" height=\"576\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-1024x576.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-1024x576.jpg 1024w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-300x169.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-768x432.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01.jpg 1280w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n			<h4>Our company is a collective of amazing people striving to build delightful products.</h4>		\n		<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.</p>		\n			<a href=\"#\" role=\"button\">\n						Read More\n					</a>','Home','','inherit','closed','closed','','5-revision-v1','','','2019-09-21 23:10:14','2019-09-21 23:10:14','',5,'http://23.235.208.11/~ondisp5/wp/2019/09/21/5-revision-v1/',0,'revision','',0),(458,1,'2019-09-21 23:12:29','2019-09-21 23:12:29','<h2>#WHAT\'S COOL</h2>		\n			<h2>INNOVATIONS FROM ONDISPLAY CREATIVE</h2>		\n			<h1>LIVING STANDEES HAUNTING THEATERS</h1>		\n			<h3>ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS</h3>		\n			<h2>INSIDIOUS – THE LAST KEY</h2>		\n		<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!</p>		\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n		https://vimeo.com/257088337		\n			<h2>INSIDIOUS CHAPTER 3</h2>		\n		<p>OnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.</p>		\n										<img width=\"1000\" height=\"800\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset.jpeg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset.jpeg 1000w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-300x240.jpeg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-768x614.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />											\n		https://vimeo.com/130807026		\n			<h1>VIRTUAL REALITY EXPERIENCE</h1>		\n			<h2>SPIDER-MAN HOMECOMING DISPLAY</h2>		\n		<p>Submerse yourself in the world of your friendly neighborhood Spider-Man in this fun and thrilling VR Theatrical Display.  Based on the all-new 2017 film, the Spider-Man Homecoming VR Experience is a first-person look through the eyes of Spidey himself.</p>		\n										<img width=\"1024\" height=\"711\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-1024x711.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-1024x711.jpg 1024w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-300x208.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-768x533.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n										<img width=\"750\" height=\"1000\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834.jpg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834-225x300.jpg 225w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n										<img width=\"750\" height=\"750\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788.jpg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788-150x150.jpg 150w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788-300x300.jpg 300w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n			<h2>THE STRANGERS PREY AT NIGHT</h2>		\n			<h2>GRAND FORMAT PHOTO-OP STANDEE</h2>		\n			<h1>MARKETING AT ITS FINEST, TAILORED FOR SOCIAL MEDIA</h1>		\n		<p>This theatrical display allows fans to take photos with Dollface, Pin-up Girl, the Man in the Mask and share their photos on social media.</p>		\n										<img width=\"942\" height=\"703\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003.jpg 942w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003-300x224.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003-768x573.jpg 768w\" sizes=\"(max-width: 942px) 100vw, 942px\" />											\n										<img width=\"950\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-950x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-950x1024.jpg 950w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-278x300.jpg 278w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-768x828.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n.jpg 1000w\" sizes=\"(max-width: 950px) 100vw, 950px\" />											\n										<img width=\"1024\" height=\"576\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-1024x576.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-1024x576.jpg 1024w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-300x169.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-768x432.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01.jpg 1280w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n			<h4>Our company is a collective of amazing people striving to build delightful products.</h4>		\n		<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.</p>		\n			<a href=\"#\" role=\"button\">\n						Read More\n					</a>','Home','','inherit','closed','closed','','5-revision-v1','','','2019-09-21 23:12:29','2019-09-21 23:12:29','',5,'http://23.235.208.11/~ondisp5/wp/2019/09/21/5-revision-v1/',0,'revision','',0),(459,1,'2019-09-21 23:12:55','2019-09-21 23:12:55','<h2>#WHAT\'S COOL</h2>		\n			<h2>INNOVATIONS FROM ONDISPLAY CREATIVE</h2>		\n			<h1>LIVING STANDEES HAUNTING THEATERS</h1>		\n			<h3>ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS</h3>		\n			<h2>INSIDIOUS – THE LAST KEY</h2>		\n		<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!</p>		\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n		https://vimeo.com/257088337		\n			<h2>INSIDIOUS CHAPTER 3</h2>		\n		<p>OnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.</p>		\n										<img width=\"1000\" height=\"800\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset.jpeg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset.jpeg 1000w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-300x240.jpeg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-768x614.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />											\n		https://vimeo.com/130807026		\n			<h1>VIRTUAL REALITY EXPERIENCE</h1>		\n			<h2>SPIDER-MAN HOMECOMING DISPLAY</h2>		\n		<p>Submerse yourself in the world of your friendly neighborhood Spider-Man in this fun and thrilling VR Theatrical Display.  Based on the all-new 2017 film, the Spider-Man Homecoming VR Experience is a first-person look through the eyes of Spidey himself.</p>		\n										<img width=\"1024\" height=\"711\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-1024x711.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-1024x711.jpg 1024w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-300x208.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-768x533.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n										<img width=\"750\" height=\"1000\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834.jpg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834-225x300.jpg 225w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n										<img width=\"750\" height=\"750\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788.jpg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788-150x150.jpg 150w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788-300x300.jpg 300w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n			<h2>THE STRANGERS PREY AT NIGHT</h2>		\n			<h2>GRAND FORMAT PHOTO-OP STANDEE</h2>		\n			<h1>MARKETING AT ITS FINEST, TAILORED FOR SOCIAL MEDIA</h1>		\n		<p>This theatrical display allows fans to take photos with Dollface, Pin-up Girl, the Man in the Mask and share their photos on social media.</p>		\n										<img width=\"942\" height=\"703\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003.jpg 942w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003-300x224.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003-768x573.jpg 768w\" sizes=\"(max-width: 942px) 100vw, 942px\" />											\n										<img width=\"950\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-950x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-950x1024.jpg 950w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-278x300.jpg 278w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-768x828.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n.jpg 1000w\" sizes=\"(max-width: 950px) 100vw, 950px\" />											\n										<img width=\"1024\" height=\"576\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-1024x576.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-1024x576.jpg 1024w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-300x169.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-768x432.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01.jpg 1280w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n			<h4>Our company is a collective of amazing people striving to build delightful products.</h4>		\n		<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.</p>		\n			<a href=\"#\" role=\"button\">\n						Read More\n					</a>','Home','','inherit','closed','closed','','5-revision-v1','','','2019-09-21 23:12:55','2019-09-21 23:12:55','',5,'http://23.235.208.11/~ondisp5/wp/2019/09/21/5-revision-v1/',0,'revision','',0),(473,1,'2019-09-21 23:41:15','2019-09-21 23:41:15','<h2>#WHAT\'S COOL</h2>\n<h2>INNOVATIONS FROM ONDISPLAY CREATIVE</h2>\n<h1>LIVING STANDEES HAUNTING THEATERS</h1>\n<h3>ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS</h3>\n<h2>INSIDIOUS – THE LAST KEY</h2>\nMovie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!\n\n<img src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" width=\"768\" height=\"1024\">\n<img src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" width=\"768\" height=\"1024\">\nhttps://vimeo.com/257088337\n<h2>INSIDIOUS CHAPTER 3</h2>\nOnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.\n\n<img src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset.jpeg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset.jpeg 1000w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-300x240.jpeg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-768x614.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" width=\"1000\" height=\"800\">\nhttps://vimeo.com/130807026\n<h1>VIRTUAL REALITY EXPERIENCE</h1>\n<h2>SPIDER-MAN HOMECOMING DISPLAY</h2>\nSubmerse yourself in the world of your friendly neighborhood Spider-Man in this fun and thrilling VR Theatrical Display.&nbsp;&nbsp;Based on the all-new 2017 film, the Spider-Man Homecoming VR Experience is a first-person look through the eyes of Spidey himself.\n\n<img src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-1024x711.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-1024x711.jpg 1024w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-300x208.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-768x533.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" width=\"1024\" height=\"711\">\n<img src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834.jpg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834-225x300.jpg 225w\" sizes=\"(max-width: 750px) 100vw, 750px\" width=\"750\" height=\"1000\">\n<img src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788.jpg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788-150x150.jpg 150w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788-300x300.jpg 300w\" sizes=\"(max-width: 750px) 100vw, 750px\" width=\"750\" height=\"750\">\n<h2>THE STRANGERS PREY AT NIGHT</h2>\n<h2>GRAND FORMAT PHOTO-OP STANDEE</h2>\n<h1>MARKETING AT ITS FINEST, TAILORED FOR SOCIAL MEDIA</h1>\nThis theatrical display allows fans to take photos with Dollface, Pin-up Girl, the Man in the Mask and share their photos on social media.\n\n<img src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003.jpg 942w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003-300x224.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003-768x573.jpg 768w\" sizes=\"(max-width: 942px) 100vw, 942px\" width=\"942\" height=\"703\">\n<img src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-950x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-950x1024.jpg 950w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-278x300.jpg 278w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-768x828.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n.jpg 1000w\" sizes=\"(max-width: 950px) 100vw, 950px\" width=\"950\" height=\"1024\">\n<img src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-1024x576.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-1024x576.jpg 1024w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-300x169.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-768x432.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01.jpg 1280w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" width=\"1024\" height=\"576\">\n<h4>Our company is a collective of amazing people striving to build delightful products.</h4>\nIt is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.\n\n<a href=\"#\" role=\"button\">\nRead More\n</a>','Home','','inherit','closed','closed','','5-revision-v1','','','2019-09-21 23:41:15','2019-09-21 23:41:15','',5,'http://23.235.208.11/~ondisp5/wp/2019/09/21/5-revision-v1/',0,'revision','',0),(461,1,'2019-09-21 23:19:48','2019-09-21 23:19:48','<h2>#WHAT\'S COOL</h2>		\n			<h2>INNOVATIONS FROM ONDISPLAY CREATIVE</h2>		\n			<h1>LIVING STANDEES HAUNTING THEATERS</h1>		\n			<h3>ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS</h3>		\n			<h2>INSIDIOUS – THE LAST KEY</h2>		\n		<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!</p>		\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n		https://vimeo.com/257088337		\n			<h2>INSIDIOUS CHAPTER 3</h2>		\n		<p>OnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.</p>		\n										<img width=\"1000\" height=\"800\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset.jpeg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset.jpeg 1000w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-300x240.jpeg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-768x614.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />											\n		https://vimeo.com/130807026		\n			<h1>VIRTUAL REALITY EXPERIENCE</h1>		\n			<h2>SPIDER-MAN HOMECOMING DISPLAY</h2>		\n		<p>Submerse yourself in the world of your friendly neighborhood Spider-Man in this fun and thrilling VR Theatrical Display.  Based on the all-new 2017 film, the Spider-Man Homecoming VR Experience is a first-person look through the eyes of Spidey himself.</p>		\n										<img width=\"1024\" height=\"711\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-1024x711.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-1024x711.jpg 1024w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-300x208.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-768x533.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n										<img width=\"750\" height=\"1000\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834.jpg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834-225x300.jpg 225w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n										<img width=\"750\" height=\"750\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788.jpg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788-150x150.jpg 150w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788-300x300.jpg 300w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n			<h2>THE STRANGERS PREY AT NIGHT</h2>		\n			<h2>GRAND FORMAT PHOTO-OP STANDEE</h2>		\n			<h1>MARKETING AT ITS FINEST, TAILORED FOR SOCIAL MEDIA</h1>		\n		<p>This theatrical display allows fans to take photos with Dollface, Pin-up Girl, the Man in the Mask and share their photos on social media.</p>		\n										<img width=\"942\" height=\"703\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003.jpg 942w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003-300x224.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003-768x573.jpg 768w\" sizes=\"(max-width: 942px) 100vw, 942px\" />											\n										<img width=\"950\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-950x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-950x1024.jpg 950w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-278x300.jpg 278w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-768x828.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n.jpg 1000w\" sizes=\"(max-width: 950px) 100vw, 950px\" />											\n										<img width=\"1024\" height=\"576\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-1024x576.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-1024x576.jpg 1024w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-300x169.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-768x432.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01.jpg 1280w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n			<h4>Our company is a collective of amazing people striving to build delightful products.</h4>		\n		<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.</p>		\n			<a href=\"#\" role=\"button\">\n						Read More\n					</a>','Home','','inherit','closed','closed','','5-revision-v1','','','2019-09-21 23:19:48','2019-09-21 23:19:48','',5,'http://23.235.208.11/~ondisp5/wp/2019/09/21/5-revision-v1/',0,'revision','',0),(462,1,'2019-09-21 23:20:22','2019-09-21 23:20:22','<h2>#WHAT\'S COOL</h2>		\n			<h2>INNOVATIONS FROM ONDISPLAY CREATIVE</h2>		\n			<h1>LIVING STANDEES HAUNTING THEATERS</h1>		\n			<h3>ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS</h3>		\n			<h2>INSIDIOUS – THE LAST KEY</h2>		\n		<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!</p>		\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n		https://vimeo.com/257088337		\n			<h2>INSIDIOUS CHAPTER 3</h2>		\n		<p>OnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.</p>		\n										<img width=\"1000\" height=\"800\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset.jpeg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset.jpeg 1000w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-300x240.jpeg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-768x614.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />											\n		https://vimeo.com/130807026		\n			<h1>VIRTUAL REALITY EXPERIENCE</h1>		\n			<h2>SPIDER-MAN HOMECOMING DISPLAY</h2>		\n		<p>Submerse yourself in the world of your friendly neighborhood Spider-Man in this fun and thrilling VR Theatrical Display.  Based on the all-new 2017 film, the Spider-Man Homecoming VR Experience is a first-person look through the eyes of Spidey himself.</p>		\n										<img width=\"1024\" height=\"711\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-1024x711.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-1024x711.jpg 1024w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-300x208.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-768x533.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n										<img width=\"750\" height=\"1000\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834.jpg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834-225x300.jpg 225w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n										<img width=\"750\" height=\"750\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788.jpg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788-150x150.jpg 150w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788-300x300.jpg 300w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n			<h2>THE STRANGERS PREY AT NIGHT</h2>		\n			<h2>GRAND FORMAT PHOTO-OP STANDEE</h2>		\n			<h1>MARKETING AT ITS FINEST, TAILORED FOR SOCIAL MEDIA</h1>		\n		<p>This theatrical display allows fans to take photos with Dollface, Pin-up Girl, the Man in the Mask and share their photos on social media.</p>		\n										<img width=\"942\" height=\"703\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003.jpg 942w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003-300x224.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003-768x573.jpg 768w\" sizes=\"(max-width: 942px) 100vw, 942px\" />											\n										<img width=\"950\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-950x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-950x1024.jpg 950w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-278x300.jpg 278w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-768x828.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n.jpg 1000w\" sizes=\"(max-width: 950px) 100vw, 950px\" />											\n										<img width=\"1024\" height=\"576\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-1024x576.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-1024x576.jpg 1024w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-300x169.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-768x432.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01.jpg 1280w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n			<h4>Our company is a collective of amazing people striving to build delightful products.</h4>		\n		<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.</p>		\n			<a href=\"#\" role=\"button\">\n						Read More\n					</a>','Home','','inherit','closed','closed','','5-revision-v1','','','2019-09-21 23:20:22','2019-09-21 23:20:22','',5,'http://23.235.208.11/~ondisp5/wp/2019/09/21/5-revision-v1/',0,'revision','',0),(464,1,'2019-09-21 23:30:04','2019-09-21 23:30:04','<h2>#WHAT\'S COOL</h2>		\n			<h2>INNOVATIONS FROM ONDISPLAY CREATIVE</h2>		\n			<h1>LIVING STANDEES HAUNTING THEATERS</h1>		\n			<h3>ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS</h3>		\n			<h2>INSIDIOUS – THE LAST KEY</h2>		\n		<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!</p>		\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n		https://vimeo.com/257088337		\n			<h2>INSIDIOUS CHAPTER 3</h2>		\n		<p>OnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.</p>		\n										<img width=\"1000\" height=\"800\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset.jpeg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset.jpeg 1000w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-300x240.jpeg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-768x614.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />											\n		https://vimeo.com/130807026		\n			<h1>VIRTUAL REALITY EXPERIENCE</h1>		\n			<h2>SPIDER-MAN HOMECOMING DISPLAY</h2>		\n		<p>Submerse yourself in the world of your friendly neighborhood Spider-Man in this fun and thrilling VR Theatrical Display.  Based on the all-new 2017 film, the Spider-Man Homecoming VR Experience is a first-person look through the eyes of Spidey himself.</p>		\n										<img width=\"1024\" height=\"711\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-1024x711.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-1024x711.jpg 1024w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-300x208.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-768x533.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n										<img width=\"750\" height=\"1000\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834.jpg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834-225x300.jpg 225w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n										<img width=\"750\" height=\"750\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788.jpg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788-150x150.jpg 150w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788-300x300.jpg 300w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n			<h2>THE STRANGERS PREY AT NIGHT</h2>		\n			<h2>GRAND FORMAT PHOTO-OP STANDEE</h2>		\n			<h1>MARKETING AT ITS FINEST, TAILORED FOR SOCIAL MEDIA</h1>		\n		<p>This theatrical display allows fans to take photos with Dollface, Pin-up Girl, the Man in the Mask and share their photos on social media.</p>		\n										<img width=\"942\" height=\"703\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003.jpg 942w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003-300x224.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003-768x573.jpg 768w\" sizes=\"(max-width: 942px) 100vw, 942px\" />											\n										<img width=\"950\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-950x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-950x1024.jpg 950w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-278x300.jpg 278w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-768x828.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n.jpg 1000w\" sizes=\"(max-width: 950px) 100vw, 950px\" />											\n										<img width=\"1024\" height=\"576\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-1024x576.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-1024x576.jpg 1024w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-300x169.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-768x432.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01.jpg 1280w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n			<h4>Our company is a collective of amazing people striving to build delightful products.</h4>		\n		<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.</p>		\n			<a href=\"#\" role=\"button\">\n						Read More\n					</a>','Home','','inherit','closed','closed','','5-revision-v1','','','2019-09-21 23:30:04','2019-09-21 23:30:04','',5,'http://23.235.208.11/~ondisp5/wp/2019/09/21/5-revision-v1/',0,'revision','',0),(463,1,'2019-09-21 23:28:27','2019-09-21 23:28:27','<h2>#WHAT\'S COOL</h2>		\n			<h2>INNOVATIONS FROM ONDISPLAY CREATIVE</h2>		\n			<h1>LIVING STANDEES HAUNTING THEATERS</h1>		\n			<h3>ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS</h3>		\n			<h2>INSIDIOUS – THE LAST KEY</h2>		\n		<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!</p>		\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n		https://vimeo.com/257088337		\n			<h2>INSIDIOUS CHAPTER 3</h2>		\n		<p>OnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.</p>		\n										<img width=\"1000\" height=\"800\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset.jpeg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset.jpeg 1000w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-300x240.jpeg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-768x614.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />											\n		https://vimeo.com/130807026		\n			<h1>VIRTUAL REALITY EXPERIENCE</h1>		\n			<h2>SPIDER-MAN HOMECOMING DISPLAY</h2>		\n		<p>Submerse yourself in the world of your friendly neighborhood Spider-Man in this fun and thrilling VR Theatrical Display.  Based on the all-new 2017 film, the Spider-Man Homecoming VR Experience is a first-person look through the eyes of Spidey himself.</p>		\n										<img width=\"1024\" height=\"711\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-1024x711.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-1024x711.jpg 1024w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-300x208.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-768x533.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n										<img width=\"750\" height=\"1000\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834.jpg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834-225x300.jpg 225w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n										<img width=\"750\" height=\"750\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788.jpg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788-150x150.jpg 150w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788-300x300.jpg 300w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n			<h2>THE STRANGERS PREY AT NIGHT</h2>		\n			<h2>GRAND FORMAT PHOTO-OP STANDEE</h2>		\n			<h1>MARKETING AT ITS FINEST, TAILORED FOR SOCIAL MEDIA</h1>		\n		<p>This theatrical display allows fans to take photos with Dollface, Pin-up Girl, the Man in the Mask and share their photos on social media.</p>		\n										<img width=\"942\" height=\"703\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003.jpg 942w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003-300x224.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003-768x573.jpg 768w\" sizes=\"(max-width: 942px) 100vw, 942px\" />											\n										<img width=\"950\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-950x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-950x1024.jpg 950w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-278x300.jpg 278w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-768x828.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n.jpg 1000w\" sizes=\"(max-width: 950px) 100vw, 950px\" />											\n										<img width=\"1024\" height=\"576\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-1024x576.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-1024x576.jpg 1024w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-300x169.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-768x432.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01.jpg 1280w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n			<h2>THE STRANGERS PREY AT NIGHT</h2>		\n			<h2>GRAND FORMAT PHOTO-OP STANDEE</h2>		\n			<h4>Our company is a collective of amazing people striving to build delightful products.</h4>		\n		<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.</p>		\n			<a href=\"#\" role=\"button\">\n						Read More\n					</a>','Home','','inherit','closed','closed','','5-revision-v1','','','2019-09-21 23:28:27','2019-09-21 23:28:27','',5,'http://23.235.208.11/~ondisp5/wp/2019/09/21/5-revision-v1/',0,'revision','',0),(465,1,'2019-09-21 23:32:01','2019-09-21 23:32:01','<h2>#WHAT\'S COOL</h2>		\n			<h2>INNOVATIONS FROM ONDISPLAY CREATIVE</h2>		\n			<h1>LIVING STANDEES HAUNTING THEATERS</h1>		\n			<h3>ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS</h3>		\n			<h2>INSIDIOUS – THE LAST KEY</h2>		\n		<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!</p>		\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n		https://vimeo.com/257088337		\n			<h2>INSIDIOUS CHAPTER 3</h2>		\n		<p>OnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.</p>		\n										<img width=\"1000\" height=\"800\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset.jpeg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset.jpeg 1000w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-300x240.jpeg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-768x614.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />											\n		https://vimeo.com/130807026		\n			<h1>VIRTUAL REALITY EXPERIENCE</h1>		\n			<h2>SPIDER-MAN HOMECOMING DISPLAY</h2>		\n		<p>Submerse yourself in the world of your friendly neighborhood Spider-Man in this fun and thrilling VR Theatrical Display.  Based on the all-new 2017 film, the Spider-Man Homecoming VR Experience is a first-person look through the eyes of Spidey himself.</p>		\n										<img width=\"1024\" height=\"711\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-1024x711.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-1024x711.jpg 1024w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-300x208.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-768x533.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n										<img width=\"750\" height=\"1000\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834.jpg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834-225x300.jpg 225w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n										<img width=\"750\" height=\"750\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788.jpg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788-150x150.jpg 150w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788-300x300.jpg 300w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n			<h2>THE STRANGERS PREY AT NIGHT</h2>		\n			<h2>GRAND FORMAT PHOTO-OP STANDEE</h2>		\n			<h1>MARKETING AT ITS FINEST, TAILORED FOR SOCIAL MEDIA</h1>		\n		<p>This theatrical display allows fans to take photos with Dollface, Pin-up Girl, the Man in the Mask and share their photos on social media.</p>		\n										<img width=\"942\" height=\"703\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003.jpg 942w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003-300x224.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003-768x573.jpg 768w\" sizes=\"(max-width: 942px) 100vw, 942px\" />											\n										<img width=\"950\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-950x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-950x1024.jpg 950w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-278x300.jpg 278w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-768x828.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n.jpg 1000w\" sizes=\"(max-width: 950px) 100vw, 950px\" />											\n										<img width=\"1024\" height=\"576\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-1024x576.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-1024x576.jpg 1024w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-300x169.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-768x432.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01.jpg 1280w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n			<h4>Our company is a collective of amazing people striving to build delightful products.</h4>		\n		<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.</p>		\n			<a href=\"#\" role=\"button\">\n						Read More\n					</a>','Home','','inherit','closed','closed','','5-revision-v1','','','2019-09-21 23:32:01','2019-09-21 23:32:01','',5,'http://23.235.208.11/~ondisp5/wp/2019/09/21/5-revision-v1/',0,'revision','',0),(466,1,'2019-09-21 23:32:39','2019-09-21 23:32:39','<h2>#WHAT\'S COOL</h2>		\n			<h2>INNOVATIONS FROM ONDISPLAY CREATIVE</h2>		\n			<h1>LIVING STANDEES HAUNTING THEATERS</h1>		\n			<h3>ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS</h3>		\n			<h2>INSIDIOUS – THE LAST KEY</h2>		\n		<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!</p>		\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n		https://vimeo.com/257088337		\n			<h2>INSIDIOUS CHAPTER 3</h2>		\n		<p>OnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.</p>		\n										<img width=\"1000\" height=\"800\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset.jpeg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset.jpeg 1000w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-300x240.jpeg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-768x614.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />											\n		https://vimeo.com/130807026		\n			<h1>VIRTUAL REALITY EXPERIENCE</h1>		\n			<h2>SPIDER-MAN HOMECOMING DISPLAY</h2>		\n		<p>Submerse yourself in the world of your friendly neighborhood Spider-Man in this fun and thrilling VR Theatrical Display.  Based on the all-new 2017 film, the Spider-Man Homecoming VR Experience is a first-person look through the eyes of Spidey himself.</p>		\n										<img width=\"1024\" height=\"711\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-1024x711.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-1024x711.jpg 1024w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-300x208.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-768x533.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n										<img width=\"750\" height=\"1000\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834.jpg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834-225x300.jpg 225w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n										<img width=\"750\" height=\"750\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788.jpg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788-150x150.jpg 150w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788-300x300.jpg 300w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n			<h2>THE STRANGERS PREY AT NIGHT</h2>		\n			<h2>GRAND FORMAT PHOTO-OP STANDEE</h2>		\n			<h1>MARKETING AT ITS FINEST, TAILORED FOR SOCIAL MEDIA</h1>		\n		<p>This theatrical display allows fans to take photos with Dollface, Pin-up Girl, the Man in the Mask and share their photos on social media.</p>		\n										<img width=\"942\" height=\"703\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003.jpg 942w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003-300x224.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003-768x573.jpg 768w\" sizes=\"(max-width: 942px) 100vw, 942px\" />											\n										<img width=\"950\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-950x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-950x1024.jpg 950w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-278x300.jpg 278w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-768x828.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n.jpg 1000w\" sizes=\"(max-width: 950px) 100vw, 950px\" />											\n										<img width=\"1024\" height=\"576\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-1024x576.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-1024x576.jpg 1024w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-300x169.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-768x432.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01.jpg 1280w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n			<h4>Our company is a collective of amazing people striving to build delightful products.</h4>		\n		<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.</p>		\n			<a href=\"#\" role=\"button\">\n						Read More\n					</a>','Home','','inherit','closed','closed','','5-revision-v1','','','2019-09-21 23:32:39','2019-09-21 23:32:39','',5,'http://23.235.208.11/~ondisp5/wp/2019/09/21/5-revision-v1/',0,'revision','',0),(467,1,'2019-09-21 23:33:46','2019-09-21 23:33:46','<h2>#WHAT\'S COOL</h2>		\n			<h2>INNOVATIONS FROM ONDISPLAY CREATIVE</h2>		\n			<h1>LIVING STANDEES HAUNTING THEATERS</h1>		\n			<h3>ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS</h3>		\n			<h2>INSIDIOUS – THE LAST KEY</h2>		\n		<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!</p>		\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n		https://vimeo.com/257088337		\n			<h2>INSIDIOUS CHAPTER 3</h2>		\n		<p>OnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.</p>		\n										<img width=\"1000\" height=\"800\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset.jpeg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset.jpeg 1000w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-300x240.jpeg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-768x614.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />											\n		https://vimeo.com/130807026		\n			<h1>VIRTUAL REALITY EXPERIENCE</h1>		\n			<h2>SPIDER-MAN HOMECOMING DISPLAY</h2>		\n		<p>Submerse yourself in the world of your friendly neighborhood Spider-Man in this fun and thrilling VR Theatrical Display.  Based on the all-new 2017 film, the Spider-Man Homecoming VR Experience is a first-person look through the eyes of Spidey himself.</p>		\n										<img width=\"1024\" height=\"711\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-1024x711.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-1024x711.jpg 1024w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-300x208.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-768x533.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n										<img width=\"750\" height=\"1000\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834.jpg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834-225x300.jpg 225w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n										<img width=\"750\" height=\"750\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788.jpg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788-150x150.jpg 150w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788-300x300.jpg 300w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n			<h2>THE STRANGERS PREY AT NIGHT</h2>		\n			<h2>GRAND FORMAT PHOTO-OP STANDEE</h2>		\n			<h1>MARKETING AT ITS FINEST, TAILORED FOR SOCIAL MEDIA</h1>		\n		<p>This theatrical display allows fans to take photos with Dollface, Pin-up Girl, the Man in the Mask and share their photos on social media.</p>		\n										<img width=\"942\" height=\"703\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003.jpg 942w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003-300x224.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003-768x573.jpg 768w\" sizes=\"(max-width: 942px) 100vw, 942px\" />											\n										<img width=\"950\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-950x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-950x1024.jpg 950w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-278x300.jpg 278w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-768x828.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n.jpg 1000w\" sizes=\"(max-width: 950px) 100vw, 950px\" />											\n										<img width=\"1024\" height=\"576\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-1024x576.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-1024x576.jpg 1024w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-300x169.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-768x432.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01.jpg 1280w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n			<h4>Our company is a collective of amazing people striving to build delightful products.</h4>		\n		<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.</p>		\n			<a href=\"#\" role=\"button\">\n						Read More\n					</a>','Home','','inherit','closed','closed','','5-revision-v1','','','2019-09-21 23:33:46','2019-09-21 23:33:46','',5,'http://23.235.208.11/~ondisp5/wp/2019/09/21/5-revision-v1/',0,'revision','',0),(468,1,'2019-09-21 23:34:27','2019-09-21 23:34:27','<h2>#WHAT\'S COOL</h2>		\n			<h2>INNOVATIONS FROM ONDISPLAY CREATIVE</h2>		\n			<h1>LIVING STANDEES HAUNTING THEATERS</h1>		\n			<h3>ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS</h3>		\n			<h2>INSIDIOUS – THE LAST KEY</h2>		\n		<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!</p>		\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n		https://vimeo.com/257088337		\n			<h2>INSIDIOUS CHAPTER 3</h2>		\n		<p>OnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.</p>		\n										<img width=\"1000\" height=\"800\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset.jpeg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset.jpeg 1000w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-300x240.jpeg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-768x614.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />											\n		https://vimeo.com/130807026		\n			<h1>VIRTUAL REALITY EXPERIENCE</h1>		\n			<h2>SPIDER-MAN HOMECOMING DISPLAY</h2>		\n		<p>Submerse yourself in the world of your friendly neighborhood Spider-Man in this fun and thrilling VR Theatrical Display.  Based on the all-new 2017 film, the Spider-Man Homecoming VR Experience is a first-person look through the eyes of Spidey himself.</p>		\n										<img width=\"1024\" height=\"711\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-1024x711.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-1024x711.jpg 1024w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-300x208.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-768x533.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n										<img width=\"750\" height=\"1000\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834.jpg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834-225x300.jpg 225w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n										<img width=\"750\" height=\"750\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788.jpg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788-150x150.jpg 150w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788-300x300.jpg 300w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n			<h2>THE STRANGERS PREY AT NIGHT</h2>		\n			<h2>GRAND FORMAT PHOTO-OP STANDEE</h2>		\n			<h1>MARKETING AT ITS FINEST, TAILORED FOR SOCIAL MEDIA</h1>		\n		<p>This theatrical display allows fans to take photos with Dollface, Pin-up Girl, the Man in the Mask and share their photos on social media.</p>		\n										<img width=\"942\" height=\"703\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003.jpg 942w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003-300x224.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003-768x573.jpg 768w\" sizes=\"(max-width: 942px) 100vw, 942px\" />											\n										<img width=\"950\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-950x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-950x1024.jpg 950w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-278x300.jpg 278w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-768x828.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n.jpg 1000w\" sizes=\"(max-width: 950px) 100vw, 950px\" />											\n										<img width=\"1024\" height=\"576\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-1024x576.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-1024x576.jpg 1024w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-300x169.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-768x432.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01.jpg 1280w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n			<h4>Our company is a collective of amazing people striving to build delightful products.</h4>		\n		<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.</p>		\n			<a href=\"#\" role=\"button\">\n						Read More\n					</a>','Home','','inherit','closed','closed','','5-revision-v1','','','2019-09-21 23:34:27','2019-09-21 23:34:27','',5,'http://23.235.208.11/~ondisp5/wp/2019/09/21/5-revision-v1/',0,'revision','',0),(469,1,'2019-09-21 23:35:38','2019-09-21 23:35:38','<h2>#WHAT\'S COOL</h2>		\n			<h2>INNOVATIONS FROM ONDISPLAY CREATIVE</h2>		\n			<h1>LIVING STANDEES HAUNTING THEATERS</h1>		\n			<h3>ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS</h3>		\n			<h2>INSIDIOUS – THE LAST KEY</h2>		\n		<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!</p>		\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n		https://vimeo.com/257088337		\n			<h2>INSIDIOUS CHAPTER 3</h2>		\n		<p>OnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.</p>		\n										<img width=\"1000\" height=\"800\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset.jpeg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset.jpeg 1000w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-300x240.jpeg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-768x614.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />											\n		https://vimeo.com/130807026		\n			<h1>VIRTUAL REALITY EXPERIENCE</h1>		\n			<h2>SPIDER-MAN HOMECOMING DISPLAY</h2>		\n		<p>Submerse yourself in the world of your friendly neighborhood Spider-Man in this fun and thrilling VR Theatrical Display.  Based on the all-new 2017 film, the Spider-Man Homecoming VR Experience is a first-person look through the eyes of Spidey himself.</p>		\n										<img width=\"1024\" height=\"711\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-1024x711.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-1024x711.jpg 1024w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-300x208.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-768x533.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n										<img width=\"750\" height=\"1000\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834.jpg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834-225x300.jpg 225w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n										<img width=\"750\" height=\"750\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788.jpg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788-150x150.jpg 150w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788-300x300.jpg 300w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n			<h2>THE STRANGERS PREY AT NIGHT</h2>		\n			<h2>GRAND FORMAT PHOTO-OP STANDEE</h2>		\n			<h1>MARKETING AT ITS FINEST, TAILORED FOR SOCIAL MEDIA</h1>		\n		<p>This theatrical display allows fans to take photos with Dollface, Pin-up Girl, the Man in the Mask and share their photos on social media.</p>		\n										<img width=\"942\" height=\"703\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003.jpg 942w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003-300x224.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003-768x573.jpg 768w\" sizes=\"(max-width: 942px) 100vw, 942px\" />											\n										<img width=\"950\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-950x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-950x1024.jpg 950w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-278x300.jpg 278w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-768x828.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n.jpg 1000w\" sizes=\"(max-width: 950px) 100vw, 950px\" />											\n										<img width=\"1024\" height=\"576\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-1024x576.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-1024x576.jpg 1024w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-300x169.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-768x432.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01.jpg 1280w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n			<h4>Our company is a collective of amazing people striving to build delightful products.</h4>		\n		<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.</p>		\n			<a href=\"#\" role=\"button\">\n						Read More\n					</a>','Home','','inherit','closed','closed','','5-revision-v1','','','2019-09-21 23:35:38','2019-09-21 23:35:38','',5,'http://23.235.208.11/~ondisp5/wp/2019/09/21/5-revision-v1/',0,'revision','',0),(470,1,'2019-09-21 23:35:55','2019-09-21 23:35:55','<h2>#WHAT\'S COOL</h2>		\n			<h2>INNOVATIONS FROM ONDISPLAY CREATIVE</h2>		\n			<h1>LIVING STANDEES HAUNTING THEATERS</h1>		\n			<h3>ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS</h3>		\n			<h2>INSIDIOUS – THE LAST KEY</h2>		\n		<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!</p>		\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n		https://vimeo.com/257088337		\n			<h2>INSIDIOUS CHAPTER 3</h2>		\n		<p>OnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.</p>		\n										<img width=\"1000\" height=\"800\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset.jpeg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset.jpeg 1000w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-300x240.jpeg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-768x614.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />											\n		https://vimeo.com/130807026		\n			<h1>VIRTUAL REALITY EXPERIENCE</h1>		\n			<h2>SPIDER-MAN HOMECOMING DISPLAY</h2>		\n		<p>Submerse yourself in the world of your friendly neighborhood Spider-Man in this fun and thrilling VR Theatrical Display.  Based on the all-new 2017 film, the Spider-Man Homecoming VR Experience is a first-person look through the eyes of Spidey himself.</p>		\n										<img width=\"1024\" height=\"711\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-1024x711.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-1024x711.jpg 1024w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-300x208.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-768x533.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n										<img width=\"750\" height=\"1000\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834.jpg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834-225x300.jpg 225w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n										<img width=\"750\" height=\"750\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788.jpg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788-150x150.jpg 150w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788-300x300.jpg 300w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n			<h2>THE STRANGERS PREY AT NIGHT</h2>		\n			<h2>GRAND FORMAT PHOTO-OP STANDEE</h2>		\n			<h1>MARKETING AT ITS FINEST, TAILORED FOR SOCIAL MEDIA</h1>		\n		<p>This theatrical display allows fans to take photos with Dollface, Pin-up Girl, the Man in the Mask and share their photos on social media.</p>		\n										<img width=\"942\" height=\"703\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003.jpg 942w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003-300x224.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003-768x573.jpg 768w\" sizes=\"(max-width: 942px) 100vw, 942px\" />											\n										<img width=\"950\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-950x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-950x1024.jpg 950w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-278x300.jpg 278w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-768x828.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n.jpg 1000w\" sizes=\"(max-width: 950px) 100vw, 950px\" />											\n										<img width=\"1024\" height=\"576\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-1024x576.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-1024x576.jpg 1024w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-300x169.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-768x432.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01.jpg 1280w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n			<h4>Our company is a collective of amazing people striving to build delightful products.</h4>		\n		<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.</p>		\n			<a href=\"#\" role=\"button\">\n						Read More\n					</a>','Home','','inherit','closed','closed','','5-revision-v1','','','2019-09-21 23:35:55','2019-09-21 23:35:55','',5,'http://23.235.208.11/~ondisp5/wp/2019/09/21/5-revision-v1/',0,'revision','',0),(471,1,'2019-09-21 23:36:37','2019-09-21 23:36:37','<h2>#WHAT\'S COOL</h2>		\n			<h2>INNOVATIONS FROM ONDISPLAY CREATIVE</h2>		\n			<h1>LIVING STANDEES HAUNTING THEATERS</h1>		\n			<h3>ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS</h3>		\n			<h2>INSIDIOUS – THE LAST KEY</h2>		\n		<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!</p>		\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n		https://vimeo.com/257088337		\n			<h2>INSIDIOUS CHAPTER 3</h2>		\n		<p>OnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.</p>		\n										<img width=\"1000\" height=\"800\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset.jpeg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset.jpeg 1000w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-300x240.jpeg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-768x614.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />											\n		https://vimeo.com/130807026		\n			<h1>VIRTUAL REALITY EXPERIENCE</h1>		\n			<h2>SPIDER-MAN HOMECOMING DISPLAY</h2>		\n		<p>Submerse yourself in the world of your friendly neighborhood Spider-Man in this fun and thrilling VR Theatrical Display.  Based on the all-new 2017 film, the Spider-Man Homecoming VR Experience is a first-person look through the eyes of Spidey himself.</p>		\n										<img width=\"1024\" height=\"711\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-1024x711.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-1024x711.jpg 1024w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-300x208.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-768x533.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n										<img width=\"750\" height=\"1000\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834.jpg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834-225x300.jpg 225w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n										<img width=\"750\" height=\"750\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788.jpg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788-150x150.jpg 150w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788-300x300.jpg 300w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n			<h2>THE STRANGERS PREY AT NIGHT</h2>		\n			<h2>GRAND FORMAT PHOTO-OP STANDEE</h2>		\n			<h1>MARKETING AT ITS FINEST, TAILORED FOR SOCIAL MEDIA</h1>		\n		<p>This theatrical display allows fans to take photos with Dollface, Pin-up Girl, the Man in the Mask and share their photos on social media.</p>		\n										<img width=\"942\" height=\"703\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003.jpg 942w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003-300x224.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003-768x573.jpg 768w\" sizes=\"(max-width: 942px) 100vw, 942px\" />											\n										<img width=\"950\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-950x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-950x1024.jpg 950w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-278x300.jpg 278w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-768x828.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n.jpg 1000w\" sizes=\"(max-width: 950px) 100vw, 950px\" />											\n										<img width=\"1024\" height=\"576\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-1024x576.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-1024x576.jpg 1024w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-300x169.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-768x432.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01.jpg 1280w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n			<h4>Our company is a collective of amazing people striving to build delightful products.</h4>		\n		<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.</p>		\n			<a href=\"#\" role=\"button\">\n						Read More\n					</a>','Home','','inherit','closed','closed','','5-revision-v1','','','2019-09-21 23:36:37','2019-09-21 23:36:37','',5,'http://23.235.208.11/~ondisp5/wp/2019/09/21/5-revision-v1/',0,'revision','',0),(472,1,'2019-09-21 23:37:09','2019-09-21 23:37:09','<h2>#WHAT\'S COOL</h2>		\n			<h2>INNOVATIONS FROM ONDISPLAY CREATIVE</h2>		\n			<h1>LIVING STANDEES HAUNTING THEATERS</h1>		\n			<h3>ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS</h3>		\n			<h2>INSIDIOUS – THE LAST KEY</h2>		\n		<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!</p>		\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n		https://vimeo.com/257088337		\n			<h2>INSIDIOUS CHAPTER 3</h2>		\n		<p>OnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.</p>		\n										<img width=\"1000\" height=\"800\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset.jpeg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset.jpeg 1000w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-300x240.jpeg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-768x614.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />											\n		https://vimeo.com/130807026		\n			<h1>VIRTUAL REALITY EXPERIENCE</h1>		\n			<h2>SPIDER-MAN HOMECOMING DISPLAY</h2>		\n		<p>Submerse yourself in the world of your friendly neighborhood Spider-Man in this fun and thrilling VR Theatrical Display.  Based on the all-new 2017 film, the Spider-Man Homecoming VR Experience is a first-person look through the eyes of Spidey himself.</p>		\n										<img width=\"1024\" height=\"711\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-1024x711.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-1024x711.jpg 1024w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-300x208.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-768x533.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n										<img width=\"750\" height=\"1000\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834.jpg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834-225x300.jpg 225w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n										<img width=\"750\" height=\"750\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788.jpg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788-150x150.jpg 150w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788-300x300.jpg 300w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n			<h2>THE STRANGERS PREY AT NIGHT</h2>		\n			<h2>GRAND FORMAT PHOTO-OP STANDEE</h2>		\n			<h1>MARKETING AT ITS FINEST, TAILORED FOR SOCIAL MEDIA</h1>		\n		<p>This theatrical display allows fans to take photos with Dollface, Pin-up Girl, the Man in the Mask and share their photos on social media.</p>		\n										<img width=\"942\" height=\"703\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003.jpg 942w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003-300x224.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003-768x573.jpg 768w\" sizes=\"(max-width: 942px) 100vw, 942px\" />											\n										<img width=\"950\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-950x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-950x1024.jpg 950w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-278x300.jpg 278w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-768x828.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n.jpg 1000w\" sizes=\"(max-width: 950px) 100vw, 950px\" />											\n										<img width=\"1024\" height=\"576\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-1024x576.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-1024x576.jpg 1024w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-300x169.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-768x432.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01.jpg 1280w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n			<h4>Our company is a collective of amazing people striving to build delightful products.</h4>		\n		<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.</p>		\n			<a href=\"#\" role=\"button\">\n						Read More\n					</a>','Home','','inherit','closed','closed','','5-revision-v1','','','2019-09-21 23:37:09','2019-09-21 23:37:09','',5,'http://23.235.208.11/~ondisp5/wp/2019/09/21/5-revision-v1/',0,'revision','',0),(503,1,'2019-09-22 00:10:10','2019-09-22 00:10:10','<h2>#WHAT\'S COOL</h2>\n<h2>INNOVATIONS FROM ONDISPLAY CREATIVE</h2>\n<h1>LIVING STANDEES HAUNTING THEATERS</h1>\n<h3>ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS</h3>\n<h2>INSIDIOUS – THE LAST KEY</h2>\nMovie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!\n\n<img src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" width=\"768\" height=\"1024\">\n<img src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" width=\"768\" height=\"1024\">\nhttps://vimeo.com/257088337\n<h2>INSIDIOUS CHAPTER 3</h2>\nOnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.\n\n<img src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset.jpeg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset.jpeg 1000w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-300x240.jpeg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-768x614.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" width=\"1000\" height=\"800\">\nhttps://vimeo.com/130807026\n<h1>VIRTUAL REALITY EXPERIENCE</h1>\n<h2>SPIDER-MAN HOMECOMING DISPLAY</h2>\nSubmerse yourself in the world of your friendly neighborhood Spider-Man in this fun and thrilling VR Theatrical Display.&nbsp;&nbsp;Based on the all-new 2017 film, the Spider-Man Homecoming VR Experience is a first-person look through the eyes of Spidey himself.\n\n<img src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-1024x711.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-1024x711.jpg 1024w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-300x208.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-768x533.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" width=\"1024\" height=\"711\">\n<img src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834.jpg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834-225x300.jpg 225w\" sizes=\"(max-width: 750px) 100vw, 750px\" width=\"750\" height=\"1000\">\n<img src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788.jpg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788-150x150.jpg 150w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788-300x300.jpg 300w\" sizes=\"(max-width: 750px) 100vw, 750px\" width=\"750\" height=\"750\">\n<h2>THE STRANGERS PREY AT NIGHT</h2>\n<h2>GRAND FORMAT PHOTO-OP STANDEE</h2>\n<h1>MARKETING AT ITS FINEST, TAILORED FOR SOCIAL MEDIA</h1>\nThis theatrical display allows fans to take photos with Dollface, Pin-up Girl, the Man in the Mask and share their photos on social media.\n\n<img src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003.jpg 942w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003-300x224.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003-768x573.jpg 768w\" sizes=\"(max-width: 942px) 100vw, 942px\" width=\"942\" height=\"703\">\n<img src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-950x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-950x1024.jpg 950w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-278x300.jpg 278w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-768x828.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n.jpg 1000w\" sizes=\"(max-width: 950px) 100vw, 950px\" width=\"950\" height=\"1024\">\n<img src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-1024x576.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-1024x576.jpg 1024w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-300x169.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-768x432.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01.jpg 1280w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" width=\"1024\" height=\"576\">\n<h4>Our company is a collective of amazing people striving to build delightful products.</h4>\nIt is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.\n\n<a href=\"#\" role=\"button\">\nRead More\n</a>','Home','','inherit','closed','closed','','5-revision-v1','','','2019-09-22 00:10:10','2019-09-22 00:10:10','',5,'http://23.235.208.11/~ondisp5/wp/2019/09/22/5-revision-v1/',0,'revision','',0),(474,1,'2019-09-21 23:47:47','2019-09-21 23:47:47','<h2>#WHAT\'S COOL</h2>		\n			<h2>INNOVATIONS FROM ONDISPLAY CREATIVE</h2>		\n			<h1>LIVING STANDEES HAUNTING THEATERS</h1>		\n			<h3>ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS</h3>		\n			<h2>INSIDIOUS – THE LAST KEY</h2>		\n		<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!</p>		\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n		https://vimeo.com/257088337		\n			<h2>INSIDIOUS CHAPTER 3</h2>		\n		<p>OnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.</p>		\n										<img width=\"1000\" height=\"800\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset.jpeg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset.jpeg 1000w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-300x240.jpeg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-768x614.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />											\n		https://vimeo.com/130807026		\n			<h1>VIRTUAL REALITY EXPERIENCE</h1>		\n			<h2>SPIDER-MAN HOMECOMING DISPLAY</h2>		\n		<p>Submerse yourself in the world of your friendly neighborhood Spider-Man in this fun and thrilling VR Theatrical Display.  Based on the all-new 2017 film, the Spider-Man Homecoming VR Experience is a first-person look through the eyes of Spidey himself.</p>		\n										<img width=\"1024\" height=\"711\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-1024x711.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-1024x711.jpg 1024w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-300x208.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-768x533.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n										<img width=\"750\" height=\"1000\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834.jpg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834-225x300.jpg 225w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n										<img width=\"750\" height=\"750\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788.jpg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788-150x150.jpg 150w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788-300x300.jpg 300w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n			<h2>THE STRANGERS PREY AT NIGHT</h2>		\n			<h2>GRAND FORMAT PHOTO-OP STANDEE</h2>		\n			<h1>MARKETING AT ITS FINEST, TAILORED FOR SOCIAL MEDIA</h1>		\n		<p>This theatrical display allows fans to take photos with Dollface, Pin-up Girl, the Man in the Mask and share their photos on social media.</p>		\n										<img width=\"942\" height=\"703\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003.jpg 942w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003-300x224.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003-768x573.jpg 768w\" sizes=\"(max-width: 942px) 100vw, 942px\" />											\n										<img width=\"950\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-950x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-950x1024.jpg 950w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-278x300.jpg 278w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-768x828.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n.jpg 1000w\" sizes=\"(max-width: 950px) 100vw, 950px\" />											\n										<img width=\"1024\" height=\"576\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-1024x576.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-1024x576.jpg 1024w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-300x169.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-768x432.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01.jpg 1280w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n			<h4>Our company is a collective of amazing people striving to build delightful products.</h4>		\n		<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.</p>		\n			<a href=\"#\" role=\"button\">\n						Read More\n					</a>','Home','','inherit','closed','closed','','5-revision-v1','','','2019-09-21 23:47:47','2019-09-21 23:47:47','',5,'http://23.235.208.11/~ondisp5/wp/2019/09/21/5-revision-v1/',0,'revision','',0),(475,1,'2019-09-21 23:48:34','2019-09-21 23:48:34','<h2>#WHAT\'S COOL</h2>		\n			<h2>INNOVATIONS FROM ONDISPLAY CREATIVE</h2>		\n			<h1>LIVING STANDEES HAUNTING THEATERS</h1>		\n			<h3>ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS</h3>		\n			<h2>INSIDIOUS – THE LAST KEY</h2>		\n		<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!</p>		\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n		https://vimeo.com/257088337		\n			<h2>INSIDIOUS CHAPTER 3</h2>		\n		<p>OnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.</p>		\n										<img width=\"1000\" height=\"800\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset.jpeg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset.jpeg 1000w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-300x240.jpeg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-768x614.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />											\n		https://vimeo.com/130807026		\n			<h1>VIRTUAL REALITY EXPERIENCE</h1>		\n			<h2>SPIDER-MAN HOMECOMING DISPLAY</h2>		\n		<p>Submerse yourself in the world of your friendly neighborhood Spider-Man in this fun and thrilling VR Theatrical Display.  Based on the all-new 2017 film, the Spider-Man Homecoming VR Experience is a first-person look through the eyes of Spidey himself.</p>		\n										<img width=\"1024\" height=\"711\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-1024x711.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-1024x711.jpg 1024w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-300x208.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-768x533.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n										<img width=\"750\" height=\"1000\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834.jpg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834-225x300.jpg 225w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n										<img width=\"750\" height=\"750\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788.jpg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788-150x150.jpg 150w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788-300x300.jpg 300w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n			<h2>THE STRANGERS PREY AT NIGHT</h2>		\n			<h2>GRAND FORMAT PHOTO-OP STANDEE</h2>		\n			<h1>MARKETING AT ITS FINEST, TAILORED FOR SOCIAL MEDIA</h1>		\n		<p>This theatrical display allows fans to take photos with Dollface, Pin-up Girl, the Man in the Mask and share their photos on social media.</p>		\n										<img width=\"942\" height=\"703\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003.jpg 942w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003-300x224.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003-768x573.jpg 768w\" sizes=\"(max-width: 942px) 100vw, 942px\" />											\n										<img width=\"950\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-950x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-950x1024.jpg 950w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-278x300.jpg 278w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-768x828.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n.jpg 1000w\" sizes=\"(max-width: 950px) 100vw, 950px\" />											\n										<img width=\"1024\" height=\"576\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-1024x576.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-1024x576.jpg 1024w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-300x169.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-768x432.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01.jpg 1280w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n			<h4>Our company is a collective of amazing people striving to build delightful products.</h4>		\n		<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.</p>		\n			<a href=\"#\" role=\"button\">\n						Read More\n					</a>','Home','','inherit','closed','closed','','5-revision-v1','','','2019-09-21 23:48:34','2019-09-21 23:48:34','',5,'http://23.235.208.11/~ondisp5/wp/2019/09/21/5-revision-v1/',0,'revision','',0),(476,1,'2019-09-21 23:48:57','2019-09-21 23:48:57','<h2>#WHAT\'S COOL</h2>		\n			<h2>INNOVATIONS FROM ONDISPLAY CREATIVE</h2>		\n			<h1>LIVING STANDEES HAUNTING THEATERS</h1>		\n			<h3>ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS</h3>		\n			<h2>INSIDIOUS – THE LAST KEY</h2>		\n		<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!</p>		\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n		https://vimeo.com/257088337		\n			<h2>INSIDIOUS CHAPTER 3</h2>		\n		<p>OnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.</p>		\n										<img width=\"1000\" height=\"800\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset.jpeg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset.jpeg 1000w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-300x240.jpeg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-768x614.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />											\n		https://vimeo.com/130807026		\n			<h1>VIRTUAL REALITY EXPERIENCE</h1>		\n			<h2>SPIDER-MAN HOMECOMING DISPLAY</h2>		\n		<p>Submerse yourself in the world of your friendly neighborhood Spider-Man in this fun and thrilling VR Theatrical Display.  Based on the all-new 2017 film, the Spider-Man Homecoming VR Experience is a first-person look through the eyes of Spidey himself.</p>		\n										<img width=\"1024\" height=\"711\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-1024x711.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-1024x711.jpg 1024w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-300x208.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-768x533.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n										<img width=\"750\" height=\"1000\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834.jpg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834-225x300.jpg 225w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n										<img width=\"750\" height=\"750\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788.jpg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788-150x150.jpg 150w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788-300x300.jpg 300w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n			<h2>THE STRANGERS PREY AT NIGHT</h2>		\n			<h2>GRAND FORMAT PHOTO-OP STANDEE</h2>		\n			<h1>MARKETING AT ITS FINEST, TAILORED FOR SOCIAL MEDIA</h1>		\n		<p>This theatrical display allows fans to take photos with Dollface, Pin-up Girl, the Man in the Mask and share their photos on social media.</p>		\n										<img width=\"942\" height=\"703\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003.jpg 942w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003-300x224.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003-768x573.jpg 768w\" sizes=\"(max-width: 942px) 100vw, 942px\" />											\n										<img width=\"950\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-950x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-950x1024.jpg 950w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-278x300.jpg 278w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-768x828.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n.jpg 1000w\" sizes=\"(max-width: 950px) 100vw, 950px\" />											\n										<img width=\"1024\" height=\"576\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-1024x576.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-1024x576.jpg 1024w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-300x169.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-768x432.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01.jpg 1280w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n			<h4>Our company is a collective of amazing people striving to build delightful products.</h4>		\n		<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.</p>		\n			<a href=\"#\" role=\"button\">\n						Read More\n					</a>','Home','','inherit','closed','closed','','5-revision-v1','','','2019-09-21 23:48:57','2019-09-21 23:48:57','',5,'http://23.235.208.11/~ondisp5/wp/2019/09/21/5-revision-v1/',0,'revision','',0),(477,1,'2019-09-21 23:49:35','2019-09-21 23:49:35','<h2>#WHAT\'S COOL</h2>		\n			<h2>INNOVATIONS FROM ONDISPLAY CREATIVE</h2>		\n			<h1>LIVING STANDEES HAUNTING THEATERS</h1>		\n			<h3>ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS</h3>		\n			<h2>INSIDIOUS – THE LAST KEY</h2>		\n		<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!</p>		\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n		https://vimeo.com/257088337		\n			<h2>INSIDIOUS CHAPTER 3</h2>		\n		<p>OnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.</p>		\n										<img width=\"1000\" height=\"800\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset.jpeg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset.jpeg 1000w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-300x240.jpeg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-768x614.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />											\n		https://vimeo.com/130807026		\n			<h1>VIRTUAL REALITY EXPERIENCE</h1>		\n			<h2>SPIDER-MAN HOMECOMING DISPLAY</h2>		\n		<p>Submerse yourself in the world of your friendly neighborhood Spider-Man in this fun and thrilling VR Theatrical Display.  Based on the all-new 2017 film, the Spider-Man Homecoming VR Experience is a first-person look through the eyes of Spidey himself.</p>		\n										<img width=\"1024\" height=\"711\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-1024x711.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-1024x711.jpg 1024w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-300x208.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-768x533.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n										<img width=\"750\" height=\"1000\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834.jpg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834-225x300.jpg 225w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n										<img width=\"750\" height=\"750\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788.jpg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788-150x150.jpg 150w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788-300x300.jpg 300w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n			<h2>THE STRANGERS PREY AT NIGHT</h2>		\n			<h2>GRAND FORMAT PHOTO-OP STANDEE</h2>		\n			<h1>MARKETING AT ITS FINEST, TAILORED FOR SOCIAL MEDIA</h1>		\n		<p>This theatrical display allows fans to take photos with Dollface, Pin-up Girl, the Man in the Mask and share their photos on social media.</p>		\n										<img width=\"942\" height=\"703\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003.jpg 942w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003-300x224.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003-768x573.jpg 768w\" sizes=\"(max-width: 942px) 100vw, 942px\" />											\n										<img width=\"950\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-950x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-950x1024.jpg 950w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-278x300.jpg 278w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-768x828.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n.jpg 1000w\" sizes=\"(max-width: 950px) 100vw, 950px\" />											\n										<img width=\"1024\" height=\"576\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-1024x576.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-1024x576.jpg 1024w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-300x169.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-768x432.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01.jpg 1280w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n			<h4>Our company is a collective of amazing people striving to build delightful products.</h4>		\n		<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.</p>		\n			<a href=\"#\" role=\"button\">\n						Read More\n					</a>','Home','','inherit','closed','closed','','5-revision-v1','','','2019-09-21 23:49:35','2019-09-21 23:49:35','',5,'http://23.235.208.11/~ondisp5/wp/2019/09/21/5-revision-v1/',0,'revision','',0),(478,1,'2019-09-21 23:49:50','2019-09-21 23:49:50','<h2>#WHAT\'S COOL</h2>		\n			<h2>INNOVATIONS FROM ONDISPLAY CREATIVE</h2>		\n			<h1>LIVING STANDEES HAUNTING THEATERS</h1>		\n			<h3>ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS</h3>		\n			<h2>INSIDIOUS – THE LAST KEY</h2>		\n		<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!</p>		\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n		https://vimeo.com/257088337		\n			<h2>INSIDIOUS CHAPTER 3</h2>		\n		<p>OnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.</p>		\n										<img width=\"1000\" height=\"800\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset.jpeg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset.jpeg 1000w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-300x240.jpeg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-768x614.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />											\n		https://vimeo.com/130807026		\n			<h1>VIRTUAL REALITY EXPERIENCE</h1>		\n			<h2>SPIDER-MAN HOMECOMING DISPLAY</h2>		\n		<p>Submerse yourself in the world of your friendly neighborhood Spider-Man in this fun and thrilling VR Theatrical Display.  Based on the all-new 2017 film, the Spider-Man Homecoming VR Experience is a first-person look through the eyes of Spidey himself.</p>		\n										<img width=\"1024\" height=\"711\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-1024x711.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-1024x711.jpg 1024w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-300x208.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-768x533.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n										<img width=\"750\" height=\"1000\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834.jpg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834-225x300.jpg 225w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n										<img width=\"750\" height=\"750\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788.jpg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788-150x150.jpg 150w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788-300x300.jpg 300w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n			<h2>THE STRANGERS PREY AT NIGHT</h2>		\n			<h2>GRAND FORMAT PHOTO-OP STANDEE</h2>		\n			<h1>MARKETING AT ITS FINEST, TAILORED FOR SOCIAL MEDIA</h1>		\n		<p>This theatrical display allows fans to take photos with Dollface, Pin-up Girl, the Man in the Mask and share their photos on social media.</p>		\n										<img width=\"942\" height=\"703\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003.jpg 942w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003-300x224.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003-768x573.jpg 768w\" sizes=\"(max-width: 942px) 100vw, 942px\" />											\n										<img width=\"950\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-950x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-950x1024.jpg 950w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-278x300.jpg 278w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-768x828.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n.jpg 1000w\" sizes=\"(max-width: 950px) 100vw, 950px\" />											\n										<img width=\"1024\" height=\"576\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-1024x576.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-1024x576.jpg 1024w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-300x169.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-768x432.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01.jpg 1280w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n			<h4>Our company is a collective of amazing people striving to build delightful products.</h4>		\n		<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.</p>		\n			<a href=\"#\" role=\"button\">\n						Read More\n					</a>','Home','','inherit','closed','closed','','5-revision-v1','','','2019-09-21 23:49:50','2019-09-21 23:49:50','',5,'http://23.235.208.11/~ondisp5/wp/2019/09/21/5-revision-v1/',0,'revision','',0),(479,1,'2019-09-21 23:50:13','2019-09-21 23:50:13','<h2>#WHAT\'S COOL</h2>		\n			<h2>INNOVATIONS FROM ONDISPLAY CREATIVE</h2>		\n			<h1>LIVING STANDEES HAUNTING THEATERS</h1>		\n			<h3>ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS</h3>		\n			<h2>INSIDIOUS – THE LAST KEY</h2>		\n		<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!</p>		\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n		https://vimeo.com/257088337		\n			<h2>INSIDIOUS CHAPTER 3</h2>		\n		<p>OnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.</p>		\n										<img width=\"1000\" height=\"800\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset.jpeg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset.jpeg 1000w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-300x240.jpeg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-768x614.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />											\n		https://vimeo.com/130807026		\n			<h1>VIRTUAL REALITY EXPERIENCE</h1>		\n			<h2>SPIDER-MAN HOMECOMING DISPLAY</h2>		\n		<p>Submerse yourself in the world of your friendly neighborhood Spider-Man in this fun and thrilling VR Theatrical Display.  Based on the all-new 2017 film, the Spider-Man Homecoming VR Experience is a first-person look through the eyes of Spidey himself.</p>		\n										<img width=\"1024\" height=\"711\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-1024x711.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-1024x711.jpg 1024w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-300x208.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-768x533.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n										<img width=\"750\" height=\"1000\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834.jpg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834-225x300.jpg 225w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n										<img width=\"750\" height=\"750\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788.jpg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788-150x150.jpg 150w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788-300x300.jpg 300w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n			<h2>THE STRANGERS PREY AT NIGHT</h2>		\n			<h2>GRAND FORMAT PHOTO-OP STANDEE</h2>		\n			<h1>MARKETING AT ITS FINEST, TAILORED FOR SOCIAL MEDIA</h1>		\n		<p>This theatrical display allows fans to take photos with Dollface, Pin-up Girl, the Man in the Mask and share their photos on social media.</p>		\n										<img width=\"942\" height=\"703\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003.jpg 942w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003-300x224.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003-768x573.jpg 768w\" sizes=\"(max-width: 942px) 100vw, 942px\" />											\n										<img width=\"950\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-950x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-950x1024.jpg 950w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-278x300.jpg 278w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-768x828.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n.jpg 1000w\" sizes=\"(max-width: 950px) 100vw, 950px\" />											\n										<img width=\"1024\" height=\"576\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-1024x576.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-1024x576.jpg 1024w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-300x169.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-768x432.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01.jpg 1280w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n			<h4>Our company is a collective of amazing people striving to build delightful products.</h4>		\n		<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.</p>		\n			<a href=\"#\" role=\"button\">\n						Read More\n					</a>','Home','','inherit','closed','closed','','5-revision-v1','','','2019-09-21 23:50:13','2019-09-21 23:50:13','',5,'http://23.235.208.11/~ondisp5/wp/2019/09/21/5-revision-v1/',0,'revision','',0),(480,1,'2019-09-21 23:50:23','2019-09-21 23:50:23','<h2>#WHAT\'S COOL</h2>		\n			<h2>INNOVATIONS FROM ONDISPLAY CREATIVE</h2>		\n			<h1>LIVING STANDEES HAUNTING THEATERS</h1>		\n			<h3>ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS</h3>		\n			<h2>INSIDIOUS – THE LAST KEY</h2>		\n		<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!</p>		\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n		https://vimeo.com/257088337		\n			<h2>INSIDIOUS CHAPTER 3</h2>		\n		<p>OnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.</p>		\n										<img width=\"1000\" height=\"800\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset.jpeg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset.jpeg 1000w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-300x240.jpeg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-768x614.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />											\n		https://vimeo.com/130807026		\n			<h1>VIRTUAL REALITY EXPERIENCE</h1>		\n			<h2>SPIDER-MAN HOMECOMING DISPLAY</h2>		\n		<p>Submerse yourself in the world of your friendly neighborhood Spider-Man in this fun and thrilling VR Theatrical Display.  Based on the all-new 2017 film, the Spider-Man Homecoming VR Experience is a first-person look through the eyes of Spidey himself.</p>		\n										<img width=\"1024\" height=\"711\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-1024x711.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-1024x711.jpg 1024w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-300x208.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-768x533.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n										<img width=\"750\" height=\"1000\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834.jpg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834-225x300.jpg 225w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n										<img width=\"750\" height=\"750\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788.jpg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788-150x150.jpg 150w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788-300x300.jpg 300w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n			<h2>THE STRANGERS PREY AT NIGHT</h2>		\n			<h2>GRAND FORMAT PHOTO-OP STANDEE</h2>		\n			<h1>MARKETING AT ITS FINEST, TAILORED FOR SOCIAL MEDIA</h1>		\n		<p>This theatrical display allows fans to take photos with Dollface, Pin-up Girl, the Man in the Mask and share their photos on social media.</p>		\n										<img width=\"942\" height=\"703\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003.jpg 942w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003-300x224.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003-768x573.jpg 768w\" sizes=\"(max-width: 942px) 100vw, 942px\" />											\n										<img width=\"950\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-950x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-950x1024.jpg 950w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-278x300.jpg 278w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-768x828.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n.jpg 1000w\" sizes=\"(max-width: 950px) 100vw, 950px\" />											\n										<img width=\"1024\" height=\"576\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-1024x576.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-1024x576.jpg 1024w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-300x169.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-768x432.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01.jpg 1280w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n			<h4>Our company is a collective of amazing people striving to build delightful products.</h4>		\n		<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.</p>		\n			<a href=\"#\" role=\"button\">\n						Read More\n					</a>','Home','','inherit','closed','closed','','5-revision-v1','','','2019-09-21 23:50:23','2019-09-21 23:50:23','',5,'http://23.235.208.11/~ondisp5/wp/2019/09/21/5-revision-v1/',0,'revision','',0),(481,1,'2019-09-21 23:51:02','2019-09-21 23:51:02','<h2>#WHAT\'S COOL</h2>		\n			<h2>INNOVATIONS FROM ONDISPLAY CREATIVE</h2>		\n			<h1>LIVING STANDEES HAUNTING THEATERS</h1>		\n			<h3>ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS</h3>		\n			<h2>INSIDIOUS – THE LAST KEY</h2>		\n		<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!</p>		\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n		https://vimeo.com/257088337		\n			<h2>INSIDIOUS CHAPTER 3</h2>		\n		<p>OnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.</p>		\n										<img width=\"1000\" height=\"800\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset.jpeg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset.jpeg 1000w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-300x240.jpeg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-768x614.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />											\n		https://vimeo.com/130807026		\n			<h1>VIRTUAL REALITY EXPERIENCE</h1>		\n			<h2>SPIDER-MAN HOMECOMING DISPLAY</h2>		\n		<p>Submerse yourself in the world of your friendly neighborhood Spider-Man in this fun and thrilling VR Theatrical Display.  Based on the all-new 2017 film, the Spider-Man Homecoming VR Experience is a first-person look through the eyes of Spidey himself.</p>		\n										<img width=\"1024\" height=\"711\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-1024x711.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-1024x711.jpg 1024w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-300x208.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-768x533.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n										<img width=\"750\" height=\"1000\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834.jpg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834-225x300.jpg 225w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n										<img width=\"750\" height=\"750\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788.jpg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788-150x150.jpg 150w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788-300x300.jpg 300w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n			<h2>THE STRANGERS PREY AT NIGHT</h2>		\n			<h2>GRAND FORMAT PHOTO-OP STANDEE</h2>		\n			<h1>MARKETING AT ITS FINEST, TAILORED FOR SOCIAL MEDIA</h1>		\n		<p>This theatrical display allows fans to take photos with Dollface, Pin-up Girl, the Man in the Mask and share their photos on social media.</p>		\n										<img width=\"942\" height=\"703\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003.jpg 942w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003-300x224.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003-768x573.jpg 768w\" sizes=\"(max-width: 942px) 100vw, 942px\" />											\n										<img width=\"950\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-950x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-950x1024.jpg 950w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-278x300.jpg 278w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-768x828.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n.jpg 1000w\" sizes=\"(max-width: 950px) 100vw, 950px\" />											\n										<img width=\"1024\" height=\"576\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-1024x576.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-1024x576.jpg 1024w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-300x169.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-768x432.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01.jpg 1280w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n			<h4>Our company is a collective of amazing people striving to build delightful products.</h4>		\n		<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.</p>		\n			<a href=\"#\" role=\"button\">\n						Read More\n					</a>','Home','','inherit','closed','closed','','5-revision-v1','','','2019-09-21 23:51:02','2019-09-21 23:51:02','',5,'http://23.235.208.11/~ondisp5/wp/2019/09/21/5-revision-v1/',0,'revision','',0),(482,1,'2019-09-21 23:52:05','2019-09-21 23:52:05','<h2>#WHAT\'S COOL</h2>		\n			<h2>INNOVATIONS FROM ONDISPLAY CREATIVE</h2>		\n			<h1>LIVING STANDEES HAUNTING THEATERS</h1>		\n			<h3>ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS</h3>		\n			<h2>INSIDIOUS – THE LAST KEY</h2>		\n		<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!</p>		\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n		https://vimeo.com/257088337		\n			<h2>INSIDIOUS CHAPTER 3</h2>		\n		<p>OnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.</p>		\n										<img width=\"1000\" height=\"800\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset.jpeg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset.jpeg 1000w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-300x240.jpeg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-768x614.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />											\n		https://vimeo.com/130807026		\n			<h1>VIRTUAL REALITY EXPERIENCE</h1>		\n			<h2>SPIDER-MAN HOMECOMING DISPLAY</h2>		\n		<p>Submerse yourself in the world of your friendly neighborhood Spider-Man in this fun and thrilling VR Theatrical Display.  Based on the all-new 2017 film, the Spider-Man Homecoming VR Experience is a first-person look through the eyes of Spidey himself.</p>		\n										<img width=\"1024\" height=\"711\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-1024x711.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-1024x711.jpg 1024w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-300x208.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-768x533.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n										<img width=\"750\" height=\"1000\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834.jpg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834-225x300.jpg 225w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n										<img width=\"750\" height=\"750\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788.jpg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788-150x150.jpg 150w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788-300x300.jpg 300w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n			<h2>THE STRANGERS PREY AT NIGHT</h2>		\n			<h2>GRAND FORMAT PHOTO-OP STANDEE</h2>		\n			<h1>MARKETING AT ITS FINEST, TAILORED FOR SOCIAL MEDIA</h1>		\n		<p>This theatrical display allows fans to take photos with Dollface, Pin-up Girl, the Man in the Mask and share their photos on social media.</p>		\n										<img width=\"942\" height=\"703\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003.jpg 942w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003-300x224.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003-768x573.jpg 768w\" sizes=\"(max-width: 942px) 100vw, 942px\" />											\n										<img width=\"950\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-950x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-950x1024.jpg 950w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-278x300.jpg 278w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-768x828.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n.jpg 1000w\" sizes=\"(max-width: 950px) 100vw, 950px\" />											\n										<img width=\"1024\" height=\"576\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-1024x576.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-1024x576.jpg 1024w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-300x169.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-768x432.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01.jpg 1280w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n			<h4>Our company is a collective of amazing people striving to build delightful products.</h4>		\n		<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.</p>		\n			<a href=\"#\" role=\"button\">\n						Read More\n					</a>','Home','','inherit','closed','closed','','5-revision-v1','','','2019-09-21 23:52:05','2019-09-21 23:52:05','',5,'http://23.235.208.11/~ondisp5/wp/2019/09/21/5-revision-v1/',0,'revision','',0),(483,1,'2019-09-21 23:52:45','2019-09-21 23:52:45','<h2>#WHAT\'S COOL</h2>		\n			<h2>INNOVATIONS FROM ONDISPLAY CREATIVE</h2>		\n			<h1>LIVING STANDEES HAUNTING THEATERS</h1>		\n			<h3>ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS</h3>		\n			<h2>INSIDIOUS – THE LAST KEY</h2>		\n		<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!</p>		\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n		https://vimeo.com/257088337		\n			<h2>INSIDIOUS CHAPTER 3</h2>		\n		<p>OnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.</p>		\n										<img width=\"1000\" height=\"800\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset.jpeg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset.jpeg 1000w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-300x240.jpeg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-768x614.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />											\n		https://vimeo.com/130807026		\n			<h1>VIRTUAL REALITY EXPERIENCE</h1>		\n			<h2>SPIDER-MAN HOMECOMING DISPLAY</h2>		\n		<p>Submerse yourself in the world of your friendly neighborhood Spider-Man in this fun and thrilling VR Theatrical Display.  Based on the all-new 2017 film, the Spider-Man Homecoming VR Experience is a first-person look through the eyes of Spidey himself.</p>		\n										<img width=\"1024\" height=\"711\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-1024x711.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-1024x711.jpg 1024w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-300x208.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-768x533.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n										<img width=\"750\" height=\"1000\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834.jpg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834-225x300.jpg 225w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n										<img width=\"750\" height=\"750\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788.jpg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788-150x150.jpg 150w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788-300x300.jpg 300w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n			<h2>THE STRANGERS PREY AT NIGHT</h2>		\n			<h2>GRAND FORMAT PHOTO-OP STANDEE</h2>		\n			<h1>MARKETING AT ITS FINEST, TAILORED FOR SOCIAL MEDIA</h1>		\n		<p>This theatrical display allows fans to take photos with Dollface, Pin-up Girl, the Man in the Mask and share their photos on social media.</p>		\n										<img width=\"942\" height=\"703\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003.jpg 942w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003-300x224.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003-768x573.jpg 768w\" sizes=\"(max-width: 942px) 100vw, 942px\" />											\n										<img width=\"950\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-950x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-950x1024.jpg 950w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-278x300.jpg 278w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-768x828.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n.jpg 1000w\" sizes=\"(max-width: 950px) 100vw, 950px\" />											\n										<img width=\"1024\" height=\"576\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-1024x576.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-1024x576.jpg 1024w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-300x169.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-768x432.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01.jpg 1280w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n			<h4>Our company is a collective of amazing people striving to build delightful products.</h4>		\n		<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.</p>		\n			<a href=\"#\" role=\"button\">\n						Read More\n					</a>','Home','','inherit','closed','closed','','5-revision-v1','','','2019-09-21 23:52:45','2019-09-21 23:52:45','',5,'http://23.235.208.11/~ondisp5/wp/2019/09/21/5-revision-v1/',0,'revision','',0);
INSERT INTO `wp_posts` VALUES (484,1,'2019-09-21 23:53:28','2019-09-21 23:53:28','<h2>#WHAT\'S COOL</h2>		\n			<h2>INNOVATIONS FROM ONDISPLAY CREATIVE</h2>		\n			<h1>LIVING STANDEES HAUNTING THEATERS</h1>		\n			<h3>ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS</h3>		\n			<h2>INSIDIOUS – THE LAST KEY</h2>		\n		<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!</p>		\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n		https://vimeo.com/257088337		\n			<h2>INSIDIOUS CHAPTER 3</h2>		\n		<p>OnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.</p>		\n										<img width=\"1000\" height=\"800\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset.jpeg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset.jpeg 1000w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-300x240.jpeg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-768x614.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />											\n		https://vimeo.com/130807026		\n			<h1>VIRTUAL REALITY EXPERIENCE</h1>		\n			<h2>SPIDER-MAN HOMECOMING DISPLAY</h2>		\n		<p>Submerse yourself in the world of your friendly neighborhood Spider-Man in this fun and thrilling VR Theatrical Display.  Based on the all-new 2017 film, the Spider-Man Homecoming VR Experience is a first-person look through the eyes of Spidey himself.</p>		\n										<img width=\"1024\" height=\"711\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-1024x711.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-1024x711.jpg 1024w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-300x208.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-768x533.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n										<img width=\"750\" height=\"1000\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834.jpg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834-225x300.jpg 225w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n										<img width=\"750\" height=\"750\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788.jpg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788-150x150.jpg 150w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788-300x300.jpg 300w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n			<h2>THE STRANGERS PREY AT NIGHT</h2>		\n			<h2>GRAND FORMAT PHOTO-OP STANDEE</h2>		\n			<h1>MARKETING AT ITS FINEST, TAILORED FOR SOCIAL MEDIA</h1>		\n		<p>This theatrical display allows fans to take photos with Dollface, Pin-up Girl, the Man in the Mask and share their photos on social media.</p>		\n										<img width=\"942\" height=\"703\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003.jpg 942w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003-300x224.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003-768x573.jpg 768w\" sizes=\"(max-width: 942px) 100vw, 942px\" />											\n										<img width=\"950\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-950x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-950x1024.jpg 950w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-278x300.jpg 278w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-768x828.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n.jpg 1000w\" sizes=\"(max-width: 950px) 100vw, 950px\" />											\n										<img width=\"1024\" height=\"576\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-1024x576.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-1024x576.jpg 1024w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-300x169.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-768x432.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01.jpg 1280w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n			<h4>Our company is a collective of amazing people striving to build delightful products.</h4>		\n		<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.</p>		\n			<a href=\"#\" role=\"button\">\n						Read More\n					</a>','Home','','inherit','closed','closed','','5-revision-v1','','','2019-09-21 23:53:28','2019-09-21 23:53:28','',5,'http://23.235.208.11/~ondisp5/wp/2019/09/21/5-revision-v1/',0,'revision','',0),(485,1,'2019-09-21 23:53:49','2019-09-21 23:53:49','<h2>#WHAT\'S COOL</h2>		\n			<h2>INNOVATIONS FROM ONDISPLAY CREATIVE</h2>		\n			<h1>LIVING STANDEES HAUNTING THEATERS</h1>		\n			<h3>ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS</h3>		\n			<h2>INSIDIOUS – THE LAST KEY</h2>		\n		<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!</p>		\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n		https://vimeo.com/257088337		\n			<h2>INSIDIOUS CHAPTER 3</h2>		\n		<p>OnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.</p>		\n										<img width=\"1000\" height=\"800\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset.jpeg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset.jpeg 1000w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-300x240.jpeg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-768x614.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />											\n		https://vimeo.com/130807026		\n			<h1>VIRTUAL REALITY EXPERIENCE</h1>		\n			<h2>SPIDER-MAN HOMECOMING DISPLAY</h2>		\n		<p>Submerse yourself in the world of your friendly neighborhood Spider-Man in this fun and thrilling VR Theatrical Display.  Based on the all-new 2017 film, the Spider-Man Homecoming VR Experience is a first-person look through the eyes of Spidey himself.</p>		\n										<img width=\"1024\" height=\"711\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-1024x711.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-1024x711.jpg 1024w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-300x208.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-768x533.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n										<img width=\"750\" height=\"1000\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834.jpg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834-225x300.jpg 225w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n										<img width=\"750\" height=\"750\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788.jpg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788-150x150.jpg 150w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788-300x300.jpg 300w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n			<h2>THE STRANGERS PREY AT NIGHT</h2>		\n			<h2>GRAND FORMAT PHOTO-OP STANDEE</h2>		\n			<h1>MARKETING AT ITS FINEST, TAILORED FOR SOCIAL MEDIA</h1>		\n		<p>This theatrical display allows fans to take photos with Dollface, Pin-up Girl, the Man in the Mask and share their photos on social media.</p>		\n										<img width=\"942\" height=\"703\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003.jpg 942w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003-300x224.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003-768x573.jpg 768w\" sizes=\"(max-width: 942px) 100vw, 942px\" />											\n										<img width=\"950\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-950x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-950x1024.jpg 950w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-278x300.jpg 278w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-768x828.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n.jpg 1000w\" sizes=\"(max-width: 950px) 100vw, 950px\" />											\n										<img width=\"1024\" height=\"576\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-1024x576.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-1024x576.jpg 1024w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-300x169.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-768x432.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01.jpg 1280w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n			<h4>Our company is a collective of amazing people striving to build delightful products.</h4>		\n		<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.</p>		\n			<a href=\"#\" role=\"button\">\n						Read More\n					</a>','Home','','inherit','closed','closed','','5-revision-v1','','','2019-09-21 23:53:49','2019-09-21 23:53:49','',5,'http://23.235.208.11/~ondisp5/wp/2019/09/21/5-revision-v1/',0,'revision','',0),(486,1,'2019-09-21 23:54:27','2019-09-21 23:54:27','<h2>#WHAT\'S COOL</h2>		\n			<h2>INNOVATIONS FROM ONDISPLAY CREATIVE</h2>		\n			<h1>LIVING STANDEES HAUNTING THEATERS</h1>		\n			<h3>ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS</h3>		\n			<h2>INSIDIOUS – THE LAST KEY</h2>		\n		<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!</p>		\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n		https://vimeo.com/257088337		\n			<h2>INSIDIOUS CHAPTER 3</h2>		\n		<p>OnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.</p>		\n										<img width=\"1000\" height=\"800\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset.jpeg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset.jpeg 1000w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-300x240.jpeg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-768x614.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />											\n		https://vimeo.com/130807026		\n			<h1>VIRTUAL REALITY EXPERIENCE</h1>		\n			<h2>SPIDER-MAN HOMECOMING DISPLAY</h2>		\n		<p>Submerse yourself in the world of your friendly neighborhood Spider-Man in this fun and thrilling VR Theatrical Display.  Based on the all-new 2017 film, the Spider-Man Homecoming VR Experience is a first-person look through the eyes of Spidey himself.</p>		\n										<img width=\"1024\" height=\"711\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-1024x711.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-1024x711.jpg 1024w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-300x208.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-768x533.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n										<img width=\"750\" height=\"1000\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834.jpg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834-225x300.jpg 225w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n										<img width=\"750\" height=\"750\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788.jpg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788-150x150.jpg 150w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788-300x300.jpg 300w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n			<h2>THE STRANGERS PREY AT NIGHT</h2>		\n			<h2>GRAND FORMAT PHOTO-OP STANDEE</h2>		\n			<h1>MARKETING AT ITS FINEST, TAILORED FOR SOCIAL MEDIA</h1>		\n		<p>This theatrical display allows fans to take photos with Dollface, Pin-up Girl, the Man in the Mask and share their photos on social media.</p>		\n										<img width=\"942\" height=\"703\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003.jpg 942w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003-300x224.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003-768x573.jpg 768w\" sizes=\"(max-width: 942px) 100vw, 942px\" />											\n										<img width=\"950\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-950x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-950x1024.jpg 950w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-278x300.jpg 278w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-768x828.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n.jpg 1000w\" sizes=\"(max-width: 950px) 100vw, 950px\" />											\n										<img width=\"1024\" height=\"576\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-1024x576.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-1024x576.jpg 1024w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-300x169.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-768x432.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01.jpg 1280w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n			<h4>Our company is a collective of amazing people striving to build delightful products.</h4>		\n		<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.</p>		\n			<a href=\"#\" role=\"button\">\n						Read More\n					</a>','Home','','inherit','closed','closed','','5-revision-v1','','','2019-09-21 23:54:27','2019-09-21 23:54:27','',5,'http://23.235.208.11/~ondisp5/wp/2019/09/21/5-revision-v1/',0,'revision','',0),(487,1,'2019-09-21 23:55:00','2019-09-21 23:55:00','<h2>#WHAT\'S COOL</h2>		\n			<h2>INNOVATIONS FROM ONDISPLAY CREATIVE</h2>		\n			<h1>LIVING STANDEES HAUNTING THEATERS</h1>		\n			<h3>ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS</h3>		\n			<h2>INSIDIOUS – THE LAST KEY</h2>		\n		<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!</p>		\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n		https://vimeo.com/257088337		\n			<h2>INSIDIOUS CHAPTER 3</h2>		\n		<p>OnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.</p>		\n										<img width=\"1000\" height=\"800\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset.jpeg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset.jpeg 1000w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-300x240.jpeg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-768x614.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />											\n		https://vimeo.com/130807026		\n			<h1>VIRTUAL REALITY EXPERIENCE</h1>		\n			<h2>SPIDER-MAN HOMECOMING DISPLAY</h2>		\n		<p>Submerse yourself in the world of your friendly neighborhood Spider-Man in this fun and thrilling VR Theatrical Display.  Based on the all-new 2017 film, the Spider-Man Homecoming VR Experience is a first-person look through the eyes of Spidey himself.</p>		\n										<img width=\"1024\" height=\"711\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-1024x711.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-1024x711.jpg 1024w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-300x208.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-768x533.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n										<img width=\"750\" height=\"1000\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834.jpg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834-225x300.jpg 225w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n										<img width=\"750\" height=\"750\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788.jpg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788-150x150.jpg 150w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788-300x300.jpg 300w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n			<h2>THE STRANGERS PREY AT NIGHT</h2>		\n			<h2>GRAND FORMAT PHOTO-OP STANDEE</h2>		\n			<h1>MARKETING AT ITS FINEST, TAILORED FOR SOCIAL MEDIA</h1>		\n		<p>This theatrical display allows fans to take photos with Dollface, Pin-up Girl, the Man in the Mask and share their photos on social media.</p>		\n										<img width=\"942\" height=\"703\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003.jpg 942w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003-300x224.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003-768x573.jpg 768w\" sizes=\"(max-width: 942px) 100vw, 942px\" />											\n										<img width=\"950\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-950x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-950x1024.jpg 950w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-278x300.jpg 278w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-768x828.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n.jpg 1000w\" sizes=\"(max-width: 950px) 100vw, 950px\" />											\n										<img width=\"1024\" height=\"576\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-1024x576.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-1024x576.jpg 1024w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-300x169.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-768x432.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01.jpg 1280w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n			<h4>Our company is a collective of amazing people striving to build delightful products.</h4>		\n		<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.</p>		\n			<a href=\"#\" role=\"button\">\n						Read More\n					</a>','Home','','inherit','closed','closed','','5-revision-v1','','','2019-09-21 23:55:00','2019-09-21 23:55:00','',5,'http://23.235.208.11/~ondisp5/wp/2019/09/21/5-revision-v1/',0,'revision','',0),(488,1,'2019-09-21 23:55:34','2019-09-21 23:55:34','<h2>#WHAT\'S COOL</h2>		\n			<h2>INNOVATIONS FROM ONDISPLAY CREATIVE</h2>		\n			<h1>LIVING STANDEES HAUNTING THEATERS</h1>		\n			<h3>ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS</h3>		\n			<h2>INSIDIOUS – THE LAST KEY</h2>		\n		<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!</p>		\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n		https://vimeo.com/257088337		\n			<h2>INSIDIOUS CHAPTER 3</h2>		\n		<p>OnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.</p>		\n										<img width=\"1000\" height=\"800\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset.jpeg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset.jpeg 1000w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-300x240.jpeg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-768x614.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />											\n		https://vimeo.com/130807026		\n			<h1>VIRTUAL REALITY EXPERIENCE</h1>		\n			<h2>SPIDER-MAN HOMECOMING DISPLAY</h2>		\n		<p>Submerse yourself in the world of your friendly neighborhood Spider-Man in this fun and thrilling VR Theatrical Display.  Based on the all-new 2017 film, the Spider-Man Homecoming VR Experience is a first-person look through the eyes of Spidey himself.</p>		\n										<img width=\"1024\" height=\"711\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-1024x711.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-1024x711.jpg 1024w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-300x208.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-768x533.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n										<img width=\"750\" height=\"1000\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834.jpg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834-225x300.jpg 225w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n										<img width=\"750\" height=\"750\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788.jpg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788-150x150.jpg 150w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788-300x300.jpg 300w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n			<h2>THE STRANGERS PREY AT NIGHT</h2>		\n			<h2>GRAND FORMAT PHOTO-OP STANDEE</h2>		\n			<h1>MARKETING AT ITS FINEST, TAILORED FOR SOCIAL MEDIA</h1>		\n		<p>This theatrical display allows fans to take photos with Dollface, Pin-up Girl, the Man in the Mask and share their photos on social media.</p>		\n										<img width=\"942\" height=\"703\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003.jpg 942w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003-300x224.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003-768x573.jpg 768w\" sizes=\"(max-width: 942px) 100vw, 942px\" />											\n										<img width=\"950\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-950x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-950x1024.jpg 950w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-278x300.jpg 278w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-768x828.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n.jpg 1000w\" sizes=\"(max-width: 950px) 100vw, 950px\" />											\n										<img width=\"1024\" height=\"576\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-1024x576.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-1024x576.jpg 1024w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-300x169.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-768x432.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01.jpg 1280w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n			<h4>Our company is a collective of amazing people striving to build delightful products.</h4>		\n		<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.</p>		\n			<a href=\"#\" role=\"button\">\n						Read More\n					</a>','Home','','inherit','closed','closed','','5-revision-v1','','','2019-09-21 23:55:34','2019-09-21 23:55:34','',5,'http://23.235.208.11/~ondisp5/wp/2019/09/21/5-revision-v1/',0,'revision','',0),(489,1,'2019-09-21 23:55:59','2019-09-21 23:55:59','<h2>#WHAT\'S COOL</h2>		\n			<h2>INNOVATIONS FROM ONDISPLAY CREATIVE</h2>		\n			<h1>LIVING STANDEES HAUNTING THEATERS</h1>		\n			<h3>ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS</h3>		\n			<h2>INSIDIOUS – THE LAST KEY</h2>		\n		<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!</p>		\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n		https://vimeo.com/257088337		\n			<h2>INSIDIOUS CHAPTER 3</h2>		\n		<p>OnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.</p>		\n										<img width=\"1000\" height=\"800\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset.jpeg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset.jpeg 1000w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-300x240.jpeg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-768x614.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />											\n		https://vimeo.com/130807026		\n			<h1>VIRTUAL REALITY EXPERIENCE</h1>		\n			<h2>SPIDER-MAN HOMECOMING DISPLAY</h2>		\n		<p>Submerse yourself in the world of your friendly neighborhood Spider-Man in this fun and thrilling VR Theatrical Display.  Based on the all-new 2017 film, the Spider-Man Homecoming VR Experience is a first-person look through the eyes of Spidey himself.</p>		\n										<img width=\"1024\" height=\"711\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-1024x711.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-1024x711.jpg 1024w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-300x208.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-768x533.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n										<img width=\"750\" height=\"1000\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834.jpg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834-225x300.jpg 225w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n										<img width=\"750\" height=\"750\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788.jpg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788-150x150.jpg 150w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788-300x300.jpg 300w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n			<h2>THE STRANGERS PREY AT NIGHT</h2>		\n			<h2>GRAND FORMAT PHOTO-OP STANDEE</h2>		\n			<h1>MARKETING AT ITS FINEST, TAILORED FOR SOCIAL MEDIA</h1>		\n		<p>This theatrical display allows fans to take photos with Dollface, Pin-up Girl, the Man in the Mask and share their photos on social media.</p>		\n										<img width=\"942\" height=\"703\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003.jpg 942w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003-300x224.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003-768x573.jpg 768w\" sizes=\"(max-width: 942px) 100vw, 942px\" />											\n										<img width=\"950\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-950x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-950x1024.jpg 950w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-278x300.jpg 278w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-768x828.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n.jpg 1000w\" sizes=\"(max-width: 950px) 100vw, 950px\" />											\n										<img width=\"1024\" height=\"576\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-1024x576.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-1024x576.jpg 1024w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-300x169.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-768x432.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01.jpg 1280w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n			<h4>Our company is a collective of amazing people striving to build delightful products.</h4>		\n		<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.</p>		\n			<a href=\"#\" role=\"button\">\n						Read More\n					</a>','Home','','inherit','closed','closed','','5-revision-v1','','','2019-09-21 23:55:59','2019-09-21 23:55:59','',5,'http://23.235.208.11/~ondisp5/wp/2019/09/21/5-revision-v1/',0,'revision','',0),(490,1,'2019-09-21 23:56:25','2019-09-21 23:56:25','<h2>#WHAT\'S COOL</h2>		\n			<h2>INNOVATIONS FROM ONDISPLAY CREATIVE</h2>		\n			<h1>LIVING STANDEES HAUNTING THEATERS</h1>		\n			<h3>ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS</h3>		\n			<h2>INSIDIOUS – THE LAST KEY</h2>		\n		<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!</p>		\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n		https://vimeo.com/257088337		\n			<h2>INSIDIOUS CHAPTER 3</h2>		\n		<p>OnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.</p>		\n										<img width=\"1000\" height=\"800\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset.jpeg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset.jpeg 1000w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-300x240.jpeg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-768x614.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />											\n		https://vimeo.com/130807026		\n			<h1>VIRTUAL REALITY EXPERIENCE</h1>		\n			<h2>SPIDER-MAN HOMECOMING DISPLAY</h2>		\n		<p>Submerse yourself in the world of your friendly neighborhood Spider-Man in this fun and thrilling VR Theatrical Display.  Based on the all-new 2017 film, the Spider-Man Homecoming VR Experience is a first-person look through the eyes of Spidey himself.</p>		\n										<img width=\"1024\" height=\"711\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-1024x711.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-1024x711.jpg 1024w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-300x208.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-768x533.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n										<img width=\"750\" height=\"1000\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834.jpg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834-225x300.jpg 225w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n										<img width=\"750\" height=\"750\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788.jpg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788-150x150.jpg 150w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788-300x300.jpg 300w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n			<h2>THE STRANGERS PREY AT NIGHT</h2>		\n			<h2>GRAND FORMAT PHOTO-OP STANDEE</h2>		\n			<h1>MARKETING AT ITS FINEST, TAILORED FOR SOCIAL MEDIA</h1>		\n		<p>This theatrical display allows fans to take photos with Dollface, Pin-up Girl, the Man in the Mask and share their photos on social media.</p>		\n										<img width=\"942\" height=\"703\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003.jpg 942w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003-300x224.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003-768x573.jpg 768w\" sizes=\"(max-width: 942px) 100vw, 942px\" />											\n										<img width=\"950\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-950x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-950x1024.jpg 950w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-278x300.jpg 278w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-768x828.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n.jpg 1000w\" sizes=\"(max-width: 950px) 100vw, 950px\" />											\n										<img width=\"1024\" height=\"576\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-1024x576.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-1024x576.jpg 1024w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-300x169.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-768x432.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01.jpg 1280w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n			<h4>Our company is a collective of amazing people striving to build delightful products.</h4>		\n		<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.</p>		\n			<a href=\"#\" role=\"button\">\n						Read More\n					</a>','Home','','inherit','closed','closed','','5-revision-v1','','','2019-09-21 23:56:25','2019-09-21 23:56:25','',5,'http://23.235.208.11/~ondisp5/wp/2019/09/21/5-revision-v1/',0,'revision','',0),(491,1,'2019-09-21 23:57:30','2019-09-21 23:57:30','<h2>#WHAT\'S COOL</h2>		\n			<h2>INNOVATIONS FROM ONDISPLAY CREATIVE</h2>		\n			<h1>LIVING STANDEES HAUNTING THEATERS</h1>		\n			<h3>ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS</h3>		\n			<h2>INSIDIOUS – THE LAST KEY</h2>		\n		<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!</p>		\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n		https://vimeo.com/257088337		\n			<h2>INSIDIOUS CHAPTER 3</h2>		\n		<p>OnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.</p>		\n										<img width=\"1000\" height=\"800\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset.jpeg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset.jpeg 1000w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-300x240.jpeg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-768x614.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />											\n		https://vimeo.com/130807026		\n			<h1>VIRTUAL REALITY EXPERIENCE</h1>		\n			<h2>SPIDER-MAN HOMECOMING DISPLAY</h2>		\n		<p>Submerse yourself in the world of your friendly neighborhood Spider-Man in this fun and thrilling VR Theatrical Display.  Based on the all-new 2017 film, the Spider-Man Homecoming VR Experience is a first-person look through the eyes of Spidey himself.</p>		\n										<img width=\"1024\" height=\"711\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-1024x711.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-1024x711.jpg 1024w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-300x208.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-768x533.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n										<img width=\"750\" height=\"1000\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834.jpg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834-225x300.jpg 225w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n										<img width=\"750\" height=\"750\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788.jpg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788-150x150.jpg 150w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788-300x300.jpg 300w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n			<h2>THE STRANGERS PREY AT NIGHT</h2>		\n			<h2>GRAND FORMAT PHOTO-OP STANDEE</h2>		\n			<h1>MARKETING AT ITS FINEST, TAILORED FOR SOCIAL MEDIA</h1>		\n		<p>This theatrical display allows fans to take photos with Dollface, Pin-up Girl, the Man in the Mask and share their photos on social media.</p>		\n										<img width=\"942\" height=\"703\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003.jpg 942w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003-300x224.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003-768x573.jpg 768w\" sizes=\"(max-width: 942px) 100vw, 942px\" />											\n										<img width=\"950\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-950x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-950x1024.jpg 950w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-278x300.jpg 278w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-768x828.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n.jpg 1000w\" sizes=\"(max-width: 950px) 100vw, 950px\" />											\n										<img width=\"1024\" height=\"576\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-1024x576.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-1024x576.jpg 1024w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-300x169.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-768x432.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01.jpg 1280w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n			<h4>Our company is a collective of amazing people striving to build delightful products.</h4>		\n		<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.</p>		\n			<a href=\"#\" role=\"button\">\n						Read More\n					</a>','Home','','inherit','closed','closed','','5-revision-v1','','','2019-09-21 23:57:30','2019-09-21 23:57:30','',5,'http://23.235.208.11/~ondisp5/wp/2019/09/21/5-revision-v1/',0,'revision','',0),(492,1,'2019-09-21 23:58:42','2019-09-21 23:58:42','<h2>#WHAT\'S COOL</h2>		\n			<h2>INNOVATIONS FROM ONDISPLAY CREATIVE</h2>		\n			<h1>LIVING STANDEES HAUNTING THEATERS</h1>		\n			<h3>ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS</h3>		\n			<h2>INSIDIOUS – THE LAST KEY</h2>		\n		<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!</p>		\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n		https://vimeo.com/257088337		\n			<h2>INSIDIOUS CHAPTER 3</h2>		\n		<p>OnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.</p>		\n										<img width=\"1000\" height=\"800\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset.jpeg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset.jpeg 1000w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-300x240.jpeg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-768x614.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />											\n		https://vimeo.com/130807026		\n			<h1>VIRTUAL REALITY EXPERIENCE</h1>		\n			<h2>SPIDER-MAN HOMECOMING DISPLAY</h2>		\n		<p>Submerse yourself in the world of your friendly neighborhood Spider-Man in this fun and thrilling VR Theatrical Display.  Based on the all-new 2017 film, the Spider-Man Homecoming VR Experience is a first-person look through the eyes of Spidey himself.</p>		\n										<img width=\"1024\" height=\"711\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-1024x711.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-1024x711.jpg 1024w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-300x208.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-768x533.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n										<img width=\"750\" height=\"1000\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834.jpg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834-225x300.jpg 225w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n										<img width=\"750\" height=\"750\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788.jpg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788-150x150.jpg 150w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788-300x300.jpg 300w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n			<h2>THE STRANGERS PREY AT NIGHT</h2>		\n			<h2>GRAND FORMAT PHOTO-OP STANDEE</h2>		\n			<h1>MARKETING AT ITS FINEST, TAILORED FOR SOCIAL MEDIA</h1>		\n		<p>This theatrical display allows fans to take photos with Dollface, Pin-up Girl, the Man in the Mask and share their photos on social media.</p>		\n										<img width=\"942\" height=\"703\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003.jpg 942w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003-300x224.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003-768x573.jpg 768w\" sizes=\"(max-width: 942px) 100vw, 942px\" />											\n										<img width=\"950\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-950x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-950x1024.jpg 950w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-278x300.jpg 278w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-768x828.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n.jpg 1000w\" sizes=\"(max-width: 950px) 100vw, 950px\" />											\n										<img width=\"1024\" height=\"576\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-1024x576.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-1024x576.jpg 1024w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-300x169.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-768x432.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01.jpg 1280w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n			<h4>Our company is a collective of amazing people striving to build delightful products.</h4>		\n		<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.</p>		\n			<a href=\"#\" role=\"button\">\n						Read More\n					</a>','Home','','inherit','closed','closed','','5-revision-v1','','','2019-09-21 23:58:42','2019-09-21 23:58:42','',5,'http://23.235.208.11/~ondisp5/wp/2019/09/21/5-revision-v1/',0,'revision','',0),(493,1,'2019-09-21 23:59:34','2019-09-21 23:59:34','<h2>#WHAT\'S COOL</h2>		\n			<h2>INNOVATIONS FROM ONDISPLAY CREATIVE</h2>		\n			<h1>LIVING STANDEES HAUNTING THEATERS</h1>		\n			<h3>ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS</h3>		\n			<h2>INSIDIOUS – THE LAST KEY</h2>		\n		<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!</p>		\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n		https://vimeo.com/257088337		\n			<h2>INSIDIOUS CHAPTER 3</h2>		\n		<p>OnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.</p>		\n										<img width=\"1000\" height=\"800\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset.jpeg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset.jpeg 1000w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-300x240.jpeg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-768x614.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />											\n		https://vimeo.com/130807026		\n			<h1>VIRTUAL REALITY EXPERIENCE</h1>		\n			<h2>SPIDER-MAN HOMECOMING DISPLAY</h2>		\n		<p>Submerse yourself in the world of your friendly neighborhood Spider-Man in this fun and thrilling VR Theatrical Display.  Based on the all-new 2017 film, the Spider-Man Homecoming VR Experience is a first-person look through the eyes of Spidey himself.</p>		\n										<img width=\"1024\" height=\"711\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-1024x711.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-1024x711.jpg 1024w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-300x208.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-768x533.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n										<img width=\"750\" height=\"1000\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834.jpg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834-225x300.jpg 225w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n										<img width=\"750\" height=\"750\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788.jpg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788-150x150.jpg 150w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788-300x300.jpg 300w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n			<h2>THE STRANGERS PREY AT NIGHT</h2>		\n			<h2>GRAND FORMAT PHOTO-OP STANDEE</h2>		\n			<h1>MARKETING AT ITS FINEST, TAILORED FOR SOCIAL MEDIA</h1>		\n		<p>This theatrical display allows fans to take photos with Dollface, Pin-up Girl, the Man in the Mask and share their photos on social media.</p>		\n										<img width=\"942\" height=\"703\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003.jpg 942w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003-300x224.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003-768x573.jpg 768w\" sizes=\"(max-width: 942px) 100vw, 942px\" />											\n										<img width=\"950\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-950x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-950x1024.jpg 950w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-278x300.jpg 278w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-768x828.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n.jpg 1000w\" sizes=\"(max-width: 950px) 100vw, 950px\" />											\n										<img width=\"1024\" height=\"576\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-1024x576.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-1024x576.jpg 1024w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-300x169.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-768x432.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01.jpg 1280w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n			<h4>Our company is a collective of amazing people striving to build delightful products.</h4>		\n		<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.</p>		\n			<a href=\"#\" role=\"button\">\n						Read More\n					</a>','Home','','inherit','closed','closed','','5-revision-v1','','','2019-09-21 23:59:34','2019-09-21 23:59:34','',5,'http://23.235.208.11/~ondisp5/wp/2019/09/21/5-revision-v1/',0,'revision','',0),(494,1,'2019-09-22 00:00:21','2019-09-22 00:00:21','<h2>#WHAT\'S COOL</h2>		\n			<h2>INNOVATIONS FROM ONDISPLAY CREATIVE</h2>		\n			<h1>LIVING STANDEES HAUNTING THEATERS</h1>		\n			<h3>ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS</h3>		\n			<h2>INSIDIOUS – THE LAST KEY</h2>		\n		<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!</p>		\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n		https://vimeo.com/257088337		\n			<h2>INSIDIOUS CHAPTER 3</h2>		\n		<p>OnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.</p>		\n										<img width=\"1000\" height=\"800\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset.jpeg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset.jpeg 1000w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-300x240.jpeg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-768x614.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />											\n		https://vimeo.com/130807026		\n			<h1>VIRTUAL REALITY EXPERIENCE</h1>		\n			<h2>SPIDER-MAN HOMECOMING DISPLAY</h2>		\n		<p>Submerse yourself in the world of your friendly neighborhood Spider-Man in this fun and thrilling VR Theatrical Display.  Based on the all-new 2017 film, the Spider-Man Homecoming VR Experience is a first-person look through the eyes of Spidey himself.</p>		\n										<img width=\"1024\" height=\"711\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-1024x711.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-1024x711.jpg 1024w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-300x208.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-768x533.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n										<img width=\"750\" height=\"1000\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834.jpg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834-225x300.jpg 225w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n										<img width=\"750\" height=\"750\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788.jpg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788-150x150.jpg 150w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788-300x300.jpg 300w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n			<h2>THE STRANGERS PREY AT NIGHT</h2>		\n			<h2>GRAND FORMAT PHOTO-OP STANDEE</h2>		\n			<h1>MARKETING AT ITS FINEST, TAILORED FOR SOCIAL MEDIA</h1>		\n		<p>This theatrical display allows fans to take photos with Dollface, Pin-up Girl, the Man in the Mask and share their photos on social media.</p>		\n										<img width=\"942\" height=\"703\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003.jpg 942w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003-300x224.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003-768x573.jpg 768w\" sizes=\"(max-width: 942px) 100vw, 942px\" />											\n										<img width=\"950\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-950x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-950x1024.jpg 950w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-278x300.jpg 278w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-768x828.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n.jpg 1000w\" sizes=\"(max-width: 950px) 100vw, 950px\" />											\n										<img width=\"1024\" height=\"576\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-1024x576.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-1024x576.jpg 1024w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-300x169.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-768x432.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01.jpg 1280w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n			<h4>Our company is a collective of amazing people striving to build delightful products.</h4>		\n		<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.</p>		\n			<a href=\"#\" role=\"button\">\n						Read More\n					</a>','Home','','inherit','closed','closed','','5-revision-v1','','','2019-09-22 00:00:21','2019-09-22 00:00:21','',5,'http://23.235.208.11/~ondisp5/wp/2019/09/22/5-revision-v1/',0,'revision','',0),(495,1,'2019-09-22 00:00:41','2019-09-22 00:00:41','<h2>#WHAT\'S COOL</h2>		\n			<h2>INNOVATIONS FROM ONDISPLAY CREATIVE</h2>		\n			<h1>LIVING STANDEES HAUNTING THEATERS</h1>		\n			<h3>ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS</h3>		\n			<h2>INSIDIOUS – THE LAST KEY</h2>		\n		<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!</p>		\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n		https://vimeo.com/257088337		\n			<h2>INSIDIOUS CHAPTER 3</h2>		\n		<p>OnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.</p>		\n										<img width=\"1000\" height=\"800\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset.jpeg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset.jpeg 1000w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-300x240.jpeg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-768x614.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />											\n		https://vimeo.com/130807026		\n			<h1>VIRTUAL REALITY EXPERIENCE</h1>		\n			<h2>SPIDER-MAN HOMECOMING DISPLAY</h2>		\n		<p>Submerse yourself in the world of your friendly neighborhood Spider-Man in this fun and thrilling VR Theatrical Display.  Based on the all-new 2017 film, the Spider-Man Homecoming VR Experience is a first-person look through the eyes of Spidey himself.</p>		\n										<img width=\"1024\" height=\"711\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-1024x711.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-1024x711.jpg 1024w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-300x208.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-768x533.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n										<img width=\"750\" height=\"1000\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834.jpg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834-225x300.jpg 225w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n										<img width=\"750\" height=\"750\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788.jpg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788-150x150.jpg 150w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788-300x300.jpg 300w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n			<h2>THE STRANGERS PREY AT NIGHT</h2>		\n			<h2>GRAND FORMAT PHOTO-OP STANDEE</h2>		\n			<h1>MARKETING AT ITS FINEST, TAILORED FOR SOCIAL MEDIA</h1>		\n		<p>This theatrical display allows fans to take photos with Dollface, Pin-up Girl, the Man in the Mask and share their photos on social media.</p>		\n										<img width=\"942\" height=\"703\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003.jpg 942w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003-300x224.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003-768x573.jpg 768w\" sizes=\"(max-width: 942px) 100vw, 942px\" />											\n										<img width=\"950\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-950x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-950x1024.jpg 950w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-278x300.jpg 278w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-768x828.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n.jpg 1000w\" sizes=\"(max-width: 950px) 100vw, 950px\" />											\n										<img width=\"1024\" height=\"576\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-1024x576.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-1024x576.jpg 1024w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-300x169.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-768x432.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01.jpg 1280w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n			<h4>Our company is a collective of amazing people striving to build delightful products.</h4>		\n		<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.</p>		\n			<a href=\"#\" role=\"button\">\n						Read More\n					</a>','Home','','inherit','closed','closed','','5-revision-v1','','','2019-09-22 00:00:41','2019-09-22 00:00:41','',5,'http://23.235.208.11/~ondisp5/wp/2019/09/22/5-revision-v1/',0,'revision','',0),(496,1,'2019-09-22 00:01:26','2019-09-22 00:01:26','<h2>#WHAT\'S COOL</h2>		\n			<h2>INNOVATIONS FROM ONDISPLAY CREATIVE</h2>		\n			<h1>LIVING STANDEES HAUNTING THEATERS</h1>		\n			<h3>ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS</h3>		\n			<h2>INSIDIOUS – THE LAST KEY</h2>		\n		<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!</p>		\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n		https://vimeo.com/257088337		\n			<h2>INSIDIOUS CHAPTER 3</h2>		\n		<p>OnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.</p>		\n										<img width=\"1000\" height=\"800\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset.jpeg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset.jpeg 1000w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-300x240.jpeg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-768x614.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />											\n		https://vimeo.com/130807026		\n			<h1>VIRTUAL REALITY EXPERIENCE</h1>		\n			<h2>SPIDER-MAN HOMECOMING DISPLAY</h2>		\n		<p>Submerse yourself in the world of your friendly neighborhood Spider-Man in this fun and thrilling VR Theatrical Display.  Based on the all-new 2017 film, the Spider-Man Homecoming VR Experience is a first-person look through the eyes of Spidey himself.</p>		\n										<img width=\"1024\" height=\"711\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-1024x711.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-1024x711.jpg 1024w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-300x208.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-768x533.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n										<img width=\"750\" height=\"1000\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834.jpg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834-225x300.jpg 225w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n										<img width=\"750\" height=\"750\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788.jpg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788-150x150.jpg 150w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788-300x300.jpg 300w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n			<h2>THE STRANGERS PREY AT NIGHT</h2>		\n			<h2>GRAND FORMAT PHOTO-OP STANDEE</h2>		\n			<h1>MARKETING AT ITS FINEST, TAILORED FOR SOCIAL MEDIA</h1>		\n		<p>This theatrical display allows fans to take photos with Dollface, Pin-up Girl, the Man in the Mask and share their photos on social media.</p>		\n										<img width=\"942\" height=\"703\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003.jpg 942w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003-300x224.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003-768x573.jpg 768w\" sizes=\"(max-width: 942px) 100vw, 942px\" />											\n										<img width=\"950\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-950x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-950x1024.jpg 950w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-278x300.jpg 278w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-768x828.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n.jpg 1000w\" sizes=\"(max-width: 950px) 100vw, 950px\" />											\n										<img width=\"1024\" height=\"576\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-1024x576.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-1024x576.jpg 1024w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-300x169.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-768x432.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01.jpg 1280w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n			<h4>Our company is a collective of amazing people striving to build delightful products.</h4>		\n		<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.</p>		\n			<a href=\"#\" role=\"button\">\n						Read More\n					</a>','Home','','inherit','closed','closed','','5-revision-v1','','','2019-09-22 00:01:26','2019-09-22 00:01:26','',5,'http://23.235.208.11/~ondisp5/wp/2019/09/22/5-revision-v1/',0,'revision','',0),(497,1,'2019-09-22 00:02:03','2019-09-22 00:02:03','<h2>#WHAT\'S COOL</h2>		\n			<h2>INNOVATIONS FROM ONDISPLAY CREATIVE</h2>		\n			<h1>LIVING STANDEES HAUNTING THEATERS</h1>		\n			<h3>ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS</h3>		\n			<h2>INSIDIOUS – THE LAST KEY</h2>		\n		<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!</p>		\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n		https://vimeo.com/257088337		\n			<h2>INSIDIOUS CHAPTER 3</h2>		\n		<p>OnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.</p>		\n										<img width=\"1000\" height=\"800\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset.jpeg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset.jpeg 1000w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-300x240.jpeg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-768x614.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />											\n		https://vimeo.com/130807026		\n			<h1>VIRTUAL REALITY EXPERIENCE</h1>		\n			<h2>SPIDER-MAN HOMECOMING DISPLAY</h2>		\n		<p>Submerse yourself in the world of your friendly neighborhood Spider-Man in this fun and thrilling VR Theatrical Display.  Based on the all-new 2017 film, the Spider-Man Homecoming VR Experience is a first-person look through the eyes of Spidey himself.</p>		\n										<img width=\"1024\" height=\"711\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-1024x711.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-1024x711.jpg 1024w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-300x208.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-768x533.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n										<img width=\"750\" height=\"1000\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834.jpg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834-225x300.jpg 225w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n										<img width=\"750\" height=\"750\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788.jpg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788-150x150.jpg 150w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788-300x300.jpg 300w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n			<h2>THE STRANGERS PREY AT NIGHT</h2>		\n			<h2>GRAND FORMAT PHOTO-OP STANDEE</h2>		\n			<h1>MARKETING AT ITS FINEST, TAILORED FOR SOCIAL MEDIA</h1>		\n		<p>This theatrical display allows fans to take photos with Dollface, Pin-up Girl, the Man in the Mask and share their photos on social media.</p>		\n										<img width=\"942\" height=\"703\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003.jpg 942w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003-300x224.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003-768x573.jpg 768w\" sizes=\"(max-width: 942px) 100vw, 942px\" />											\n										<img width=\"950\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-950x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-950x1024.jpg 950w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-278x300.jpg 278w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-768x828.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n.jpg 1000w\" sizes=\"(max-width: 950px) 100vw, 950px\" />											\n										<img width=\"1024\" height=\"576\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-1024x576.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-1024x576.jpg 1024w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-300x169.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-768x432.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01.jpg 1280w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n			<h4>Our company is a collective of amazing people striving to build delightful products.</h4>		\n		<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.</p>		\n			<a href=\"#\" role=\"button\">\n						Read More\n					</a>','Home','','inherit','closed','closed','','5-revision-v1','','','2019-09-22 00:02:03','2019-09-22 00:02:03','',5,'http://23.235.208.11/~ondisp5/wp/2019/09/22/5-revision-v1/',0,'revision','',0),(498,1,'2019-09-22 00:02:39','2019-09-22 00:02:39','<h2>#WHAT\'S COOL</h2>		\n			<h2>INNOVATIONS FROM ONDISPLAY CREATIVE</h2>		\n			<h1>LIVING STANDEES HAUNTING THEATERS</h1>		\n			<h3>ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS</h3>		\n			<h2>INSIDIOUS – THE LAST KEY</h2>		\n		<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!</p>		\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n		https://vimeo.com/257088337		\n			<h2>INSIDIOUS CHAPTER 3</h2>		\n		<p>OnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.</p>		\n										<img width=\"1000\" height=\"800\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset.jpeg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset.jpeg 1000w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-300x240.jpeg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-768x614.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />											\n		https://vimeo.com/130807026		\n			<h1>VIRTUAL REALITY EXPERIENCE</h1>		\n			<h2>SPIDER-MAN HOMECOMING DISPLAY</h2>		\n		<p>Submerse yourself in the world of your friendly neighborhood Spider-Man in this fun and thrilling VR Theatrical Display.  Based on the all-new 2017 film, the Spider-Man Homecoming VR Experience is a first-person look through the eyes of Spidey himself.</p>		\n										<img width=\"1024\" height=\"711\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-1024x711.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-1024x711.jpg 1024w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-300x208.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-768x533.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n										<img width=\"750\" height=\"1000\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834.jpg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834-225x300.jpg 225w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n										<img width=\"750\" height=\"750\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788.jpg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788-150x150.jpg 150w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788-300x300.jpg 300w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n			<h2>THE STRANGERS PREY AT NIGHT</h2>		\n			<h2>GRAND FORMAT PHOTO-OP STANDEE</h2>		\n			<h1>MARKETING AT ITS FINEST, TAILORED FOR SOCIAL MEDIA</h1>		\n		<p>This theatrical display allows fans to take photos with Dollface, Pin-up Girl, the Man in the Mask and share their photos on social media.</p>		\n										<img width=\"942\" height=\"703\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003.jpg 942w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003-300x224.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003-768x573.jpg 768w\" sizes=\"(max-width: 942px) 100vw, 942px\" />											\n										<img width=\"950\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-950x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-950x1024.jpg 950w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-278x300.jpg 278w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-768x828.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n.jpg 1000w\" sizes=\"(max-width: 950px) 100vw, 950px\" />											\n										<img width=\"1024\" height=\"576\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-1024x576.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-1024x576.jpg 1024w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-300x169.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-768x432.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01.jpg 1280w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n			<h4>Our company is a collective of amazing people striving to build delightful products.</h4>		\n		<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.</p>		\n			<a href=\"#\" role=\"button\">\n						Read More\n					</a>','Home','','inherit','closed','closed','','5-revision-v1','','','2019-09-22 00:02:39','2019-09-22 00:02:39','',5,'http://23.235.208.11/~ondisp5/wp/2019/09/22/5-revision-v1/',0,'revision','',0),(499,1,'2019-09-22 00:03:21','2019-09-22 00:03:21','<h2>#WHAT\'S COOL</h2>		\n			<h2>INNOVATIONS FROM ONDISPLAY CREATIVE</h2>		\n			<h1>LIVING STANDEES HAUNTING THEATERS</h1>		\n			<h3>ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS</h3>		\n			<h2>INSIDIOUS – THE LAST KEY</h2>		\n		<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!</p>		\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n		https://vimeo.com/257088337		\n			<h2>INSIDIOUS CHAPTER 3</h2>		\n		<p>OnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.</p>		\n										<img width=\"1000\" height=\"800\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset.jpeg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset.jpeg 1000w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-300x240.jpeg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-768x614.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />											\n		https://vimeo.com/130807026		\n			<h1>VIRTUAL REALITY EXPERIENCE</h1>		\n			<h2>SPIDER-MAN HOMECOMING DISPLAY</h2>		\n		<p>Submerse yourself in the world of your friendly neighborhood Spider-Man in this fun and thrilling VR Theatrical Display.  Based on the all-new 2017 film, the Spider-Man Homecoming VR Experience is a first-person look through the eyes of Spidey himself.</p>		\n										<img width=\"1024\" height=\"711\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-1024x711.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-1024x711.jpg 1024w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-300x208.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-768x533.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n										<img width=\"750\" height=\"1000\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834.jpg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834-225x300.jpg 225w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n										<img width=\"750\" height=\"750\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788.jpg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788-150x150.jpg 150w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788-300x300.jpg 300w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n			<h2>THE STRANGERS PREY AT NIGHT</h2>		\n			<h2>GRAND FORMAT PHOTO-OP STANDEE</h2>		\n			<h1>MARKETING AT ITS FINEST, TAILORED FOR SOCIAL MEDIA</h1>		\n		<p>This theatrical display allows fans to take photos with Dollface, Pin-up Girl, the Man in the Mask and share their photos on social media.</p>		\n										<img width=\"942\" height=\"703\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003.jpg 942w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003-300x224.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003-768x573.jpg 768w\" sizes=\"(max-width: 942px) 100vw, 942px\" />											\n										<img width=\"950\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-950x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-950x1024.jpg 950w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-278x300.jpg 278w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-768x828.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n.jpg 1000w\" sizes=\"(max-width: 950px) 100vw, 950px\" />											\n										<img width=\"1024\" height=\"576\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-1024x576.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-1024x576.jpg 1024w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-300x169.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-768x432.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01.jpg 1280w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n			<h4>Our company is a collective of amazing people striving to build delightful products.</h4>		\n		<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.</p>		\n			<a href=\"#\" role=\"button\">\n						Read More\n					</a>','Home','','inherit','closed','closed','','5-revision-v1','','','2019-09-22 00:03:21','2019-09-22 00:03:21','',5,'http://23.235.208.11/~ondisp5/wp/2019/09/22/5-revision-v1/',0,'revision','',0),(500,1,'2019-09-22 00:03:49','2019-09-22 00:03:49','<h2>#WHAT\'S COOL</h2>		\n			<h2>INNOVATIONS FROM ONDISPLAY CREATIVE</h2>		\n			<h1>LIVING STANDEES HAUNTING THEATERS</h1>		\n			<h3>ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS</h3>		\n			<h2>INSIDIOUS – THE LAST KEY</h2>		\n		<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!</p>		\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n		https://vimeo.com/257088337		\n			<h2>INSIDIOUS CHAPTER 3</h2>		\n		<p>OnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.</p>		\n										<img width=\"1000\" height=\"800\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset.jpeg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset.jpeg 1000w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-300x240.jpeg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-768x614.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />											\n		https://vimeo.com/130807026		\n			<h1>VIRTUAL REALITY EXPERIENCE</h1>		\n			<h2>SPIDER-MAN HOMECOMING DISPLAY</h2>		\n		<p>Submerse yourself in the world of your friendly neighborhood Spider-Man in this fun and thrilling VR Theatrical Display.  Based on the all-new 2017 film, the Spider-Man Homecoming VR Experience is a first-person look through the eyes of Spidey himself.</p>		\n										<img width=\"1024\" height=\"711\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-1024x711.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-1024x711.jpg 1024w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-300x208.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-768x533.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n										<img width=\"750\" height=\"1000\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834.jpg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834-225x300.jpg 225w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n										<img width=\"750\" height=\"750\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788.jpg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788-150x150.jpg 150w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788-300x300.jpg 300w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n			<h2>THE STRANGERS PREY AT NIGHT</h2>		\n			<h2>GRAND FORMAT PHOTO-OP STANDEE</h2>		\n			<h1>MARKETING AT ITS FINEST, TAILORED FOR SOCIAL MEDIA</h1>		\n		<p>This theatrical display allows fans to take photos with Dollface, Pin-up Girl, the Man in the Mask and share their photos on social media.</p>		\n										<img width=\"942\" height=\"703\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003.jpg 942w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003-300x224.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003-768x573.jpg 768w\" sizes=\"(max-width: 942px) 100vw, 942px\" />											\n										<img width=\"950\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-950x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-950x1024.jpg 950w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-278x300.jpg 278w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-768x828.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n.jpg 1000w\" sizes=\"(max-width: 950px) 100vw, 950px\" />											\n										<img width=\"1024\" height=\"576\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-1024x576.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-1024x576.jpg 1024w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-300x169.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-768x432.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01.jpg 1280w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n			<h4>Our company is a collective of amazing people striving to build delightful products.</h4>		\n		<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.</p>		\n			<a href=\"#\" role=\"button\">\n						Read More\n					</a>','Home','','inherit','closed','closed','','5-revision-v1','','','2019-09-22 00:03:49','2019-09-22 00:03:49','',5,'http://23.235.208.11/~ondisp5/wp/2019/09/22/5-revision-v1/',0,'revision','',0),(501,1,'2019-09-22 00:04:24','2019-09-22 00:04:24','<h2>#WHAT\'S COOL</h2>		\n			<h2>INNOVATIONS FROM ONDISPLAY CREATIVE</h2>		\n			<h1>LIVING STANDEES HAUNTING THEATERS</h1>		\n			<h3>ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS</h3>		\n			<h2>INSIDIOUS – THE LAST KEY</h2>		\n		<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!</p>		\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n		https://vimeo.com/257088337		\n			<h2>INSIDIOUS CHAPTER 3</h2>		\n		<p>OnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.</p>		\n										<img width=\"1000\" height=\"800\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset.jpeg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset.jpeg 1000w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-300x240.jpeg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-768x614.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />											\n		https://vimeo.com/130807026		\n			<h1>VIRTUAL REALITY EXPERIENCE</h1>		\n			<h2>SPIDER-MAN HOMECOMING DISPLAY</h2>		\n		<p>Submerse yourself in the world of your friendly neighborhood Spider-Man in this fun and thrilling VR Theatrical Display.  Based on the all-new 2017 film, the Spider-Man Homecoming VR Experience is a first-person look through the eyes of Spidey himself.</p>		\n										<img width=\"1024\" height=\"711\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-1024x711.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-1024x711.jpg 1024w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-300x208.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-768x533.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n										<img width=\"750\" height=\"1000\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834.jpg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834-225x300.jpg 225w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n										<img width=\"750\" height=\"750\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788.jpg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788-150x150.jpg 150w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788-300x300.jpg 300w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n			<h2>THE STRANGERS PREY AT NIGHT</h2>		\n			<h2>GRAND FORMAT PHOTO-OP STANDEE</h2>		\n			<h1>MARKETING AT ITS FINEST, TAILORED FOR SOCIAL MEDIA</h1>		\n		<p>This theatrical display allows fans to take photos with Dollface, Pin-up Girl, the Man in the Mask and share their photos on social media.</p>		\n										<img width=\"942\" height=\"703\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003.jpg 942w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003-300x224.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003-768x573.jpg 768w\" sizes=\"(max-width: 942px) 100vw, 942px\" />											\n										<img width=\"950\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-950x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-950x1024.jpg 950w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-278x300.jpg 278w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-768x828.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n.jpg 1000w\" sizes=\"(max-width: 950px) 100vw, 950px\" />											\n										<img width=\"1024\" height=\"576\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-1024x576.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-1024x576.jpg 1024w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-300x169.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-768x432.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01.jpg 1280w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n			<h4>Our company is a collective of amazing people striving to build delightful products.</h4>		\n		<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.</p>		\n			<a href=\"#\" role=\"button\">\n						Read More\n					</a>','Home','','inherit','closed','closed','','5-revision-v1','','','2019-09-22 00:04:24','2019-09-22 00:04:24','',5,'http://23.235.208.11/~ondisp5/wp/2019/09/22/5-revision-v1/',0,'revision','',0),(502,1,'2019-09-22 00:05:33','2019-09-22 00:05:33','<h2>#WHAT\'S COOL</h2>		\n			<h2>INNOVATIONS FROM ONDISPLAY CREATIVE</h2>		\n			<h1>LIVING STANDEES HAUNTING THEATERS</h1>		\n			<h3>ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS</h3>		\n			<h2>INSIDIOUS – THE LAST KEY</h2>		\n		<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!</p>		\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n		https://vimeo.com/257088337		\n			<h2>INSIDIOUS CHAPTER 3</h2>		\n		<p>OnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.</p>		\n										<img width=\"1000\" height=\"800\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset.jpeg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset.jpeg 1000w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-300x240.jpeg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-768x614.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />											\n		https://vimeo.com/130807026		\n			<h1>VIRTUAL REALITY EXPERIENCE</h1>		\n			<h2>SPIDER-MAN HOMECOMING DISPLAY</h2>		\n		<p>Submerse yourself in the world of your friendly neighborhood Spider-Man in this fun and thrilling VR Theatrical Display.  Based on the all-new 2017 film, the Spider-Man Homecoming VR Experience is a first-person look through the eyes of Spidey himself.</p>		\n										<img width=\"1024\" height=\"711\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-1024x711.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-1024x711.jpg 1024w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-300x208.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-768x533.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n										<img width=\"750\" height=\"1000\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834.jpg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834-225x300.jpg 225w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n										<img width=\"750\" height=\"750\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788.jpg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788-150x150.jpg 150w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788-300x300.jpg 300w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n			<h2>THE STRANGERS PREY AT NIGHT</h2>		\n			<h2>GRAND FORMAT PHOTO-OP STANDEE</h2>		\n			<h1>MARKETING AT ITS FINEST, TAILORED FOR SOCIAL MEDIA</h1>		\n		<p>This theatrical display allows fans to take photos with Dollface, Pin-up Girl, the Man in the Mask and share their photos on social media.</p>		\n										<img width=\"942\" height=\"703\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003.jpg 942w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003-300x224.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003-768x573.jpg 768w\" sizes=\"(max-width: 942px) 100vw, 942px\" />											\n										<img width=\"950\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-950x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-950x1024.jpg 950w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-278x300.jpg 278w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-768x828.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n.jpg 1000w\" sizes=\"(max-width: 950px) 100vw, 950px\" />											\n										<img width=\"1024\" height=\"576\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-1024x576.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-1024x576.jpg 1024w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-300x169.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-768x432.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01.jpg 1280w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n			<h4>Our company is a collective of amazing people striving to build delightful products.</h4>		\n		<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.</p>		\n			<a href=\"#\" role=\"button\">\n						Read More\n					</a>','Home','','inherit','closed','closed','','5-revision-v1','','','2019-09-22 00:05:33','2019-09-22 00:05:33','',5,'http://23.235.208.11/~ondisp5/wp/2019/09/22/5-revision-v1/',0,'revision','',0),(505,1,'2019-09-22 00:14:03','2019-09-22 00:14:03','<h2>#WHAT\'S COOL</h2>		\n			<h2>INNOVATIONS FROM ONDISPLAY CREATIVE</h2>		\n			<h1>LIVING STANDEES HAUNTING THEATERS</h1>		\n			<h3>ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS</h3>		\n			<h2>INSIDIOUS – THE LAST KEY</h2>		\n		<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!</p>		\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n		https://vimeo.com/257088337		\n			<h2>INSIDIOUS CHAPTER 3</h2>		\n		<p>OnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.</p>		\n										<img width=\"1000\" height=\"800\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset.jpeg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset.jpeg 1000w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-300x240.jpeg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-768x614.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />											\n		https://vimeo.com/130807026		\n			<h1>VIRTUAL REALITY EXPERIENCE</h1>		\n			<h2>SPIDER-MAN HOMECOMING DISPLAY</h2>		\n		<p>Submerse yourself in the world of your friendly neighborhood Spider-Man in this fun and thrilling VR Theatrical Display.  Based on the all-new 2017 film, the Spider-Man Homecoming VR Experience is a first-person look through the eyes of Spidey himself.</p>		\n										<img width=\"1024\" height=\"711\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-1024x711.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-1024x711.jpg 1024w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-300x208.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-768x533.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n										<img width=\"750\" height=\"1000\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834.jpg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834-225x300.jpg 225w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n										<img width=\"750\" height=\"750\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788.jpg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788-150x150.jpg 150w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788-300x300.jpg 300w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n			<h2>THE STRANGERS PREY AT NIGHT</h2>		\n			<h2>GRAND FORMAT PHOTO-OP STANDEE</h2>		\n			<h1>MARKETING AT ITS FINEST, TAILORED FOR SOCIAL MEDIA</h1>		\n		<p>This theatrical display allows fans to take photos with Dollface, Pin-up Girl, the Man in the Mask and share their photos on social media.</p>		\n										<img width=\"942\" height=\"703\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003.jpg 942w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003-300x224.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003-768x573.jpg 768w\" sizes=\"(max-width: 942px) 100vw, 942px\" />											\n										<img width=\"950\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-950x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-950x1024.jpg 950w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-278x300.jpg 278w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-768x828.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n.jpg 1000w\" sizes=\"(max-width: 950px) 100vw, 950px\" />											\n										<img width=\"1024\" height=\"576\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-1024x576.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-1024x576.jpg 1024w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-300x169.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-768x432.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01.jpg 1280w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n			<h4>Our company is a collective of amazing people striving to build delightful products.</h4>		\n		<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.</p>		\n			<a href=\"#\" role=\"button\">\n						Read More\n					</a>','Home','','inherit','closed','closed','','5-revision-v1','','','2019-09-22 00:14:03','2019-09-22 00:14:03','',5,'http://23.235.208.11/~ondisp5/wp/2019/09/22/5-revision-v1/',0,'revision','',0),(506,1,'2019-09-22 00:14:29','2019-09-22 00:14:29','<h2>#WHAT\'S COOL</h2>		\n			<h2>INNOVATIONS FROM ONDISPLAY CREATIVE</h2>		\n			<h1>LIVING STANDEES HAUNTING THEATERS</h1>		\n			<h3>ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS</h3>		\n			<h2>INSIDIOUS – THE LAST KEY</h2>		\n		<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!</p>		\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n		https://vimeo.com/257088337		\n			<h2>INSIDIOUS CHAPTER 3</h2>		\n		<p>OnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.</p>		\n										<img width=\"1000\" height=\"800\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset.jpeg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset.jpeg 1000w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-300x240.jpeg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-768x614.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />											\n		https://vimeo.com/130807026		\n			<h1>VIRTUAL REALITY EXPERIENCE</h1>		\n			<h2>SPIDER-MAN HOMECOMING DISPLAY</h2>		\n		<p>Submerse yourself in the world of your friendly neighborhood Spider-Man in this fun and thrilling VR Theatrical Display.  Based on the all-new 2017 film, the Spider-Man Homecoming VR Experience is a first-person look through the eyes of Spidey himself.</p>		\n										<img width=\"1024\" height=\"711\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-1024x711.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-1024x711.jpg 1024w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-300x208.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-768x533.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n										<img width=\"750\" height=\"1000\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834.jpg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834-225x300.jpg 225w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n										<img width=\"750\" height=\"750\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788.jpg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788-150x150.jpg 150w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788-300x300.jpg 300w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n			<h2>THE STRANGERS PREY AT NIGHT</h2>		\n			<h2>GRAND FORMAT PHOTO-OP STANDEE</h2>		\n			<h1>MARKETING AT ITS FINEST, TAILORED FOR SOCIAL MEDIA</h1>		\n		<p>This theatrical display allows fans to take photos with Dollface, Pin-up Girl, the Man in the Mask and share their photos on social media.</p>		\n										<img width=\"942\" height=\"703\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003.jpg 942w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003-300x224.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003-768x573.jpg 768w\" sizes=\"(max-width: 942px) 100vw, 942px\" />											\n										<img width=\"950\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-950x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-950x1024.jpg 950w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-278x300.jpg 278w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-768x828.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n.jpg 1000w\" sizes=\"(max-width: 950px) 100vw, 950px\" />											\n										<img width=\"1024\" height=\"576\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-1024x576.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-1024x576.jpg 1024w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-300x169.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-768x432.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01.jpg 1280w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n			<h4>Our company is a collective of amazing people striving to build delightful products.</h4>		\n		<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.</p>		\n			<a href=\"#\" role=\"button\">\n						Read More\n					</a>','Home','','inherit','closed','closed','','5-revision-v1','','','2019-09-22 00:14:29','2019-09-22 00:14:29','',5,'http://23.235.208.11/~ondisp5/wp/2019/09/22/5-revision-v1/',0,'revision','',0),(507,1,'2019-09-22 00:15:38','2019-09-22 00:15:38','<h2>#WHAT\'S COOL</h2>		\n			<h2>INNOVATIONS FROM ONDISPLAY CREATIVE</h2>		\n			<h1>LIVING STANDEES HAUNTING THEATERS</h1>		\n			<h3>ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS</h3>		\n			<h2>INSIDIOUS – THE LAST KEY</h2>		\n		<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!</p>		\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n		https://vimeo.com/257088337		\n			<h2>INSIDIOUS CHAPTER 3</h2>		\n		<p>OnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.</p>		\n										<img width=\"1000\" height=\"800\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset.jpeg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset.jpeg 1000w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-300x240.jpeg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-768x614.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />											\n		https://vimeo.com/130807026		\n			<h1>VIRTUAL REALITY EXPERIENCE</h1>		\n			<h2>SPIDER-MAN HOMECOMING DISPLAY</h2>		\n		<p>Submerse yourself in the world of your friendly neighborhood Spider-Man in this fun and thrilling VR Theatrical Display.  Based on the all-new 2017 film, the Spider-Man Homecoming VR Experience is a first-person look through the eyes of Spidey himself.</p>		\n										<img width=\"1024\" height=\"711\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-1024x711.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-1024x711.jpg 1024w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-300x208.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-768x533.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n										<img width=\"750\" height=\"1000\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834.jpg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834-225x300.jpg 225w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n										<img width=\"750\" height=\"750\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788.jpg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788-150x150.jpg 150w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788-300x300.jpg 300w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n			<h2>THE STRANGERS PREY AT NIGHT</h2>		\n			<h2>GRAND FORMAT PHOTO-OP STANDEE</h2>		\n			<h1>MARKETING AT ITS FINEST, TAILORED FOR SOCIAL MEDIA</h1>		\n		<p>This theatrical display allows fans to take photos with Dollface, Pin-up Girl, the Man in the Mask and share their photos on social media.</p>		\n										<img width=\"942\" height=\"703\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003.jpg 942w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003-300x224.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003-768x573.jpg 768w\" sizes=\"(max-width: 942px) 100vw, 942px\" />											\n										<img width=\"950\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-950x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-950x1024.jpg 950w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-278x300.jpg 278w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-768x828.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n.jpg 1000w\" sizes=\"(max-width: 950px) 100vw, 950px\" />											\n										<img width=\"1024\" height=\"576\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-1024x576.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-1024x576.jpg 1024w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-300x169.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-768x432.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01.jpg 1280w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n			<h4>Our company is a collective of amazing people striving to build delightful products.</h4>		\n		<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.</p>		\n			<a href=\"#\" role=\"button\">\n						Read More\n					</a>','Home','','inherit','closed','closed','','5-revision-v1','','','2019-09-22 00:15:38','2019-09-22 00:15:38','',5,'http://23.235.208.11/~ondisp5/wp/2019/09/22/5-revision-v1/',0,'revision','',0),(508,1,'2019-09-22 00:16:33','2019-09-22 00:16:33','<h2>#WHAT\'S COOL</h2>		\n			<h2>INNOVATIONS FROM ONDISPLAY CREATIVE</h2>		\n			<h1>LIVING STANDEES HAUNTING THEATERS</h1>		\n			<h3>ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS</h3>		\n			<h2>INSIDIOUS – THE LAST KEY</h2>		\n		<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!</p>		\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n		https://vimeo.com/257088337		\n			<h2>INSIDIOUS CHAPTER 3</h2>		\n		<p>OnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.</p>		\n										<img width=\"1000\" height=\"800\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset.jpeg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset.jpeg 1000w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-300x240.jpeg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-768x614.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />											\n		https://vimeo.com/130807026		\n			<h1>VIRTUAL REALITY EXPERIENCE</h1>		\n			<h2>SPIDER-MAN HOMECOMING DISPLAY</h2>		\n		<p>Submerse yourself in the world of your friendly neighborhood Spider-Man in this fun and thrilling VR Theatrical Display.  Based on the all-new 2017 film, the Spider-Man Homecoming VR Experience is a first-person look through the eyes of Spidey himself.</p>		\n										<img width=\"1024\" height=\"711\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-1024x711.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-1024x711.jpg 1024w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-300x208.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-768x533.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n										<img width=\"750\" height=\"1000\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834.jpg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834-225x300.jpg 225w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n										<img width=\"750\" height=\"750\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788.jpg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788-150x150.jpg 150w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788-300x300.jpg 300w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n			<h2>THE STRANGERS PREY AT NIGHT</h2>		\n			<h2>GRAND FORMAT PHOTO-OP STANDEE</h2>		\n			<h1>MARKETING AT ITS FINEST, TAILORED FOR SOCIAL MEDIA</h1>		\n		<p>This theatrical display allows fans to take photos with Dollface, Pin-up Girl, the Man in the Mask and share their photos on social media.</p>		\n										<img width=\"942\" height=\"703\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003.jpg 942w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003-300x224.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003-768x573.jpg 768w\" sizes=\"(max-width: 942px) 100vw, 942px\" />											\n										<img width=\"950\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-950x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-950x1024.jpg 950w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-278x300.jpg 278w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-768x828.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n.jpg 1000w\" sizes=\"(max-width: 950px) 100vw, 950px\" />											\n										<img width=\"1024\" height=\"576\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-1024x576.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-1024x576.jpg 1024w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-300x169.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-768x432.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01.jpg 1280w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n			<h4>Our company is a collective of amazing people striving to build delightful products.</h4>		\n		<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.</p>		\n			<a href=\"#\" role=\"button\">\n						Read More\n					</a>','Home','','inherit','closed','closed','','5-revision-v1','','','2019-09-22 00:16:33','2019-09-22 00:16:33','',5,'http://23.235.208.11/~ondisp5/wp/2019/09/22/5-revision-v1/',0,'revision','',0),(509,1,'2019-09-22 00:18:25','2019-09-22 00:18:25','<h2>#WHAT\'S COOL</h2>		\n			<h2>INNOVATIONS FROM ONDISPLAY CREATIVE</h2>		\n			<h1>LIVING STANDEES HAUNTING THEATERS</h1>		\n			<h3>ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS</h3>		\n			<h2>INSIDIOUS – THE LAST KEY</h2>		\n		<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!</p>		\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n		https://vimeo.com/257088337		\n			<h2>INSIDIOUS CHAPTER 3</h2>		\n		<p>OnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.</p>		\n										<img width=\"1000\" height=\"800\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset.jpeg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset.jpeg 1000w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-300x240.jpeg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-768x614.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />											\n		https://vimeo.com/130807026		\n			<h1>VIRTUAL REALITY EXPERIENCE</h1>		\n			<h2>SPIDER-MAN HOMECOMING DISPLAY</h2>		\n		<p>Submerse yourself in the world of your friendly neighborhood Spider-Man in this fun and thrilling VR Theatrical Display.  Based on the all-new 2017 film, the Spider-Man Homecoming VR Experience is a first-person look through the eyes of Spidey himself.</p>		\n										<img width=\"1024\" height=\"711\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-1024x711.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-1024x711.jpg 1024w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-300x208.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-768x533.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n										<img width=\"750\" height=\"1000\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834.jpg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834-225x300.jpg 225w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n										<img width=\"750\" height=\"750\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788.jpg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788-150x150.jpg 150w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788-300x300.jpg 300w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n			<h2>THE STRANGERS PREY AT NIGHT</h2>		\n			<h2>GRAND FORMAT PHOTO-OP STANDEE</h2>		\n			<h1>MARKETING AT ITS FINEST, TAILORED FOR SOCIAL MEDIA</h1>		\n		<p>This theatrical display allows fans to take photos with Dollface, Pin-up Girl, the Man in the Mask and share their photos on social media.</p>		\n										<img width=\"942\" height=\"703\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003.jpg 942w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003-300x224.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003-768x573.jpg 768w\" sizes=\"(max-width: 942px) 100vw, 942px\" />											\n										<img width=\"950\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-950x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-950x1024.jpg 950w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-278x300.jpg 278w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-768x828.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n.jpg 1000w\" sizes=\"(max-width: 950px) 100vw, 950px\" />											\n										<img width=\"1024\" height=\"576\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-1024x576.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-1024x576.jpg 1024w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-300x169.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-768x432.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01.jpg 1280w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n			<h4>Our company is a collective of amazing people striving to build delightful products.</h4>		\n		<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.</p>		\n			<a href=\"#\" role=\"button\">\n						Read More\n					</a>','Home','','inherit','closed','closed','','5-revision-v1','','','2019-09-22 00:18:25','2019-09-22 00:18:25','',5,'http://23.235.208.11/~ondisp5/wp/2019/09/22/5-revision-v1/',0,'revision','',0),(510,1,'2019-09-23 03:09:21','2019-09-23 03:09:21','<h2>#WHAT\'S COOL</h2>\n<h2>INNOVATIONS FROM ONDISPLAY CREATIVE</h2>\n<h1>LIVING STANDEES HAUNTING THEATERS</h1>\n<h3>ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS</h3>\n<h2>INSIDIOUS – THE LAST KEY</h2>\nMovie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!\n\n<img src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" width=\"768\" height=\"1024\">\n<img src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" width=\"768\" height=\"1024\">\nhttps://vimeo.com/257088337\n<h2>INSIDIOUS CHAPTER 3</h2>\nOnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.\n\n<img src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset.jpeg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset.jpeg 1000w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-300x240.jpeg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-768x614.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" width=\"1000\" height=\"800\">\nhttps://vimeo.com/130807026\n<h1>VIRTUAL REALITY EXPERIENCE</h1>\n<h2>SPIDER-MAN HOMECOMING DISPLAY</h2>\nSubmerse yourself in the world of your friendly neighborhood Spider-Man in this fun and thrilling VR Theatrical Display.&nbsp;&nbsp;Based on the all-new 2017 film, the Spider-Man Homecoming VR Experience is a first-person look through the eyes of Spidey himself.\n\n<img src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-1024x711.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-1024x711.jpg 1024w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-300x208.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-768x533.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" width=\"1024\" height=\"711\">\n<img src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834.jpg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834-225x300.jpg 225w\" sizes=\"(max-width: 750px) 100vw, 750px\" width=\"750\" height=\"1000\">\n<img src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788.jpg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788-150x150.jpg 150w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788-300x300.jpg 300w\" sizes=\"(max-width: 750px) 100vw, 750px\" width=\"750\" height=\"750\">\n<h2>THE STRANGERS PREY AT NIGHT</h2>\n<h2>GRAND FORMAT PHOTO-OP STANDEE</h2>\n<h1>MARKETING AT ITS FINEST, TAILORED FOR SOCIAL MEDIA</h1>\nThis theatrical display allows fans to take photos with Dollface, Pin-up Girl, the Man in the Mask and share their photos on social media.\n\n<img src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003.jpg 942w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003-300x224.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003-768x573.jpg 768w\" sizes=\"(max-width: 942px) 100vw, 942px\" width=\"942\" height=\"703\">\n<img src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-950x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-950x1024.jpg 950w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-278x300.jpg 278w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-768x828.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n.jpg 1000w\" sizes=\"(max-width: 950px) 100vw, 950px\" width=\"950\" height=\"1024\">\n<img src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-1024x576.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-1024x576.jpg 1024w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-300x169.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-768x432.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01.jpg 1280w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" width=\"1024\" height=\"576\">\n<h4>Our company is a collective of amazing people striving to build delightful products.</h4>\nIt is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.\n\n<a href=\"#\" role=\"button\">\nRead More\n</a>','Home BU3','','publish','closed','closed','','home-4','','','2019-09-23 03:09:22','2019-09-23 03:09:22','',0,'http://23.235.208.11/~ondisp5/wp/?page_id=510',0,'page','',0),(511,1,'2019-09-23 03:09:21','2019-09-23 03:09:21','<h2>#WHAT\'S COOL</h2>\n<h2>INNOVATIONS FROM ONDISPLAY CREATIVE</h2>\n<h1>LIVING STANDEES HAUNTING THEATERS</h1>\n<h3>ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS</h3>\n<h2>INSIDIOUS – THE LAST KEY</h2>\nMovie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!\n\n<img src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" width=\"768\" height=\"1024\">\n<img src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" width=\"768\" height=\"1024\">\nhttps://vimeo.com/257088337\n<h2>INSIDIOUS CHAPTER 3</h2>\nOnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.\n\n<img src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset.jpeg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset.jpeg 1000w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-300x240.jpeg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-768x614.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" width=\"1000\" height=\"800\">\nhttps://vimeo.com/130807026\n<h1>VIRTUAL REALITY EXPERIENCE</h1>\n<h2>SPIDER-MAN HOMECOMING DISPLAY</h2>\nSubmerse yourself in the world of your friendly neighborhood Spider-Man in this fun and thrilling VR Theatrical Display.&nbsp;&nbsp;Based on the all-new 2017 film, the Spider-Man Homecoming VR Experience is a first-person look through the eyes of Spidey himself.\n\n<img src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-1024x711.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-1024x711.jpg 1024w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-300x208.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-768x533.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" width=\"1024\" height=\"711\">\n<img src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834.jpg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834-225x300.jpg 225w\" sizes=\"(max-width: 750px) 100vw, 750px\" width=\"750\" height=\"1000\">\n<img src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788.jpg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788-150x150.jpg 150w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788-300x300.jpg 300w\" sizes=\"(max-width: 750px) 100vw, 750px\" width=\"750\" height=\"750\">\n<h2>THE STRANGERS PREY AT NIGHT</h2>\n<h2>GRAND FORMAT PHOTO-OP STANDEE</h2>\n<h1>MARKETING AT ITS FINEST, TAILORED FOR SOCIAL MEDIA</h1>\nThis theatrical display allows fans to take photos with Dollface, Pin-up Girl, the Man in the Mask and share their photos on social media.\n\n<img src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003.jpg 942w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003-300x224.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003-768x573.jpg 768w\" sizes=\"(max-width: 942px) 100vw, 942px\" width=\"942\" height=\"703\">\n<img src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-950x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-950x1024.jpg 950w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-278x300.jpg 278w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-768x828.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n.jpg 1000w\" sizes=\"(max-width: 950px) 100vw, 950px\" width=\"950\" height=\"1024\">\n<img src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-1024x576.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-1024x576.jpg 1024w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-300x169.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-768x432.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01.jpg 1280w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" width=\"1024\" height=\"576\">\n<h4>Our company is a collective of amazing people striving to build delightful products.</h4>\nIt is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.\n\n<a href=\"#\" role=\"button\">\nRead More\n</a>','Home BU3','','inherit','closed','closed','','510-revision-v1','','','2019-09-23 03:09:21','2019-09-23 03:09:21','',510,'http://23.235.208.11/~ondisp5/wp/2019/09/23/510-revision-v1/',0,'revision','',0),(522,1,'2019-09-23 04:18:07','2019-09-23 04:18:07','<h2>#WHAT\'S COOL</h2>		\n			<h2>INNOVATIONS FROM ONDISPLAY CREATIVE</h2>		\n			<h1>LIVING STANDEES HAUNTING THEATERS</h1>		\n			<h3>ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS</h3>		\n			<h2>INSIDIOUS – THE LAST KEY</h2>		\n		<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!</p>		\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n		https://vimeo.com/257088337		\n			<h2>INSIDIOUS CHAPTER 3</h2>		\n		<p>OnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.</p>		\n										<img width=\"1000\" height=\"800\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset.jpeg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset.jpeg 1000w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-300x240.jpeg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-768x614.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />											\n		https://vimeo.com/130807026		\n			<h1>VIRTUAL REALITY EXPERIENCE</h1>		\n			<h2>SPIDER-MAN HOMECOMING DISPLAY</h2>		\n		<p>Submerse yourself in the world of your friendly neighborhood Spider-Man in this fun and thrilling VR Theatrical Display.  Based on the all-new 2017 film, the Spider-Man Homecoming VR Experience is a first-person look through the eyes of Spidey himself.</p>		\n										<img width=\"1024\" height=\"711\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-1024x711.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-1024x711.jpg 1024w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-300x208.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-768x533.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n										<img width=\"750\" height=\"1000\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834.jpg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834-225x300.jpg 225w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n										<img width=\"750\" height=\"750\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788.jpg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788-150x150.jpg 150w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788-300x300.jpg 300w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n			<h2>THE STRANGERS PREY AT NIGHT</h2>		\n			<h2>GRAND FORMAT PHOTO-OP STANDEE</h2>		\n			<h1>MARKETING AT ITS FINEST, TAILORED FOR SOCIAL MEDIA</h1>		\n		<p>This theatrical display allows fans to take photos with Dollface, Pin-up Girl, the Man in the Mask and share their photos on social media.</p>		\n										<img width=\"942\" height=\"703\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003.jpg 942w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003-300x224.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003-768x573.jpg 768w\" sizes=\"(max-width: 942px) 100vw, 942px\" />											\n										<img width=\"950\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-950x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-950x1024.jpg 950w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-278x300.jpg 278w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-768x828.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n.jpg 1000w\" sizes=\"(max-width: 950px) 100vw, 950px\" />											\n										<img width=\"1024\" height=\"576\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-1024x576.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-1024x576.jpg 1024w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-300x169.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-768x432.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01.jpg 1280w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n			<h2>THEATRICAL DISPLAYS</h2>		\n			<h2>FREE BIRDS – RESIN DISPLAY</h2>		\n			<h1>THEATRICAL DISPLAYS</h1>		\n		<p>OnDisplay Creative takes pride in its long history of leading the Entertainment Industry in creating and producing eye catching displays.</p>		\n										<img width=\"1024\" height=\"711\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/47Meters_02-1024x711.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/47Meters_02-1024x711.jpg 1024w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/47Meters_02-300x208.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/47Meters_02-768x533.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n										<img width=\"750\" height=\"1000\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/DFCV6gdXgAAoGDM.jpeg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/DFCV6gdXgAAoGDM.jpeg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/DFCV6gdXgAAoGDM-225x300.jpeg 225w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n										<img width=\"750\" height=\"1000\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/DEI2HYnW0AEERBl.jpeg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/DEI2HYnW0AEERBl.jpeg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/DEI2HYnW0AEERBl-225x300.jpeg 225w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n							Previous\n							Next\n			<h4>Our company is a collective of amazing people striving to build delightful products.</h4>		\n		<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.</p>		\n			<a href=\"#\" role=\"button\">\n						Read More\n					</a>','Home','','inherit','closed','closed','','5-revision-v1','','','2019-09-23 04:18:07','2019-09-23 04:18:07','',5,'http://23.235.208.11/~ondisp5/wp/2019/09/23/5-revision-v1/',0,'revision','',0),(516,1,'2019-09-23 03:17:29','2019-09-23 03:17:29','<h2>#WHAT\'S COOL</h2>		\n			<h2>INNOVATIONS FROM ONDISPLAY CREATIVE</h2>		\n			<h1>LIVING STANDEES HAUNTING THEATERS</h1>		\n			<h3>ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS</h3>		\n			<h2>INSIDIOUS – THE LAST KEY</h2>		\n		<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!</p>		\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n		https://vimeo.com/257088337		\n			<h2>INSIDIOUS CHAPTER 3</h2>		\n		<p>OnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.</p>		\n										<img width=\"1000\" height=\"800\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset.jpeg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset.jpeg 1000w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-300x240.jpeg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-768x614.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />											\n		https://vimeo.com/130807026		\n			<h1>VIRTUAL REALITY EXPERIENCE</h1>		\n			<h2>SPIDER-MAN HOMECOMING DISPLAY</h2>		\n		<p>Submerse yourself in the world of your friendly neighborhood Spider-Man in this fun and thrilling VR Theatrical Display.  Based on the all-new 2017 film, the Spider-Man Homecoming VR Experience is a first-person look through the eyes of Spidey himself.</p>		\n										<img width=\"1024\" height=\"711\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-1024x711.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-1024x711.jpg 1024w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-300x208.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-768x533.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n										<img width=\"750\" height=\"1000\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834.jpg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834-225x300.jpg 225w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n										<img width=\"750\" height=\"750\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788.jpg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788-150x150.jpg 150w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788-300x300.jpg 300w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n			<h2>THE STRANGERS PREY AT NIGHT</h2>		\n			<h2>GRAND FORMAT PHOTO-OP STANDEE</h2>		\n			<h1>MARKETING AT ITS FINEST, TAILORED FOR SOCIAL MEDIA</h1>		\n		<p>This theatrical display allows fans to take photos with Dollface, Pin-up Girl, the Man in the Mask and share their photos on social media.</p>		\n										<img width=\"942\" height=\"703\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003.jpg 942w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003-300x224.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003-768x573.jpg 768w\" sizes=\"(max-width: 942px) 100vw, 942px\" />											\n										<img width=\"950\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-950x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-950x1024.jpg 950w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-278x300.jpg 278w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-768x828.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n.jpg 1000w\" sizes=\"(max-width: 950px) 100vw, 950px\" />											\n										<img width=\"1024\" height=\"576\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-1024x576.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-1024x576.jpg 1024w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-300x169.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-768x432.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01.jpg 1280w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n			<h2>THEATRICAL DISPLAYS</h2>		\n			<h2>FREE BIRDS – RESIN DISPLAY</h2>		\n			<h1>THEATRICAL DISPLAYS</h1>		\n		<p>OnDisplay Creative takes pride in its long history of leading the Entertainment Industry in creating and producing eye catching displays.</p>		\n										<img width=\"942\" height=\"703\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003.jpg 942w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003-300x224.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003-768x573.jpg 768w\" sizes=\"(max-width: 942px) 100vw, 942px\" />											\n										<img width=\"950\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-950x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-950x1024.jpg 950w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-278x300.jpg 278w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-768x828.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n.jpg 1000w\" sizes=\"(max-width: 950px) 100vw, 950px\" />											\n										<img width=\"1024\" height=\"576\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-1024x576.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-1024x576.jpg 1024w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-300x169.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-768x432.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01.jpg 1280w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n			<h4>Our company is a collective of amazing people striving to build delightful products.</h4>		\n		<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.</p>		\n			<a href=\"#\" role=\"button\">\n						Read More\n					</a>','Home','','inherit','closed','closed','','5-revision-v1','','','2019-09-23 03:17:29','2019-09-23 03:17:29','',5,'http://23.235.208.11/~ondisp5/wp/2019/09/23/5-revision-v1/',0,'revision','',0),(515,1,'2019-09-23 03:16:26','2019-09-23 03:16:26','','FREEBIRDS_V1B','','inherit','open','closed','','freebirds_v1b','','','2019-09-23 03:16:26','2019-09-23 03:16:26','',5,'http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/FREEBIRDS_V1B.jpg',0,'attachment','image/jpeg',0),(521,1,'2019-09-23 04:17:26','2019-09-23 04:17:26','','Spidey_Home_V3','','inherit','open','closed','','spidey_home_v3','','','2019-09-23 04:17:26','2019-09-23 04:17:26','',5,'http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V3.jpg',0,'attachment','image/jpeg',0),(518,1,'2019-09-23 04:04:03','2019-09-23 04:04:03','','47Meters_02','','inherit','open','closed','','47meters_02','','','2019-09-23 04:04:03','2019-09-23 04:04:03','',5,'http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/47Meters_02.jpg',0,'attachment','image/jpeg',0),(519,1,'2019-09-23 04:04:44','2019-09-23 04:04:44','','DEI2HYnW0AEERBl','','inherit','open','closed','','dei2hynw0aeerbl','','','2019-09-23 04:04:44','2019-09-23 04:04:44','',5,'http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/DEI2HYnW0AEERBl.jpeg',0,'attachment','image/jpeg',0),(520,1,'2019-09-23 04:04:48','2019-09-23 04:04:48','','DFCV6gdXgAAoGDM','','inherit','open','closed','','dfcv6gdxgaaogdm','','','2019-09-23 04:04:48','2019-09-23 04:04:48','',5,'http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/DFCV6gdXgAAoGDM.jpeg',0,'attachment','image/jpeg',0),(534,1,'2019-09-23 04:26:36','2019-09-23 04:26:36','<h2>#WHAT\'S COOL</h2>		\n			<h2>INNOVATIONS FROM ONDISPLAY CREATIVE</h2>		\n			<h1>LIVING STANDEES HAUNTING THEATERS</h1>		\n			<h3>ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS</h3>		\n			<h2>INSIDIOUS – THE LAST KEY</h2>		\n		<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!</p>		\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n		https://vimeo.com/257088337		\n			<h2>INSIDIOUS CHAPTER 3</h2>		\n		<p>OnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.</p>		\n										<img width=\"1000\" height=\"800\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset.jpeg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset.jpeg 1000w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-300x240.jpeg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-768x614.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />											\n		https://vimeo.com/130807026		\n			<h1>VIRTUAL REALITY EXPERIENCE</h1>		\n			<h2>SPIDER-MAN HOMECOMING DISPLAY</h2>		\n		<p>Submerse yourself in the world of your friendly neighborhood Spider-Man in this fun and thrilling VR Theatrical Display.  Based on the all-new 2017 film, the Spider-Man Homecoming VR Experience is a first-person look through the eyes of Spidey himself.</p>		\n										<img width=\"1024\" height=\"711\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-1024x711.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-1024x711.jpg 1024w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-300x208.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-768x533.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n										<img width=\"750\" height=\"1000\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834.jpg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834-225x300.jpg 225w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n										<img width=\"750\" height=\"750\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788.jpg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788-150x150.jpg 150w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788-300x300.jpg 300w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n			<h2>THE STRANGERS PREY AT NIGHT</h2>		\n			<h2>GRAND FORMAT PHOTO-OP STANDEE</h2>		\n			<h1>MARKETING AT ITS FINEST, TAILORED FOR SOCIAL MEDIA</h1>		\n		<p>This theatrical display allows fans to take photos with Dollface, Pin-up Girl, the Man in the Mask and share their photos on social media.</p>		\n										<img width=\"942\" height=\"703\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003.jpg 942w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003-300x224.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003-768x573.jpg 768w\" sizes=\"(max-width: 942px) 100vw, 942px\" />											\n										<img width=\"950\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-950x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-950x1024.jpg 950w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-278x300.jpg 278w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-768x828.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n.jpg 1000w\" sizes=\"(max-width: 950px) 100vw, 950px\" />											\n										<img width=\"1024\" height=\"576\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-1024x576.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-1024x576.jpg 1024w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-300x169.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-768x432.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01.jpg 1280w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n			<h2>THEATRICAL DISPLAYS</h2>		\n			<h2>FREE BIRDS – RESIN DISPLAY</h2>		\n			<h1>THEATRICAL DISPLAYS</h1>		\n		<p>OnDisplay Creative takes pride in its long history of leading the Entertainment Industry in creating and producing eye catching displays.</p>		\n										<img width=\"1024\" height=\"711\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/47Meters_02-1024x711.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/47Meters_02-1024x711.jpg 1024w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/47Meters_02-300x208.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/47Meters_02-768x533.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n										<img width=\"750\" height=\"1000\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/DFCV6gdXgAAoGDM.jpeg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/DFCV6gdXgAAoGDM.jpeg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/DFCV6gdXgAAoGDM-225x300.jpeg 225w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n										<img width=\"750\" height=\"1000\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/DEI2HYnW0AEERBl.jpeg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/DEI2HYnW0AEERBl.jpeg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/DEI2HYnW0AEERBl-225x300.jpeg 225w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n							Previous\n							Next\n			<h4>Our company is a collective of amazing people striving to build delightful products.</h4>		\n		<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.</p>		\n			<a href=\"#\" role=\"button\">\n						Read More\n					</a>','Home','','inherit','closed','closed','','5-revision-v1','','','2019-09-23 04:26:36','2019-09-23 04:26:36','',5,'http://23.235.208.11/~ondisp5/wp/2019/09/23/5-revision-v1/',0,'revision','',0),(524,1,'2019-09-23 04:20:32','2019-09-23 04:20:32','','WarRoom_V1_002','','inherit','open','closed','','warroom_v1_002','','','2019-09-23 04:20:32','2019-09-23 04:20:32','',5,'http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/WarRoom_V1_002.jpg',0,'attachment','image/jpeg',0),(525,1,'2019-09-23 04:21:20','2019-09-23 04:21:20','','Mada3_01A_002','','inherit','open','closed','','mada3_01a_002','','','2019-09-23 04:21:20','2019-09-23 04:21:20','',5,'http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Mada3_01A_002.jpg',0,'attachment','image/jpeg',0),(526,1,'2019-09-23 04:22:02','2019-09-23 04:22:02','','LOOZ_Standee_InTheater_2','','inherit','open','closed','','looz_standee_intheater_2','','','2019-09-23 04:22:02','2019-09-23 04:22:02','',5,'http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/LOOZ_Standee_InTheater_2.jpg',0,'attachment','image/jpeg',0),(527,1,'2019-09-23 04:22:26','2019-09-23 04:22:26','','Thor-2','','inherit','open','closed','','thor-2','','','2019-09-23 04:22:26','2019-09-23 04:22:26','',5,'http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Thor-2.jpg',0,'attachment','image/jpeg',0),(528,1,'2019-09-23 04:23:12','2019-09-23 04:23:12','','Echo_01A','','inherit','open','closed','','echo_01a','','','2019-09-23 04:23:12','2019-09-23 04:23:12','',5,'http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Echo_01A.jpg',0,'attachment','image/jpeg',0),(529,1,'2019-09-23 04:23:54','2019-09-23 04:23:54','','Spidey_Home_V4_002','','inherit','open','closed','','spidey_home_v4_002-2','','','2019-09-23 04:23:54','2019-09-23 04:23:54','',5,'http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-1.jpg',0,'attachment','image/jpeg',0),(530,1,'2019-09-23 04:24:27','2019-09-23 04:24:27','','Hurricane-H_V1','','inherit','open','closed','','hurricane-h_v1','','','2019-09-23 04:24:27','2019-09-23 04:24:27','',5,'http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Hurricane-H_V1.jpg',0,'attachment','image/jpeg',0),(531,1,'2019-09-23 04:24:57','2019-09-23 04:24:57','','Friend_Request','','inherit','open','closed','','friend_request','','','2019-09-23 04:24:57','2019-09-23 04:24:57','',5,'http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Friend_Request.jpg',0,'attachment','image/jpeg',0),(532,1,'2019-09-23 04:25:30','2019-09-23 04:25:30','','TheStrangers_V02_002','','inherit','open','closed','','thestrangers_v02_002','','','2019-09-23 04:25:30','2019-09-23 04:25:30','',5,'http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/TheStrangers_V02_002.jpg',0,'attachment','image/jpeg',0),(533,1,'2019-09-23 04:26:30','2019-09-23 04:26:30','','Kidnap2','','inherit','open','closed','','kidnap2','','','2019-09-23 04:26:30','2019-09-23 04:26:30','',5,'http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Kidnap2.jpg',0,'attachment','image/jpeg',0),(535,1,'2019-09-23 04:27:07','2019-09-23 04:27:07','','RfNight_01A_002','','inherit','open','closed','','rfnight_01a_002','','','2019-09-23 04:27:07','2019-09-23 04:27:07','',5,'http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/RfNight_01A_002.jpg',0,'attachment','image/jpeg',0),(536,1,'2019-09-23 04:27:42','2019-09-23 04:27:42','','AllSaints2_002','','inherit','open','closed','','allsaints2_002','','','2019-09-23 04:27:42','2019-09-23 04:27:42','',5,'http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/AllSaints2_002.jpg',0,'attachment','image/jpeg',0),(537,1,'2019-09-23 04:27:51','2019-09-23 04:27:51','<h2>#WHAT\'S COOL</h2>		\n			<h2>INNOVATIONS FROM ONDISPLAY CREATIVE</h2>		\n			<h1>LIVING STANDEES HAUNTING THEATERS</h1>		\n			<h3>ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS</h3>		\n			<h2>INSIDIOUS – THE LAST KEY</h2>		\n		<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!</p>		\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n		https://vimeo.com/257088337		\n			<h2>INSIDIOUS CHAPTER 3</h2>		\n		<p>OnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.</p>		\n										<img width=\"1000\" height=\"800\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset.jpeg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset.jpeg 1000w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-300x240.jpeg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-768x614.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />											\n		https://vimeo.com/130807026		\n			<h1>VIRTUAL REALITY EXPERIENCE</h1>		\n			<h2>SPIDER-MAN HOMECOMING DISPLAY</h2>		\n		<p>Submerse yourself in the world of your friendly neighborhood Spider-Man in this fun and thrilling VR Theatrical Display.  Based on the all-new 2017 film, the Spider-Man Homecoming VR Experience is a first-person look through the eyes of Spidey himself.</p>		\n										<img width=\"1024\" height=\"711\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-1024x711.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-1024x711.jpg 1024w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-300x208.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-768x533.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n										<img width=\"750\" height=\"1000\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834.jpg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834-225x300.jpg 225w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n										<img width=\"750\" height=\"750\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788.jpg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788-150x150.jpg 150w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788-300x300.jpg 300w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n			<h2>THE STRANGERS PREY AT NIGHT</h2>		\n			<h2>GRAND FORMAT PHOTO-OP STANDEE</h2>		\n			<h1>MARKETING AT ITS FINEST, TAILORED FOR SOCIAL MEDIA</h1>		\n		<p>This theatrical display allows fans to take photos with Dollface, Pin-up Girl, the Man in the Mask and share their photos on social media.</p>		\n										<img width=\"942\" height=\"703\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003.jpg 942w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003-300x224.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003-768x573.jpg 768w\" sizes=\"(max-width: 942px) 100vw, 942px\" />											\n										<img width=\"950\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-950x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-950x1024.jpg 950w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-278x300.jpg 278w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-768x828.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n.jpg 1000w\" sizes=\"(max-width: 950px) 100vw, 950px\" />											\n										<img width=\"1024\" height=\"576\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-1024x576.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-1024x576.jpg 1024w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-300x169.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-768x432.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01.jpg 1280w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n			<h2>THEATRICAL DISPLAYS</h2>		\n			<h2>FREE BIRDS – RESIN DISPLAY</h2>		\n			<h1>THEATRICAL DISPLAYS</h1>		\n		<p>OnDisplay Creative takes pride in its long history of leading the Entertainment Industry in creating and producing eye catching displays.</p>		\n										<img width=\"1024\" height=\"711\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/47Meters_02-1024x711.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/47Meters_02-1024x711.jpg 1024w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/47Meters_02-300x208.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/47Meters_02-768x533.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n										<img width=\"750\" height=\"1000\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/DFCV6gdXgAAoGDM.jpeg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/DFCV6gdXgAAoGDM.jpeg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/DFCV6gdXgAAoGDM-225x300.jpeg 225w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n										<img width=\"750\" height=\"1000\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/DEI2HYnW0AEERBl.jpeg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/DEI2HYnW0AEERBl.jpeg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/DEI2HYnW0AEERBl-225x300.jpeg 225w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n							<a href=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/RfNight_01A_002.jpg\" data-elementor-lightbox-slideshow=\"946f91d\" data-elementor-lightbox-index=\"0\">		\n		</a>						\n							Previous\n							Next\n		</a>						\n			<h4>Our company is a collective of amazing people striving to build delightful products.</h4>		\n		<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.</p>		\n			<a href=\"#\" role=\"button\">\n						Read More\n					</a>','Home','','inherit','closed','closed','','5-revision-v1','','','2019-09-23 04:27:51','2019-09-23 04:27:51','',5,'http://23.235.208.11/~ondisp5/wp/2019/09/23/5-revision-v1/',0,'revision','',0),(538,1,'2019-09-23 04:28:39','2019-09-23 04:28:39','<h2>#WHAT\'S COOL</h2>		\n			<h2>INNOVATIONS FROM ONDISPLAY CREATIVE</h2>		\n			<h1>LIVING STANDEES HAUNTING THEATERS</h1>		\n			<h3>ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS</h3>		\n			<h2>INSIDIOUS – THE LAST KEY</h2>		\n		<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!</p>		\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n		https://vimeo.com/257088337		\n			<h2>INSIDIOUS CHAPTER 3</h2>		\n		<p>OnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.</p>		\n										<img width=\"1000\" height=\"800\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset.jpeg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset.jpeg 1000w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-300x240.jpeg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-768x614.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />											\n		https://vimeo.com/130807026		\n			<h1>VIRTUAL REALITY EXPERIENCE</h1>		\n			<h2>SPIDER-MAN HOMECOMING DISPLAY</h2>		\n		<p>Submerse yourself in the world of your friendly neighborhood Spider-Man in this fun and thrilling VR Theatrical Display.  Based on the all-new 2017 film, the Spider-Man Homecoming VR Experience is a first-person look through the eyes of Spidey himself.</p>		\n										<img width=\"1024\" height=\"711\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-1024x711.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-1024x711.jpg 1024w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-300x208.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-768x533.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n										<img width=\"750\" height=\"1000\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834.jpg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834-225x300.jpg 225w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n										<img width=\"750\" height=\"750\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788.jpg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788-150x150.jpg 150w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788-300x300.jpg 300w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n			<h2>THE STRANGERS PREY AT NIGHT</h2>		\n			<h2>GRAND FORMAT PHOTO-OP STANDEE</h2>		\n			<h1>MARKETING AT ITS FINEST, TAILORED FOR SOCIAL MEDIA</h1>		\n		<p>This theatrical display allows fans to take photos with Dollface, Pin-up Girl, the Man in the Mask and share their photos on social media.</p>		\n										<img width=\"942\" height=\"703\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003.jpg 942w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003-300x224.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003-768x573.jpg 768w\" sizes=\"(max-width: 942px) 100vw, 942px\" />											\n										<img width=\"950\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-950x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-950x1024.jpg 950w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-278x300.jpg 278w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-768x828.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n.jpg 1000w\" sizes=\"(max-width: 950px) 100vw, 950px\" />											\n										<img width=\"1024\" height=\"576\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-1024x576.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-1024x576.jpg 1024w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-300x169.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-768x432.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01.jpg 1280w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n			<h2>THEATRICAL DISPLAYS</h2>		\n			<h2>FREE BIRDS – RESIN DISPLAY</h2>		\n			<h1>THEATRICAL DISPLAYS</h1>		\n		<p>OnDisplay Creative takes pride in its long history of leading the Entertainment Industry in creating and producing eye catching displays.</p>		\n										<img width=\"1024\" height=\"711\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/47Meters_02-1024x711.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/47Meters_02-1024x711.jpg 1024w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/47Meters_02-300x208.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/47Meters_02-768x533.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n										<img width=\"750\" height=\"1000\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/DFCV6gdXgAAoGDM.jpeg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/DFCV6gdXgAAoGDM.jpeg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/DFCV6gdXgAAoGDM-225x300.jpeg 225w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n										<img width=\"750\" height=\"1000\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/DEI2HYnW0AEERBl.jpeg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/DEI2HYnW0AEERBl.jpeg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/DEI2HYnW0AEERBl-225x300.jpeg 225w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n							<a href=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/RfNight_01A_002.jpg\" data-elementor-lightbox-slideshow=\"946f91d\" data-elementor-lightbox-index=\"0\">		\n		</a>						\n							Previous\n							Next\n		</a>						\n			<h4>Our company is a collective of amazing people striving to build delightful products.</h4>		\n		<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.</p>		\n			<a href=\"#\" role=\"button\">\n						Read More\n					</a>','Home','','inherit','closed','closed','','5-revision-v1','','','2019-09-23 04:28:39','2019-09-23 04:28:39','',5,'http://23.235.208.11/~ondisp5/wp/2019/09/23/5-revision-v1/',0,'revision','',0),(539,1,'2019-09-23 04:29:08','2019-09-23 04:29:08','<h2>#WHAT\'S COOL</h2>		\n			<h2>INNOVATIONS FROM ONDISPLAY CREATIVE</h2>		\n			<h1>LIVING STANDEES HAUNTING THEATERS</h1>		\n			<h3>ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS</h3>		\n			<h2>INSIDIOUS – THE LAST KEY</h2>		\n		<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!</p>		\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n		https://vimeo.com/257088337		\n			<h2>INSIDIOUS CHAPTER 3</h2>		\n		<p>OnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.</p>		\n										<img width=\"1000\" height=\"800\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset.jpeg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset.jpeg 1000w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-300x240.jpeg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-768x614.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />											\n		https://vimeo.com/130807026		\n			<h1>VIRTUAL REALITY EXPERIENCE</h1>		\n			<h2>SPIDER-MAN HOMECOMING DISPLAY</h2>		\n		<p>Submerse yourself in the world of your friendly neighborhood Spider-Man in this fun and thrilling VR Theatrical Display.  Based on the all-new 2017 film, the Spider-Man Homecoming VR Experience is a first-person look through the eyes of Spidey himself.</p>		\n										<img width=\"1024\" height=\"711\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-1024x711.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-1024x711.jpg 1024w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-300x208.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-768x533.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n										<img width=\"750\" height=\"1000\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834.jpg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834-225x300.jpg 225w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n										<img width=\"750\" height=\"750\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788.jpg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788-150x150.jpg 150w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788-300x300.jpg 300w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n			<h2>THE STRANGERS PREY AT NIGHT</h2>		\n			<h2>GRAND FORMAT PHOTO-OP STANDEE</h2>		\n			<h1>MARKETING AT ITS FINEST, TAILORED FOR SOCIAL MEDIA</h1>		\n		<p>This theatrical display allows fans to take photos with Dollface, Pin-up Girl, the Man in the Mask and share their photos on social media.</p>		\n										<img width=\"942\" height=\"703\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003.jpg 942w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003-300x224.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003-768x573.jpg 768w\" sizes=\"(max-width: 942px) 100vw, 942px\" />											\n										<img width=\"950\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-950x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-950x1024.jpg 950w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-278x300.jpg 278w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-768x828.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n.jpg 1000w\" sizes=\"(max-width: 950px) 100vw, 950px\" />											\n										<img width=\"1024\" height=\"576\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-1024x576.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-1024x576.jpg 1024w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-300x169.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-768x432.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01.jpg 1280w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n			<h2>THEATRICAL DISPLAYS</h2>		\n			<h2>FREE BIRDS – RESIN DISPLAY</h2>		\n			<h1>THEATRICAL DISPLAYS</h1>		\n		<p>OnDisplay Creative takes pride in its long history of leading the Entertainment Industry in creating and producing eye catching displays.</p>		\n										<img width=\"1024\" height=\"711\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/47Meters_02-1024x711.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/47Meters_02-1024x711.jpg 1024w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/47Meters_02-300x208.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/47Meters_02-768x533.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n										<img width=\"750\" height=\"1000\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/DFCV6gdXgAAoGDM.jpeg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/DFCV6gdXgAAoGDM.jpeg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/DFCV6gdXgAAoGDM-225x300.jpeg 225w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n										<img width=\"750\" height=\"1000\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/DEI2HYnW0AEERBl.jpeg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/DEI2HYnW0AEERBl.jpeg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/DEI2HYnW0AEERBl-225x300.jpeg 225w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n							<a href=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/RfNight_01A_002.jpg\" data-elementor-lightbox-slideshow=\"946f91d\" data-elementor-lightbox-index=\"0\">		\n		</a>						\n							Previous\n							Next\n		</a>						\n			<h4>Our company is a collective of amazing people striving to build delightful products.</h4>		\n		<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.</p>		\n			<a href=\"#\" role=\"button\">\n						Read More\n					</a>','Home','','inherit','closed','closed','','5-revision-v1','','','2019-09-23 04:29:08','2019-09-23 04:29:08','',5,'http://23.235.208.11/~ondisp5/wp/2019/09/23/5-revision-v1/',0,'revision','',0),(545,1,'2019-09-24 13:58:01','2019-09-24 13:58:01','<h2>#WHAT\'S COOL</h2>\n<h2>INNOVATIONS FROM ONDISPLAY CREATIVE</h2>\n<h1>LIVING STANDEES HAUNTING THEATERS</h1>\n<h3>ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS</h3>\n<h2>INSIDIOUS – THE LAST KEY</h2>\nMovie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!\n\n<img src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" width=\"768\" height=\"1024\">\n<img src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" width=\"768\" height=\"1024\">\nhttps://vimeo.com/257088337\n<h2>INSIDIOUS CHAPTER 3</h2>\nOnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.\n\n<img src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset.jpeg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset.jpeg 1000w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-300x240.jpeg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-768x614.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" width=\"1000\" height=\"800\">\nhttps://vimeo.com/130807026\n<h1>VIRTUAL REALITY EXPERIENCE</h1>\n<h2>SPIDER-MAN HOMECOMING DISPLAY</h2>\nSubmerse yourself in the world of your friendly neighborhood Spider-Man in this fun and thrilling VR Theatrical Display.&nbsp;&nbsp;Based on the all-new 2017 film, the Spider-Man Homecoming VR Experience is a first-person look through the eyes of Spidey himself.\n\n<img src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-1024x711.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-1024x711.jpg 1024w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-300x208.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-768x533.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" width=\"1024\" height=\"711\">\n<img src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834.jpg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834-225x300.jpg 225w\" sizes=\"(max-width: 750px) 100vw, 750px\" width=\"750\" height=\"1000\">\n<img src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788.jpg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788-150x150.jpg 150w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788-300x300.jpg 300w\" sizes=\"(max-width: 750px) 100vw, 750px\" width=\"750\" height=\"750\">\n<h2>THE STRANGERS PREY AT NIGHT</h2>\n<h2>GRAND FORMAT PHOTO-OP STANDEE</h2>\n<h1>MARKETING AT ITS FINEST, TAILORED FOR SOCIAL MEDIA</h1>\nThis theatrical display allows fans to take photos with Dollface, Pin-up Girl, the Man in the Mask and share their photos on social media.\n\n<img src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003.jpg 942w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003-300x224.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003-768x573.jpg 768w\" sizes=\"(max-width: 942px) 100vw, 942px\" width=\"942\" height=\"703\">\n<img src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-950x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-950x1024.jpg 950w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-278x300.jpg 278w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-768x828.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n.jpg 1000w\" sizes=\"(max-width: 950px) 100vw, 950px\" width=\"950\" height=\"1024\">\n<img src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-1024x576.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-1024x576.jpg 1024w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-300x169.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-768x432.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01.jpg 1280w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" width=\"1024\" height=\"576\">\n<h2>THEATRICAL DISPLAYS</h2>\n<h2>FREE BIRDS – RESIN DISPLAY</h2>\n<h1>THEATRICAL DISPLAYS</h1>\nOnDisplay Creative takes pride in its long history of leading the Entertainment Industry in creating and producing eye catching displays.\n\n<img src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/47Meters_02-1024x711.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/47Meters_02-1024x711.jpg 1024w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/47Meters_02-300x208.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/47Meters_02-768x533.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" width=\"1024\" height=\"711\">\n<img src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/DFCV6gdXgAAoGDM.jpeg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/DFCV6gdXgAAoGDM.jpeg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/DFCV6gdXgAAoGDM-225x300.jpeg 225w\" sizes=\"(max-width: 750px) 100vw, 750px\" width=\"750\" height=\"1000\">\n<img src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/DEI2HYnW0AEERBl.jpeg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/DEI2HYnW0AEERBl.jpeg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/DEI2HYnW0AEERBl-225x300.jpeg 225w\" sizes=\"(max-width: 750px) 100vw, 750px\" width=\"750\" height=\"1000\">\n<a href=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/RfNight_01A_002.jpg\" data-elementor-lightbox-slideshow=\"946f91d\" data-elementor-lightbox-index=\"0\">\n</a>\nPrevious\nNext\n<h2>HOME ENTERTAINMENT</h2>\n<h2>THE SECRET LIFE OF PETS</h2>\n<h4>Our company is a collective of amazing people striving to build delightful products.</h4>\nIt is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.\n\n<a href=\"#\" role=\"button\">\nRead More\n</a>','Home','','inherit','closed','closed','','5-revision-v1','','','2019-09-24 13:58:01','2019-09-24 13:58:01','',5,'http://23.235.208.11/~ondisp5/wp/2019/09/24/5-revision-v1/',0,'revision','',0),(543,1,'2019-09-23 04:34:55','2019-09-23 04:34:55','<h2>#WHAT\'S COOL</h2>		\n			<h2>INNOVATIONS FROM ONDISPLAY CREATIVE</h2>		\n			<h1>LIVING STANDEES HAUNTING THEATERS</h1>		\n			<h3>ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS</h3>		\n			<h2>INSIDIOUS – THE LAST KEY</h2>		\n		<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!</p>		\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n		https://vimeo.com/257088337		\n			<h2>INSIDIOUS CHAPTER 3</h2>		\n		<p>OnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.</p>		\n										<img width=\"1000\" height=\"800\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset.jpeg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset.jpeg 1000w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-300x240.jpeg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-768x614.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />											\n		https://vimeo.com/130807026		\n			<h1>VIRTUAL REALITY EXPERIENCE</h1>		\n			<h2>SPIDER-MAN HOMECOMING DISPLAY</h2>		\n		<p>Submerse yourself in the world of your friendly neighborhood Spider-Man in this fun and thrilling VR Theatrical Display.  Based on the all-new 2017 film, the Spider-Man Homecoming VR Experience is a first-person look through the eyes of Spidey himself.</p>		\n										<img width=\"1024\" height=\"711\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-1024x711.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-1024x711.jpg 1024w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-300x208.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-768x533.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n										<img width=\"750\" height=\"1000\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834.jpg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834-225x300.jpg 225w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n										<img width=\"750\" height=\"750\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788.jpg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788-150x150.jpg 150w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788-300x300.jpg 300w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n			<h2>THE STRANGERS PREY AT NIGHT</h2>		\n			<h2>GRAND FORMAT PHOTO-OP STANDEE</h2>		\n			<h1>MARKETING AT ITS FINEST, TAILORED FOR SOCIAL MEDIA</h1>		\n		<p>This theatrical display allows fans to take photos with Dollface, Pin-up Girl, the Man in the Mask and share their photos on social media.</p>		\n										<img width=\"942\" height=\"703\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003.jpg 942w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003-300x224.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003-768x573.jpg 768w\" sizes=\"(max-width: 942px) 100vw, 942px\" />											\n										<img width=\"950\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-950x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-950x1024.jpg 950w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-278x300.jpg 278w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-768x828.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n.jpg 1000w\" sizes=\"(max-width: 950px) 100vw, 950px\" />											\n										<img width=\"1024\" height=\"576\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-1024x576.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-1024x576.jpg 1024w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-300x169.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-768x432.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01.jpg 1280w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n			<h2>THEATRICAL DISPLAYS</h2>		\n			<h2>FREE BIRDS – RESIN DISPLAY</h2>		\n			<h1>THEATRICAL DISPLAYS</h1>		\n		<p>OnDisplay Creative takes pride in its long history of leading the Entertainment Industry in creating and producing eye catching displays.</p>		\n										<img width=\"1024\" height=\"711\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/47Meters_02-1024x711.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/47Meters_02-1024x711.jpg 1024w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/47Meters_02-300x208.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/47Meters_02-768x533.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n										<img width=\"750\" height=\"1000\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/DFCV6gdXgAAoGDM.jpeg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/DFCV6gdXgAAoGDM.jpeg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/DFCV6gdXgAAoGDM-225x300.jpeg 225w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n										<img width=\"750\" height=\"1000\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/DEI2HYnW0AEERBl.jpeg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/DEI2HYnW0AEERBl.jpeg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/DEI2HYnW0AEERBl-225x300.jpeg 225w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n							<a href=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/RfNight_01A_002.jpg\" data-elementor-lightbox-slideshow=\"946f91d\" data-elementor-lightbox-index=\"0\">		\n		</a>						\n							Previous\n							Next\n		</a>						\n			<h2>HOME ENTERTAINMENT</h2>		\n			<h2>THE SECRET LIFE OF PETS</h2>		\n			<h4>Our company is a collective of amazing people striving to build delightful products.</h4>		\n		<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.</p>		\n			<a href=\"#\" role=\"button\">\n						Read More\n					</a>','Home','','inherit','closed','closed','','5-revision-v1','','','2019-09-23 04:34:55','2019-09-23 04:34:55','',5,'http://23.235.208.11/~ondisp5/wp/2019/09/23/5-revision-v1/',0,'revision','',0),(541,1,'2019-09-23 04:33:04','2019-09-23 04:33:04','','PETS_WOW_02_002','','inherit','open','closed','','pets_wow_02_002','','','2019-09-23 04:33:04','2019-09-23 04:33:04','',5,'http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/PETS_WOW_02_002.jpg',0,'attachment','image/jpeg',0),(542,1,'2019-09-23 04:33:58','2019-09-23 04:33:58','','Pets_HomeEnt_FrntP','','inherit','open','closed','','pets_homeent_frntp','','','2019-09-23 04:33:58','2019-09-23 04:33:58','',5,'http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Pets_HomeEnt_FrntP.jpg',0,'attachment','image/jpeg',0),(550,1,'2019-09-25 03:51:08','2019-09-25 03:51:08','<h2>#WHAT\'S COOL</h2>\n<h2>INNOVATIONS FROM ONDISPLAY CREATIVE</h2>\n<h1>LIVING STANDEES HAUNTING THEATERS</h1>\n<h3>ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS</h3>\n<h2>INSIDIOUS – THE LAST KEY</h2>\nMovie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!\n\n<img src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" width=\"768\" height=\"1024\">\n<img src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" width=\"768\" height=\"1024\">\nhttps://vimeo.com/257088337\n<h2>INSIDIOUS CHAPTER 3</h2>\nOnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.\n\n<img src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset.jpeg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset.jpeg 1000w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-300x240.jpeg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-768x614.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" width=\"1000\" height=\"800\">\nhttps://vimeo.com/130807026\n<h1>VIRTUAL REALITY EXPERIENCE</h1>\n<h2>SPIDER-MAN HOMECOMING DISPLAY</h2>\nSubmerse yourself in the world of your friendly neighborhood Spider-Man in this fun and thrilling VR Theatrical Display.&nbsp;&nbsp;Based on the all-new 2017 film, the Spider-Man Homecoming VR Experience is a first-person look through the eyes of Spidey himself.\n\n<img src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-1024x711.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-1024x711.jpg 1024w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-300x208.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-768x533.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" width=\"1024\" height=\"711\">\n<img src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834.jpg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834-225x300.jpg 225w\" sizes=\"(max-width: 750px) 100vw, 750px\" width=\"750\" height=\"1000\">\n<img src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788.jpg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788-150x150.jpg 150w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788-300x300.jpg 300w\" sizes=\"(max-width: 750px) 100vw, 750px\" width=\"750\" height=\"750\">\n<h2>THE STRANGERS PREY AT NIGHT</h2>\n<h2>GRAND FORMAT PHOTO-OP STANDEE</h2>\n<h1>MARKETING AT ITS FINEST, TAILORED FOR SOCIAL MEDIA</h1>\nThis theatrical display allows fans to take photos with Dollface, Pin-up Girl, the Man in the Mask and share their photos on social media.\n\n<img src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003.jpg 942w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003-300x224.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003-768x573.jpg 768w\" sizes=\"(max-width: 942px) 100vw, 942px\" width=\"942\" height=\"703\">\n<img src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-950x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-950x1024.jpg 950w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-278x300.jpg 278w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-768x828.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n.jpg 1000w\" sizes=\"(max-width: 950px) 100vw, 950px\" width=\"950\" height=\"1024\">\n<img src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-1024x576.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-1024x576.jpg 1024w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-300x169.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-768x432.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01.jpg 1280w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" width=\"1024\" height=\"576\">\n<h2>THEATRICAL DISPLAYS</h2>\n<h2>FREE BIRDS – RESIN DISPLAY</h2>\n<h1>THEATRICAL DISPLAYS</h1>\nOnDisplay Creative takes pride in its long history of leading the Entertainment Industry in creating and producing eye catching displays.\n\n<img src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/47Meters_02-1024x711.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/47Meters_02-1024x711.jpg 1024w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/47Meters_02-300x208.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/47Meters_02-768x533.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" width=\"1024\" height=\"711\">\n<img src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/DFCV6gdXgAAoGDM.jpeg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/DFCV6gdXgAAoGDM.jpeg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/DFCV6gdXgAAoGDM-225x300.jpeg 225w\" sizes=\"(max-width: 750px) 100vw, 750px\" width=\"750\" height=\"1000\">\n<img src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/DEI2HYnW0AEERBl.jpeg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/DEI2HYnW0AEERBl.jpeg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/DEI2HYnW0AEERBl-225x300.jpeg 225w\" sizes=\"(max-width: 750px) 100vw, 750px\" width=\"750\" height=\"1000\">\n<a href=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/RfNight_01A_002.jpg\" data-elementor-lightbox-slideshow=\"946f91d\" data-elementor-lightbox-index=\"0\">\n</a>\nPrevious\nNext\n<h2>HOME ENTERTAINMENT</h2>\n<h2>THE SECRET LIFE OF PETS</h2>\n<h4>Our company is a collective of amazing people striving to build delightful products.</h4>\nIt is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.\n\n<a href=\"#\" role=\"button\">\nRead More\n</a>','Home','','inherit','closed','closed','','5-revision-v1','','','2019-09-25 03:51:08','2019-09-25 03:51:08','',5,'http://23.235.208.11/~ondisp5/wp/2019/09/25/5-revision-v1/',0,'revision','',0),(547,1,'2019-09-24 15:34:16','2019-09-24 15:34:16','<h2>#WHAT\'S COOL</h2>		\n			<h2>INNOVATIONS FROM ONDISPLAY CREATIVE</h2>		\n			<h1>LIVING STANDEES HAUNTING THEATERS</h1>		\n			<h3>ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS</h3>		\n			<h2>INSIDIOUS – THE LAST KEY</h2>		\n		<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!</p>		\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n		https://vimeo.com/257088337		\n			<h2>INSIDIOUS CHAPTER 3</h2>		\n		<p>OnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.</p>		\n										<img width=\"1000\" height=\"800\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset.jpeg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset.jpeg 1000w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-300x240.jpeg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-768x614.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />											\n		https://vimeo.com/130807026		\n			<h1>VIRTUAL REALITY EXPERIENCE</h1>		\n			<h2>SPIDER-MAN HOMECOMING DISPLAY</h2>		\n		<p>Submerse yourself in the world of your friendly neighborhood Spider-Man in this fun and thrilling VR Theatrical Display.  Based on the all-new 2017 film, the Spider-Man Homecoming VR Experience is a first-person look through the eyes of Spidey himself.</p>		\n										<img width=\"1024\" height=\"711\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-1024x711.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-1024x711.jpg 1024w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-300x208.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-768x533.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n										<img width=\"750\" height=\"1000\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834.jpg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834-225x300.jpg 225w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n										<img width=\"750\" height=\"750\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788.jpg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788-150x150.jpg 150w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788-300x300.jpg 300w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n			<h2>THE STRANGERS PREY AT NIGHT</h2>		\n			<h2>GRAND FORMAT PHOTO-OP STANDEE</h2>		\n			<h1>MARKETING AT ITS FINEST, TAILORED FOR SOCIAL MEDIA</h1>		\n		<p>This theatrical display allows fans to take photos with Dollface, Pin-up Girl, the Man in the Mask and share their photos on social media.</p>		\n										<img width=\"942\" height=\"703\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003.jpg 942w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003-300x224.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003-768x573.jpg 768w\" sizes=\"(max-width: 942px) 100vw, 942px\" />											\n										<img width=\"950\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-950x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-950x1024.jpg 950w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-278x300.jpg 278w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-768x828.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n.jpg 1000w\" sizes=\"(max-width: 950px) 100vw, 950px\" />											\n										<img width=\"1024\" height=\"576\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-1024x576.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-1024x576.jpg 1024w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-300x169.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-768x432.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01.jpg 1280w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n			<h2>THEATRICAL DISPLAYS</h2>		\n			<h2>FREE BIRDS – RESIN DISPLAY</h2>		\n			<h1>THEATRICAL DISPLAYS</h1>		\n		<p>OnDisplay Creative takes pride in its long history of leading the Entertainment Industry in creating and producing eye catching displays.</p>		\n										<img width=\"1024\" height=\"711\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/47Meters_02-1024x711.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/47Meters_02-1024x711.jpg 1024w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/47Meters_02-300x208.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/47Meters_02-768x533.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n										<img width=\"750\" height=\"1000\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/DFCV6gdXgAAoGDM.jpeg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/DFCV6gdXgAAoGDM.jpeg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/DFCV6gdXgAAoGDM-225x300.jpeg 225w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n										<img width=\"750\" height=\"1000\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/DEI2HYnW0AEERBl.jpeg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/DEI2HYnW0AEERBl.jpeg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/DEI2HYnW0AEERBl-225x300.jpeg 225w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n							<a href=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/RfNight_01A_002.jpg\" data-elementor-lightbox-slideshow=\"946f91d\" data-elementor-lightbox-index=\"0\">		\n		</a>						\n							Previous\n							Next\n		</a>						\n			<h2>HOME ENTERTAINMENT</h2>		\n			<h2>THE SECRET LIFE OF PETS</h2>		\n			<h4>Our company is a collective of amazing people striving to build delightful products.</h4>		\n		<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.</p>		\n			<a href=\"#\" role=\"button\">\n						Read More\n					</a>','Home','','inherit','closed','closed','','5-revision-v1','','','2019-09-24 15:34:16','2019-09-24 15:34:16','',5,'http://23.235.208.11/~ondisp5/wp/2019/09/24/5-revision-v1/',0,'revision','',0),(548,1,'2019-09-24 15:35:06','2019-09-24 15:35:06','<h2>#WHAT\'S COOL</h2>		\n			<h2>INNOVATIONS FROM ONDISPLAY CREATIVE</h2>		\n			<h1>LIVING STANDEES HAUNTING THEATERS</h1>		\n			<h3>ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS</h3>		\n			<h2>INSIDIOUS – THE LAST KEY</h2>		\n		<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!</p>		\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n		https://vimeo.com/257088337		\n			<h2>INSIDIOUS CHAPTER 3</h2>		\n		<p>OnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.</p>		\n										<img width=\"1000\" height=\"800\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset.jpeg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset.jpeg 1000w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-300x240.jpeg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-768x614.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />											\n		https://vimeo.com/130807026		\n			<h1>VIRTUAL REALITY EXPERIENCE</h1>		\n			<h2>SPIDER-MAN HOMECOMING DISPLAY</h2>		\n		<p>Submerse yourself in the world of your friendly neighborhood Spider-Man in this fun and thrilling VR Theatrical Display.  Based on the all-new 2017 film, the Spider-Man Homecoming VR Experience is a first-person look through the eyes of Spidey himself.</p>		\n										<img width=\"1024\" height=\"711\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-1024x711.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-1024x711.jpg 1024w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-300x208.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-768x533.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n										<img width=\"750\" height=\"1000\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834.jpg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834-225x300.jpg 225w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n										<img width=\"750\" height=\"750\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788.jpg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788-150x150.jpg 150w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788-300x300.jpg 300w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n			<h2>THE STRANGERS PREY AT NIGHT</h2>		\n			<h2>GRAND FORMAT PHOTO-OP STANDEE</h2>		\n			<h1>MARKETING AT ITS FINEST, TAILORED FOR SOCIAL MEDIA</h1>		\n		<p>This theatrical display allows fans to take photos with Dollface, Pin-up Girl, the Man in the Mask and share their photos on social media.</p>		\n										<img width=\"942\" height=\"703\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003.jpg 942w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003-300x224.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003-768x573.jpg 768w\" sizes=\"(max-width: 942px) 100vw, 942px\" />											\n										<img width=\"950\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-950x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-950x1024.jpg 950w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-278x300.jpg 278w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-768x828.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n.jpg 1000w\" sizes=\"(max-width: 950px) 100vw, 950px\" />											\n										<img width=\"1024\" height=\"576\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-1024x576.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-1024x576.jpg 1024w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-300x169.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-768x432.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01.jpg 1280w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n			<h2>THEATRICAL DISPLAYS</h2>		\n			<h2>FREE BIRDS – RESIN DISPLAY</h2>		\n			<h1>THEATRICAL DISPLAYS</h1>		\n		<p>OnDisplay Creative takes pride in its long history of leading the Entertainment Industry in creating and producing eye catching displays.</p>		\n										<img width=\"1024\" height=\"711\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/47Meters_02-1024x711.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/47Meters_02-1024x711.jpg 1024w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/47Meters_02-300x208.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/47Meters_02-768x533.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n										<img width=\"750\" height=\"1000\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/DFCV6gdXgAAoGDM.jpeg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/DFCV6gdXgAAoGDM.jpeg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/DFCV6gdXgAAoGDM-225x300.jpeg 225w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n										<img width=\"750\" height=\"1000\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/DEI2HYnW0AEERBl.jpeg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/DEI2HYnW0AEERBl.jpeg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/DEI2HYnW0AEERBl-225x300.jpeg 225w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n							<a href=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/RfNight_01A_002.jpg\" data-elementor-lightbox-slideshow=\"946f91d\" data-elementor-lightbox-index=\"0\">		\n		</a>						\n							Previous\n							Next\n		</a>						\n			<h2>HOME ENTERTAINMENT</h2>		\n			<h2>THE SECRET LIFE OF PETS</h2>		\n			<h4>Our company is a collective of amazing people striving to build delightful products.</h4>		\n		<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.</p>		\n			<a href=\"#\" role=\"button\">\n						Read More\n					</a>','Home','','inherit','closed','closed','','5-revision-v1','','','2019-09-24 15:35:06','2019-09-24 15:35:06','',5,'http://23.235.208.11/~ondisp5/wp/2019/09/24/5-revision-v1/',0,'revision','',0),(552,1,'2019-09-25 03:52:08','2019-09-25 03:52:08','<h2>#WHAT\'S COOL</h2>		\n			<h2>INNOVATIONS FROM ONDISPLAY CREATIVE</h2>		\n			<h1>LIVING STANDEES HAUNTING THEATERS</h1>		\n			<h3>ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS</h3>		\n			<h2>INSIDIOUS – THE LAST KEY</h2>		\n		<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!</p>		\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n		https://vimeo.com/257088337		\n			<h2>INSIDIOUS CHAPTER 3</h2>		\n		<p>OnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.</p>		\n										<img width=\"1000\" height=\"800\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset.jpeg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset.jpeg 1000w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-300x240.jpeg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-768x614.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />											\n		https://vimeo.com/130807026		\n			<h1>VIRTUAL REALITY EXPERIENCE</h1>		\n			<h2>SPIDER-MAN HOMECOMING DISPLAY</h2>		\n		<p>Submerse yourself in the world of your friendly neighborhood Spider-Man in this fun and thrilling VR Theatrical Display.  Based on the all-new 2017 film, the Spider-Man Homecoming VR Experience is a first-person look through the eyes of Spidey himself.</p>		\n										<img width=\"1024\" height=\"711\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-1024x711.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-1024x711.jpg 1024w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-300x208.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-768x533.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n										<img width=\"750\" height=\"1000\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834.jpg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834-225x300.jpg 225w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n										<img width=\"750\" height=\"750\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788.jpg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788-150x150.jpg 150w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788-300x300.jpg 300w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n			<h2>THE STRANGERS PREY AT NIGHT</h2>		\n			<h2>GRAND FORMAT PHOTO-OP STANDEE</h2>		\n			<h1>MARKETING AT ITS FINEST, TAILORED FOR SOCIAL MEDIA</h1>		\n		<p>This theatrical display allows fans to take photos with Dollface, Pin-up Girl, the Man in the Mask and share their photos on social media.</p>		\n										<img width=\"942\" height=\"703\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003.jpg 942w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003-300x224.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003-768x573.jpg 768w\" sizes=\"(max-width: 942px) 100vw, 942px\" />											\n										<img width=\"950\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-950x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-950x1024.jpg 950w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-278x300.jpg 278w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-768x828.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n.jpg 1000w\" sizes=\"(max-width: 950px) 100vw, 950px\" />											\n										<img width=\"1024\" height=\"576\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-1024x576.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-1024x576.jpg 1024w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-300x169.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-768x432.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01.jpg 1280w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n			<h2>THEATRICAL DISPLAYS</h2>		\n			<h2>FREE BIRDS – RESIN DISPLAY</h2>		\n			<h1>THEATRICAL DISPLAYS</h1>		\n		<p>OnDisplay Creative takes pride in its long history of leading the Entertainment Industry in creating and producing eye catching displays.</p>		\n										<img width=\"650\" height=\"751\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/47Meters_02_cropped.jpg.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/47Meters_02_cropped.jpg.jpg 650w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/47Meters_02_cropped.jpg-260x300.jpg 260w\" sizes=\"(max-width: 650px) 100vw, 650px\" />											\n										<img width=\"750\" height=\"1000\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/DFCV6gdXgAAoGDM.jpeg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/DFCV6gdXgAAoGDM.jpeg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/DFCV6gdXgAAoGDM-225x300.jpeg 225w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n										<img width=\"750\" height=\"1000\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/DEI2HYnW0AEERBl.jpeg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/DEI2HYnW0AEERBl.jpeg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/DEI2HYnW0AEERBl-225x300.jpeg 225w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n							<a href=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/RfNight_01A_002.jpg\" data-elementor-lightbox-slideshow=\"946f91d\" data-elementor-lightbox-index=\"0\">		\n		</a>						\n							Previous\n							Next\n		</a>						\n			<h2>HOME ENTERTAINMENT</h2>		\n			<h2>THE SECRET LIFE OF PETS</h2>		\n			<h4>Our company is a collective of amazing people striving to build delightful products.</h4>		\n		<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.</p>		\n			<a href=\"#\" role=\"button\">\n						Read More\n					</a>','Home','','inherit','closed','closed','','5-revision-v1','','','2019-09-25 03:52:08','2019-09-25 03:52:08','',5,'http://23.235.208.11/~ondisp5/wp/2019/09/25/5-revision-v1/',0,'revision','',0),(551,1,'2019-09-25 03:51:47','2019-09-25 03:51:47','<h2>#WHAT\'S COOL</h2>		\n			<h2>INNOVATIONS FROM ONDISPLAY CREATIVE</h2>		\n			<h1>LIVING STANDEES HAUNTING THEATERS</h1>		\n			<h3>ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS</h3>		\n			<h2>INSIDIOUS – THE LAST KEY</h2>		\n		<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!</p>		\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n		https://vimeo.com/257088337		\n			<h2>INSIDIOUS CHAPTER 3</h2>		\n		<p>OnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.</p>		\n										<img width=\"1000\" height=\"800\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset.jpeg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset.jpeg 1000w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-300x240.jpeg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-768x614.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />											\n		https://vimeo.com/130807026		\n			<h1>VIRTUAL REALITY EXPERIENCE</h1>		\n			<h2>SPIDER-MAN HOMECOMING DISPLAY</h2>		\n		<p>Submerse yourself in the world of your friendly neighborhood Spider-Man in this fun and thrilling VR Theatrical Display.  Based on the all-new 2017 film, the Spider-Man Homecoming VR Experience is a first-person look through the eyes of Spidey himself.</p>		\n										<img width=\"1024\" height=\"711\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-1024x711.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-1024x711.jpg 1024w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-300x208.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-768x533.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n										<img width=\"750\" height=\"1000\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834.jpg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834-225x300.jpg 225w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n										<img width=\"750\" height=\"750\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788.jpg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788-150x150.jpg 150w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788-300x300.jpg 300w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n			<h2>THE STRANGERS PREY AT NIGHT</h2>		\n			<h2>GRAND FORMAT PHOTO-OP STANDEE</h2>		\n			<h1>MARKETING AT ITS FINEST, TAILORED FOR SOCIAL MEDIA</h1>		\n		<p>This theatrical display allows fans to take photos with Dollface, Pin-up Girl, the Man in the Mask and share their photos on social media.</p>		\n										<img width=\"942\" height=\"703\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003.jpg 942w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003-300x224.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003-768x573.jpg 768w\" sizes=\"(max-width: 942px) 100vw, 942px\" />											\n										<img width=\"950\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-950x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-950x1024.jpg 950w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-278x300.jpg 278w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-768x828.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n.jpg 1000w\" sizes=\"(max-width: 950px) 100vw, 950px\" />											\n										<img width=\"1024\" height=\"576\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-1024x576.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-1024x576.jpg 1024w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-300x169.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-768x432.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01.jpg 1280w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n			<h2>THEATRICAL DISPLAYS</h2>		\n			<h2>FREE BIRDS – RESIN DISPLAY</h2>		\n			<h1>THEATRICAL DISPLAYS</h1>		\n		<p>OnDisplay Creative takes pride in its long history of leading the Entertainment Industry in creating and producing eye catching displays.</p>		\n										<img width=\"1024\" height=\"711\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/47Meters_02-1024x711.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/47Meters_02-1024x711.jpg 1024w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/47Meters_02-300x208.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/47Meters_02-768x533.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n										<img width=\"750\" height=\"1000\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/DFCV6gdXgAAoGDM.jpeg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/DFCV6gdXgAAoGDM.jpeg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/DFCV6gdXgAAoGDM-225x300.jpeg 225w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n										<img width=\"750\" height=\"1000\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/DEI2HYnW0AEERBl.jpeg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/DEI2HYnW0AEERBl.jpeg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/DEI2HYnW0AEERBl-225x300.jpeg 225w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n							<a href=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/RfNight_01A_002.jpg\" data-elementor-lightbox-slideshow=\"946f91d\" data-elementor-lightbox-index=\"0\">		\n		</a>						\n							Previous\n							Next\n		</a>						\n			<h2>HOME ENTERTAINMENT</h2>		\n			<h2>THE SECRET LIFE OF PETS</h2>		\n			<h4>Our company is a collective of amazing people striving to build delightful products.</h4>		\n		<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.</p>		\n			<a href=\"#\" role=\"button\">\n						Read More\n					</a>','Home','','inherit','closed','closed','','5-revision-v1','','','2019-09-25 03:51:47','2019-09-25 03:51:47','',5,'http://23.235.208.11/~ondisp5/wp/2019/09/25/5-revision-v1/',0,'revision','',0),(560,1,'2019-09-25 04:05:55','2019-09-25 04:05:55','<h2>#WHAT\'S COOL</h2>		\n			<h2>INNOVATIONS FROM ONDISPLAY CREATIVE</h2>		\n			<h1>LIVING STANDEES HAUNTING THEATERS</h1>		\n			<h3>ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS</h3>		\n			<h2>INSIDIOUS – THE LAST KEY</h2>		\n		<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!</p>		\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n		https://vimeo.com/257088337		\n			<h2>INSIDIOUS CHAPTER 3</h2>		\n		<p>OnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.</p>		\n										<img width=\"1000\" height=\"800\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset.jpeg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset.jpeg 1000w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-300x240.jpeg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-768x614.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />											\n		https://vimeo.com/130807026		\n			<h1>VIRTUAL REALITY EXPERIENCE</h1>		\n			<h2>SPIDER-MAN HOMECOMING DISPLAY</h2>		\n		<p>Submerse yourself in the world of your friendly neighborhood Spider-Man in this fun and thrilling VR Theatrical Display.  Based on the all-new 2017 film, the Spider-Man Homecoming VR Experience is a first-person look through the eyes of Spidey himself.</p>		\n										<img width=\"1024\" height=\"711\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-1024x711.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-1024x711.jpg 1024w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-300x208.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-768x533.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n										<img width=\"750\" height=\"1000\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834.jpg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834-225x300.jpg 225w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n										<img width=\"750\" height=\"750\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788.jpg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788-150x150.jpg 150w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788-300x300.jpg 300w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n			<h2>THE STRANGERS PREY AT NIGHT</h2>		\n			<h2>GRAND FORMAT PHOTO-OP STANDEE</h2>		\n			<h1>MARKETING AT ITS FINEST, TAILORED FOR SOCIAL MEDIA</h1>		\n		<p>This theatrical display allows fans to take photos with Dollface, Pin-up Girl, the Man in the Mask and share their photos on social media.</p>		\n										<img width=\"942\" height=\"703\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003.jpg 942w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003-300x224.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003-768x573.jpg 768w\" sizes=\"(max-width: 942px) 100vw, 942px\" />											\n										<img width=\"950\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-950x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-950x1024.jpg 950w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-278x300.jpg 278w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-768x828.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n.jpg 1000w\" sizes=\"(max-width: 950px) 100vw, 950px\" />											\n										<img width=\"1024\" height=\"576\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-1024x576.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-1024x576.jpg 1024w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-300x169.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-768x432.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01.jpg 1280w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n			<h2>THEATRICAL DISPLAYS</h2>		\n			<h2>FREE BIRDS – RESIN DISPLAY</h2>		\n			<h1>THEATRICAL DISPLAYS</h1>		\n		<p>OnDisplay Creative takes pride in its long history of leading the Entertainment Industry in creating and producing eye catching displays.</p>		\n										<img width=\"650\" height=\"751\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/47Meters_02_cropped.jpg.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/47Meters_02_cropped.jpg.jpg 650w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/47Meters_02_cropped.jpg-260x300.jpg 260w\" sizes=\"(max-width: 650px) 100vw, 650px\" />											\n										<img width=\"750\" height=\"1000\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/DFCV6gdXgAAoGDM.jpeg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/DFCV6gdXgAAoGDM.jpeg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/DFCV6gdXgAAoGDM-225x300.jpeg 225w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n										<img width=\"750\" height=\"1000\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/DEI2HYnW0AEERBl.jpeg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/DEI2HYnW0AEERBl.jpeg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/DEI2HYnW0AEERBl-225x300.jpeg 225w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n							<a href=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/RfNight_01A_002.jpg\" data-elementor-lightbox-slideshow=\"946f91d\" data-elementor-lightbox-index=\"0\">		\n		</a>						\n							Previous\n							Next\n		</a>						\n			<h2>HOME ENTERTAINMENT</h2>		\n			<h2>THE SECRET LIFE OF PETS</h2>		\n			<h1>HOME ENTERTAINMENT</h1>		\n		<p>OnDisplay Creative works extensively with many major studios to provide the most effective marketing and merchandising materials. We have a vast understanding of the creative and production needs unique to the Entertainment Industry.</p>		\n							Previous\n							Next\n			<h4>Our company is a collective of amazing people striving to build delightful products.</h4>		\n		<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.</p>		\n			<a href=\"#\" role=\"button\">\n						Read More\n					</a>','Home','','inherit','closed','closed','','5-revision-v1','','','2019-09-25 04:05:55','2019-09-25 04:05:55','',5,'http://23.235.208.11/~ondisp5/wp/2019/09/25/5-revision-v1/',0,'revision','',0),(554,1,'2019-09-25 04:00:45','2019-09-25 04:00:45','','Barbie_01','','inherit','open','closed','','barbie_01','','','2019-09-25 04:00:45','2019-09-25 04:00:45','',5,'http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Barbie_01.jpg',0,'attachment','image/jpeg',0),(555,1,'2019-09-25 04:00:46','2019-09-25 04:00:46','','BOURNE-WM-HC_01','','inherit','open','closed','','bourne-wm-hc_01','','','2019-09-25 04:00:46','2019-09-25 04:00:46','',5,'http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/BOURNE-WM-HC_01.jpg',0,'attachment','image/jpeg',0),(556,1,'2019-09-25 04:00:48','2019-09-25 04:00:48','','PETS_WOW_02','','inherit','open','closed','','pets_wow_02','','','2019-09-25 04:00:48','2019-09-25 04:00:48','',5,'http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/PETS_WOW_02.jpg',0,'attachment','image/jpeg',0),(557,1,'2019-09-25 04:00:50','2019-09-25 04:00:50','','PREPACKS_02','','inherit','open','closed','','prepacks_02','','','2019-09-25 04:00:50','2019-09-25 04:00:50','',5,'http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/PREPACKS_02.jpg',0,'attachment','image/jpeg',0),(558,1,'2019-09-25 04:00:51','2019-09-25 04:00:51','','SING-WOW_01','','inherit','open','closed','','sing-wow_01','','','2019-09-25 04:00:51','2019-09-25 04:00:51','',5,'http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/SING-WOW_01.jpg',0,'attachment','image/jpeg',0),(559,1,'2019-09-25 04:00:53','2019-09-25 04:00:53','','XMEN_APOC','','inherit','open','closed','','xmen_apoc','','','2019-09-25 04:00:53','2019-09-25 04:00:53','',5,'http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/XMEN_APOC.jpg',0,'attachment','image/jpeg',0),(561,1,'2019-09-25 04:07:40','2019-09-25 04:07:40','','XMEN_APOC','','inherit','open','closed','','xmen_apoc-2','','','2019-09-25 04:07:40','2019-09-25 04:07:40','',5,'http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/XMEN_APOC-1.jpg',0,'attachment','image/jpeg',0),(562,1,'2019-09-25 04:09:38','2019-09-25 04:09:38','<h2>#WHAT\'S COOL</h2>		\n			<h2>INNOVATIONS FROM ONDISPLAY CREATIVE</h2>		\n			<h1>LIVING STANDEES HAUNTING THEATERS</h1>		\n			<h3>ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS</h3>		\n			<h2>INSIDIOUS – THE LAST KEY</h2>		\n		<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!</p>		\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n		https://vimeo.com/257088337		\n			<h2>INSIDIOUS CHAPTER 3</h2>		\n		<p>OnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.</p>		\n										<img width=\"1000\" height=\"800\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset.jpeg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset.jpeg 1000w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-300x240.jpeg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-768x614.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />											\n		https://vimeo.com/130807026		\n			<h1>VIRTUAL REALITY EXPERIENCE</h1>		\n			<h2>SPIDER-MAN HOMECOMING DISPLAY</h2>		\n		<p>Submerse yourself in the world of your friendly neighborhood Spider-Man in this fun and thrilling VR Theatrical Display.  Based on the all-new 2017 film, the Spider-Man Homecoming VR Experience is a first-person look through the eyes of Spidey himself.</p>		\n										<img width=\"1024\" height=\"711\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-1024x711.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-1024x711.jpg 1024w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-300x208.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-768x533.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n										<img width=\"750\" height=\"1000\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834.jpg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834-225x300.jpg 225w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n										<img width=\"750\" height=\"750\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788.jpg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788-150x150.jpg 150w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788-300x300.jpg 300w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n			<h2>THE STRANGERS PREY AT NIGHT</h2>		\n			<h2>GRAND FORMAT PHOTO-OP STANDEE</h2>		\n			<h1>MARKETING AT ITS FINEST, TAILORED FOR SOCIAL MEDIA</h1>		\n		<p>This theatrical display allows fans to take photos with Dollface, Pin-up Girl, the Man in the Mask and share their photos on social media.</p>		\n										<img width=\"942\" height=\"703\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003.jpg 942w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003-300x224.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003-768x573.jpg 768w\" sizes=\"(max-width: 942px) 100vw, 942px\" />											\n										<img width=\"950\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-950x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-950x1024.jpg 950w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-278x300.jpg 278w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-768x828.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n.jpg 1000w\" sizes=\"(max-width: 950px) 100vw, 950px\" />											\n										<img width=\"1024\" height=\"576\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-1024x576.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-1024x576.jpg 1024w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-300x169.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-768x432.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01.jpg 1280w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n			<h2>THEATRICAL DISPLAYS</h2>		\n			<h2>FREE BIRDS – RESIN DISPLAY</h2>		\n			<h1>THEATRICAL DISPLAYS</h1>		\n		<p>OnDisplay Creative takes pride in its long history of leading the Entertainment Industry in creating and producing eye catching displays.</p>		\n										<img width=\"650\" height=\"751\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/47Meters_02_cropped.jpg.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/47Meters_02_cropped.jpg.jpg 650w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/47Meters_02_cropped.jpg-260x300.jpg 260w\" sizes=\"(max-width: 650px) 100vw, 650px\" />											\n										<img width=\"750\" height=\"1000\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/DFCV6gdXgAAoGDM.jpeg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/DFCV6gdXgAAoGDM.jpeg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/DFCV6gdXgAAoGDM-225x300.jpeg 225w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n										<img width=\"750\" height=\"1000\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/DEI2HYnW0AEERBl.jpeg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/DEI2HYnW0AEERBl.jpeg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/DEI2HYnW0AEERBl-225x300.jpeg 225w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n							<a href=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/RfNight_01A_002.jpg\" data-elementor-lightbox-slideshow=\"946f91d\" data-elementor-lightbox-index=\"0\">		\n		</a>						\n							Previous\n							Next\n		</a>						\n			<h2>HOME ENTERTAINMENT</h2>		\n			<h2>THE SECRET LIFE OF PETS</h2>		\n			<h1>HOME ENTERTAINMENT</h1>		\n		<p>OnDisplay Creative works extensively with many major studios to provide the most effective marketing and merchandising materials. We have a vast understanding of the creative and production needs unique to the Entertainment Industry.</p>		\n							Previous\n							Next\n			<h4>Our company is a collective of amazing people striving to build delightful products.</h4>		\n		<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.</p>		\n			<a href=\"#\" role=\"button\">\n						Read More\n					</a>','Home','','inherit','closed','closed','','5-revision-v1','','','2019-09-25 04:09:38','2019-09-25 04:09:38','',5,'http://23.235.208.11/~ondisp5/wp/2019/09/25/5-revision-v1/',0,'revision','',0),(565,1,'2019-09-25 05:03:51','2019-09-25 05:03:51','<h2>#WHAT\'S COOL</h2>		\n			<h2>INNOVATIONS FROM ONDISPLAY CREATIVE</h2>		\n			<h1>LIVING STANDEES HAUNTING THEATERS</h1>		\n			<h3>ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS</h3>		\n			<h2>INSIDIOUS – THE LAST KEY</h2>		\n		<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!</p>		\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n		https://vimeo.com/257088337		\n			<h2>INSIDIOUS CHAPTER 3</h2>		\n		<p>OnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.</p>		\n										<img width=\"1000\" height=\"800\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset.jpeg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset.jpeg 1000w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-300x240.jpeg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-768x614.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />											\n		https://vimeo.com/130807026		\n			<h1>VIRTUAL REALITY EXPERIENCE</h1>		\n			<h2>SPIDER-MAN HOMECOMING DISPLAY</h2>		\n		<p>Submerse yourself in the world of your friendly neighborhood Spider-Man in this fun and thrilling VR Theatrical Display.  Based on the all-new 2017 film, the Spider-Man Homecoming VR Experience is a first-person look through the eyes of Spidey himself.</p>		\n										<img width=\"1024\" height=\"711\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-1024x711.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-1024x711.jpg 1024w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-300x208.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-768x533.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n										<img width=\"750\" height=\"1000\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834.jpg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834-225x300.jpg 225w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n										<img width=\"750\" height=\"750\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788.jpg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788-150x150.jpg 150w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788-300x300.jpg 300w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n			<h2>THE STRANGERS PREY AT NIGHT</h2>		\n			<h2>GRAND FORMAT PHOTO-OP STANDEE</h2>		\n			<h1>MARKETING AT ITS FINEST, TAILORED FOR SOCIAL MEDIA</h1>		\n		<p>This theatrical display allows fans to take photos with Dollface, Pin-up Girl, the Man in the Mask and share their photos on social media.</p>		\n										<img width=\"942\" height=\"703\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003.jpg 942w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003-300x224.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003-768x573.jpg 768w\" sizes=\"(max-width: 942px) 100vw, 942px\" />											\n										<img width=\"950\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-950x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-950x1024.jpg 950w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-278x300.jpg 278w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-768x828.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n.jpg 1000w\" sizes=\"(max-width: 950px) 100vw, 950px\" />											\n										<img width=\"1024\" height=\"576\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-1024x576.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-1024x576.jpg 1024w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-300x169.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-768x432.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01.jpg 1280w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n			<h2>THEATRICAL DISPLAYS</h2>		\n			<h2>FREE BIRDS – RESIN DISPLAY</h2>		\n			<h1>THEATRICAL DISPLAYS</h1>		\n		<p>OnDisplay Creative takes pride in its long history of leading the Entertainment Industry in creating and producing eye catching displays.</p>		\n										<img width=\"650\" height=\"751\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/47Meters_02_cropped.jpg.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/47Meters_02_cropped.jpg.jpg 650w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/47Meters_02_cropped.jpg-260x300.jpg 260w\" sizes=\"(max-width: 650px) 100vw, 650px\" />											\n										<img width=\"750\" height=\"1000\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/DFCV6gdXgAAoGDM.jpeg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/DFCV6gdXgAAoGDM.jpeg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/DFCV6gdXgAAoGDM-225x300.jpeg 225w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n										<img width=\"750\" height=\"1000\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/DEI2HYnW0AEERBl.jpeg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/DEI2HYnW0AEERBl.jpeg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/DEI2HYnW0AEERBl-225x300.jpeg 225w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n							<a href=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/RfNight_01A_002.jpg\" data-elementor-lightbox-slideshow=\"946f91d\" data-elementor-lightbox-index=\"0\">		\n		</a>						\n							Previous\n							Next\n		</a>						\n			<h2>HOME ENTERTAINMENT</h2>		\n			<h2>THE SECRET LIFE OF PETS</h2>		\n			<h1>HOME ENTERTAINMENT</h1>		\n		<p>OnDisplay Creative works extensively with many major studios to provide the most effective marketing and merchandising materials. We have a vast understanding of the creative and production needs unique to the Entertainment Industry.</p>		\n							Previous\n							Next\n			<h2>RETAIL</h2>		\n			<h2>SUMMER SALE EVENT - OLD NAVY</h2>		\n			<h4>Our company is a collective of amazing people striving to build delightful products.</h4>		\n		<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.</p>		\n			<a href=\"#\" role=\"button\">\n						Read More\n					</a>','Home','','inherit','closed','closed','','5-revision-v1','','','2019-09-25 05:03:51','2019-09-25 05:03:51','',5,'http://23.235.208.11/~ondisp5/wp/2019/09/25/5-revision-v1/',0,'revision','',0),(564,1,'2019-09-25 05:03:14','2019-09-25 05:03:14','','Summer_1','','inherit','open','closed','','summer_1','','','2019-09-25 05:03:14','2019-09-25 05:03:14','',5,'http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Summer_1.jpg',0,'attachment','image/jpeg',0),(567,1,'2019-09-25 05:11:34','2019-09-25 05:11:34','<h2>#WHAT\'S COOL</h2>		\n			<h2>INNOVATIONS FROM ONDISPLAY CREATIVE</h2>		\n			<h1>LIVING STANDEES HAUNTING THEATERS</h1>		\n			<h3>ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS</h3>		\n			<h2>INSIDIOUS – THE LAST KEY</h2>		\n		<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!</p>		\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n		https://vimeo.com/257088337		\n			<h2>INSIDIOUS CHAPTER 3</h2>		\n		<p>OnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.</p>		\n										<img width=\"1000\" height=\"800\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset.jpeg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset.jpeg 1000w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-300x240.jpeg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-768x614.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />											\n		https://vimeo.com/130807026		\n			<h1>VIRTUAL REALITY EXPERIENCE</h1>		\n			<h2>SPIDER-MAN HOMECOMING DISPLAY</h2>		\n		<p>Submerse yourself in the world of your friendly neighborhood Spider-Man in this fun and thrilling VR Theatrical Display.  Based on the all-new 2017 film, the Spider-Man Homecoming VR Experience is a first-person look through the eyes of Spidey himself.</p>		\n										<img width=\"1024\" height=\"711\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-1024x711.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-1024x711.jpg 1024w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-300x208.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-768x533.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n										<img width=\"750\" height=\"1000\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834.jpg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834-225x300.jpg 225w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n										<img width=\"750\" height=\"750\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788.jpg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788-150x150.jpg 150w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788-300x300.jpg 300w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n			<h2>THE STRANGERS PREY AT NIGHT</h2>		\n			<h2>GRAND FORMAT PHOTO-OP STANDEE</h2>		\n			<h1>MARKETING AT ITS FINEST, TAILORED FOR SOCIAL MEDIA</h1>		\n		<p>This theatrical display allows fans to take photos with Dollface, Pin-up Girl, the Man in the Mask and share their photos on social media.</p>		\n										<img width=\"942\" height=\"703\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003.jpg 942w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003-300x224.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003-768x573.jpg 768w\" sizes=\"(max-width: 942px) 100vw, 942px\" />											\n										<img width=\"950\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-950x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-950x1024.jpg 950w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-278x300.jpg 278w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-768x828.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n.jpg 1000w\" sizes=\"(max-width: 950px) 100vw, 950px\" />											\n										<img width=\"1024\" height=\"576\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-1024x576.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-1024x576.jpg 1024w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-300x169.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-768x432.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01.jpg 1280w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n			<h2>THEATRICAL DISPLAYS</h2>		\n			<h2>FREE BIRDS – RESIN DISPLAY</h2>		\n			<h1>THEATRICAL DISPLAYS</h1>		\n		<p>OnDisplay Creative takes pride in its long history of leading the Entertainment Industry in creating and producing eye catching displays.</p>		\n										<img width=\"650\" height=\"751\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/47Meters_02_cropped.jpg.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/47Meters_02_cropped.jpg.jpg 650w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/47Meters_02_cropped.jpg-260x300.jpg 260w\" sizes=\"(max-width: 650px) 100vw, 650px\" />											\n										<img width=\"750\" height=\"1000\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/DFCV6gdXgAAoGDM.jpeg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/DFCV6gdXgAAoGDM.jpeg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/DFCV6gdXgAAoGDM-225x300.jpeg 225w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n										<img width=\"750\" height=\"1000\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/DEI2HYnW0AEERBl.jpeg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/DEI2HYnW0AEERBl.jpeg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/DEI2HYnW0AEERBl-225x300.jpeg 225w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n							<a href=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/RfNight_01A_002.jpg\" data-elementor-lightbox-slideshow=\"946f91d\" data-elementor-lightbox-index=\"0\">		\n		</a>						\n							Previous\n							Next\n		</a>						\n			<h2>HOME ENTERTAINMENT</h2>		\n			<h2>THE SECRET LIFE OF PETS</h2>		\n			<h1>HOME ENTERTAINMENT</h1>		\n		<p>OnDisplay Creative works extensively with many major studios to provide the most effective marketing and merchandising materials. We have a vast understanding of the creative and production needs unique to the Entertainment Industry.</p>		\n							Previous\n							Next\n			<h2>RETAIL</h2>		\n			<h2>SUMMER SALE EVENT - OLD NAVY</h2>		\n			<h1>HOME ENTERTAINMENT</h1>		\n		<p>OnDisplay Creative works extensively with many major studios to provide the most effective marketing and merchandising materials. We have a vast understanding of the creative and production needs unique to the Entertainment Industry.</p>		\n			<figure><img src=\"http://23.235.208.11/~ondisp5/wp/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" /></figure><h3>SURF BOARD</h3><p>Swappable Poster<BR>\nThis Semi-Permanent display had interchangeable graphics to promote sale items throughout the Summer campaign. </p>		\n			<h4>Our company is a collective of amazing people striving to build delightful products.</h4>		\n		<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.</p>		\n			<a href=\"#\" role=\"button\">\n						Read More\n					</a>','Home','','inherit','closed','closed','','5-revision-v1','','','2019-09-25 05:11:34','2019-09-25 05:11:34','',5,'http://23.235.208.11/~ondisp5/wp/2019/09/25/5-revision-v1/',0,'revision','',0),(570,1,'2019-09-25 05:13:40','2019-09-25 05:13:40','<h2>#WHAT\'S COOL</h2>		\n			<h2>INNOVATIONS FROM ONDISPLAY CREATIVE</h2>		\n			<h1>LIVING STANDEES HAUNTING THEATERS</h1>		\n			<h3>ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS</h3>		\n			<h2>INSIDIOUS – THE LAST KEY</h2>		\n		<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!</p>		\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n		https://vimeo.com/257088337		\n			<h2>INSIDIOUS CHAPTER 3</h2>		\n		<p>OnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.</p>		\n										<img width=\"1000\" height=\"800\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset.jpeg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset.jpeg 1000w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-300x240.jpeg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-768x614.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />											\n		https://vimeo.com/130807026		\n			<h1>VIRTUAL REALITY EXPERIENCE</h1>		\n			<h2>SPIDER-MAN HOMECOMING DISPLAY</h2>		\n		<p>Submerse yourself in the world of your friendly neighborhood Spider-Man in this fun and thrilling VR Theatrical Display.  Based on the all-new 2017 film, the Spider-Man Homecoming VR Experience is a first-person look through the eyes of Spidey himself.</p>		\n										<img width=\"1024\" height=\"711\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-1024x711.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-1024x711.jpg 1024w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-300x208.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-768x533.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n										<img width=\"750\" height=\"1000\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834.jpg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834-225x300.jpg 225w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n										<img width=\"750\" height=\"750\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788.jpg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788-150x150.jpg 150w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788-300x300.jpg 300w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n			<h2>THE STRANGERS PREY AT NIGHT</h2>		\n			<h2>GRAND FORMAT PHOTO-OP STANDEE</h2>		\n			<h1>MARKETING AT ITS FINEST, TAILORED FOR SOCIAL MEDIA</h1>		\n		<p>This theatrical display allows fans to take photos with Dollface, Pin-up Girl, the Man in the Mask and share their photos on social media.</p>		\n										<img width=\"942\" height=\"703\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003.jpg 942w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003-300x224.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003-768x573.jpg 768w\" sizes=\"(max-width: 942px) 100vw, 942px\" />											\n										<img width=\"950\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-950x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-950x1024.jpg 950w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-278x300.jpg 278w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-768x828.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n.jpg 1000w\" sizes=\"(max-width: 950px) 100vw, 950px\" />											\n										<img width=\"1024\" height=\"576\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-1024x576.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-1024x576.jpg 1024w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-300x169.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-768x432.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01.jpg 1280w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n			<h2>THEATRICAL DISPLAYS</h2>		\n			<h2>FREE BIRDS – RESIN DISPLAY</h2>		\n			<h1>THEATRICAL DISPLAYS</h1>		\n		<p>OnDisplay Creative takes pride in its long history of leading the Entertainment Industry in creating and producing eye catching displays.</p>		\n										<img width=\"650\" height=\"751\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/47Meters_02_cropped.jpg.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/47Meters_02_cropped.jpg.jpg 650w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/47Meters_02_cropped.jpg-260x300.jpg 260w\" sizes=\"(max-width: 650px) 100vw, 650px\" />											\n										<img width=\"750\" height=\"1000\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/DFCV6gdXgAAoGDM.jpeg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/DFCV6gdXgAAoGDM.jpeg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/DFCV6gdXgAAoGDM-225x300.jpeg 225w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n										<img width=\"750\" height=\"1000\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/DEI2HYnW0AEERBl.jpeg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/DEI2HYnW0AEERBl.jpeg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/DEI2HYnW0AEERBl-225x300.jpeg 225w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n							<a href=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/RfNight_01A_002.jpg\" data-elementor-lightbox-slideshow=\"946f91d\" data-elementor-lightbox-index=\"0\">		\n		</a>						\n							Previous\n							Next\n		</a>						\n			<h2>HOME ENTERTAINMENT</h2>		\n			<h2>THE SECRET LIFE OF PETS</h2>		\n			<h1>HOME ENTERTAINMENT</h1>		\n		<p>OnDisplay Creative works extensively with many major studios to provide the most effective marketing and merchandising materials. We have a vast understanding of the creative and production needs unique to the Entertainment Industry.</p>		\n							Previous\n							Next\n			<h2>RETAIL</h2>		\n			<h2>SUMMER SALE EVENT - OLD NAVY</h2>		\n			<h1>HOME ENTERTAINMENT</h1>		\n		<p>OnDisplay Creative works extensively with many major studios to provide the most effective marketing and merchandising materials. We have a vast understanding of the creative and production needs unique to the Entertainment Industry.</p>		\n			<figure><img width=\"750\" height=\"1000\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/SUMMER_2.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/SUMMER_2.jpg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/SUMMER_2-225x300.jpg 225w\" sizes=\"(max-width: 750px) 100vw, 750px\" /></figure><h3>SURF BOARD</h3><p>Swappable Poster<BR>\nThis Semi-Permanent display had interchangeable graphics to promote sale items throughout the Summer campaign. </p>		\n			<h4>Our company is a collective of amazing people striving to build delightful products.</h4>		\n		<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.</p>		\n			<a href=\"#\" role=\"button\">\n						Read More\n					</a>','Home','','inherit','closed','closed','','5-revision-v1','','','2019-09-25 05:13:40','2019-09-25 05:13:40','',5,'http://23.235.208.11/~ondisp5/wp/2019/09/25/5-revision-v1/',0,'revision','',0),(573,1,'2019-09-25 05:22:57','2019-09-25 05:22:57','<h2>#WHAT\'S COOL</h2>		\n			<h2>INNOVATIONS FROM ONDISPLAY CREATIVE</h2>		\n			<h1>LIVING STANDEES HAUNTING THEATERS</h1>		\n			<h3>ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS</h3>		\n			<h2>INSIDIOUS – THE LAST KEY</h2>		\n		<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!</p>		\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n		https://vimeo.com/257088337		\n			<h2>INSIDIOUS CHAPTER 3</h2>		\n		<p>OnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.</p>		\n										<img width=\"1000\" height=\"800\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset.jpeg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset.jpeg 1000w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-300x240.jpeg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-768x614.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />											\n		https://vimeo.com/130807026		\n			<h1>VIRTUAL REALITY EXPERIENCE</h1>		\n			<h2>SPIDER-MAN HOMECOMING DISPLAY</h2>		\n		<p>Submerse yourself in the world of your friendly neighborhood Spider-Man in this fun and thrilling VR Theatrical Display.  Based on the all-new 2017 film, the Spider-Man Homecoming VR Experience is a first-person look through the eyes of Spidey himself.</p>		\n										<img width=\"1024\" height=\"711\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-1024x711.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-1024x711.jpg 1024w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-300x208.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-768x533.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n										<img width=\"750\" height=\"1000\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834.jpg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834-225x300.jpg 225w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n										<img width=\"750\" height=\"750\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788.jpg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788-150x150.jpg 150w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788-300x300.jpg 300w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n			<h2>THE STRANGERS PREY AT NIGHT</h2>		\n			<h2>GRAND FORMAT PHOTO-OP STANDEE</h2>		\n			<h1>MARKETING AT ITS FINEST, TAILORED FOR SOCIAL MEDIA</h1>		\n		<p>This theatrical display allows fans to take photos with Dollface, Pin-up Girl, the Man in the Mask and share their photos on social media.</p>		\n										<img width=\"942\" height=\"703\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003.jpg 942w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003-300x224.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003-768x573.jpg 768w\" sizes=\"(max-width: 942px) 100vw, 942px\" />											\n										<img width=\"950\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-950x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-950x1024.jpg 950w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-278x300.jpg 278w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-768x828.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n.jpg 1000w\" sizes=\"(max-width: 950px) 100vw, 950px\" />											\n										<img width=\"1024\" height=\"576\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-1024x576.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-1024x576.jpg 1024w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-300x169.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-768x432.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01.jpg 1280w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n			<h2>THEATRICAL DISPLAYS</h2>		\n			<h2>FREE BIRDS – RESIN DISPLAY</h2>		\n			<h1>THEATRICAL DISPLAYS</h1>		\n		<p>OnDisplay Creative takes pride in its long history of leading the Entertainment Industry in creating and producing eye catching displays.</p>		\n										<img width=\"650\" height=\"751\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/47Meters_02_cropped.jpg.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/47Meters_02_cropped.jpg.jpg 650w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/47Meters_02_cropped.jpg-260x300.jpg 260w\" sizes=\"(max-width: 650px) 100vw, 650px\" />											\n										<img width=\"750\" height=\"1000\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/DFCV6gdXgAAoGDM.jpeg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/DFCV6gdXgAAoGDM.jpeg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/DFCV6gdXgAAoGDM-225x300.jpeg 225w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n										<img width=\"750\" height=\"1000\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/DEI2HYnW0AEERBl.jpeg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/DEI2HYnW0AEERBl.jpeg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/DEI2HYnW0AEERBl-225x300.jpeg 225w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n							<a href=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/RfNight_01A_002.jpg\" data-elementor-lightbox-slideshow=\"946f91d\" data-elementor-lightbox-index=\"0\">		\n		</a>						\n							Previous\n							Next\n		</a>						\n			<h2>HOME ENTERTAINMENT</h2>		\n			<h2>THE SECRET LIFE OF PETS</h2>		\n			<h1>HOME ENTERTAINMENT</h1>		\n		<p>OnDisplay Creative works extensively with many major studios to provide the most effective marketing and merchandising materials. We have a vast understanding of the creative and production needs unique to the Entertainment Industry.</p>		\n							Previous\n							Next\n			<h2>RETAIL</h2>		\n			<h2>SUMMER SALE EVENT - OLD NAVY</h2>		\n										<img width=\"750\" height=\"1000\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/SUMMER_2.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/SUMMER_2.jpg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/SUMMER_2-225x300.jpg 225w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n			<h2>SURF BOARD</h2>		\n										<img src=\"http://23.235.208.11/~ondisp5/wp/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" />											\n			<h2>HOLIDAY STAGE</h2>		\n										<img src=\"http://23.235.208.11/~ondisp5/wp/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" />											\n			<h2>LOVE GAP</h2>		\n			<h4>Our company is a collective of amazing people striving to build delightful products.</h4>		\n		<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.</p>		\n			<a href=\"#\" role=\"button\">\n						Read More\n					</a>','Home','','inherit','closed','closed','','5-revision-v1','','','2019-09-25 05:22:57','2019-09-25 05:22:57','',5,'http://23.235.208.11/~ondisp5/wp/2019/09/25/5-revision-v1/',0,'revision','',0),(572,1,'2019-09-25 05:21:08','2019-09-25 05:21:08','<h2>#WHAT\'S COOL</h2>		\n			<h2>INNOVATIONS FROM ONDISPLAY CREATIVE</h2>		\n			<h1>LIVING STANDEES HAUNTING THEATERS</h1>		\n			<h3>ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS</h3>		\n			<h2>INSIDIOUS – THE LAST KEY</h2>		\n		<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!</p>		\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n		https://vimeo.com/257088337		\n			<h2>INSIDIOUS CHAPTER 3</h2>		\n		<p>OnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.</p>		\n										<img width=\"1000\" height=\"800\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset.jpeg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset.jpeg 1000w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-300x240.jpeg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-768x614.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />											\n		https://vimeo.com/130807026		\n			<h1>VIRTUAL REALITY EXPERIENCE</h1>		\n			<h2>SPIDER-MAN HOMECOMING DISPLAY</h2>		\n		<p>Submerse yourself in the world of your friendly neighborhood Spider-Man in this fun and thrilling VR Theatrical Display.  Based on the all-new 2017 film, the Spider-Man Homecoming VR Experience is a first-person look through the eyes of Spidey himself.</p>		\n										<img width=\"1024\" height=\"711\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-1024x711.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-1024x711.jpg 1024w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-300x208.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-768x533.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n										<img width=\"750\" height=\"1000\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834.jpg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834-225x300.jpg 225w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n										<img width=\"750\" height=\"750\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788.jpg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788-150x150.jpg 150w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788-300x300.jpg 300w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n			<h2>THE STRANGERS PREY AT NIGHT</h2>		\n			<h2>GRAND FORMAT PHOTO-OP STANDEE</h2>		\n			<h1>MARKETING AT ITS FINEST, TAILORED FOR SOCIAL MEDIA</h1>		\n		<p>This theatrical display allows fans to take photos with Dollface, Pin-up Girl, the Man in the Mask and share their photos on social media.</p>		\n										<img width=\"942\" height=\"703\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003.jpg 942w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003-300x224.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003-768x573.jpg 768w\" sizes=\"(max-width: 942px) 100vw, 942px\" />											\n										<img width=\"950\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-950x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-950x1024.jpg 950w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-278x300.jpg 278w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-768x828.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n.jpg 1000w\" sizes=\"(max-width: 950px) 100vw, 950px\" />											\n										<img width=\"1024\" height=\"576\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-1024x576.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-1024x576.jpg 1024w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-300x169.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-768x432.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01.jpg 1280w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n			<h2>THEATRICAL DISPLAYS</h2>		\n			<h2>FREE BIRDS – RESIN DISPLAY</h2>		\n			<h1>THEATRICAL DISPLAYS</h1>		\n		<p>OnDisplay Creative takes pride in its long history of leading the Entertainment Industry in creating and producing eye catching displays.</p>		\n										<img width=\"650\" height=\"751\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/47Meters_02_cropped.jpg.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/47Meters_02_cropped.jpg.jpg 650w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/47Meters_02_cropped.jpg-260x300.jpg 260w\" sizes=\"(max-width: 650px) 100vw, 650px\" />											\n										<img width=\"750\" height=\"1000\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/DFCV6gdXgAAoGDM.jpeg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/DFCV6gdXgAAoGDM.jpeg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/DFCV6gdXgAAoGDM-225x300.jpeg 225w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n										<img width=\"750\" height=\"1000\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/DEI2HYnW0AEERBl.jpeg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/DEI2HYnW0AEERBl.jpeg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/DEI2HYnW0AEERBl-225x300.jpeg 225w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n							<a href=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/RfNight_01A_002.jpg\" data-elementor-lightbox-slideshow=\"946f91d\" data-elementor-lightbox-index=\"0\">		\n		</a>						\n							Previous\n							Next\n		</a>						\n			<h2>HOME ENTERTAINMENT</h2>		\n			<h2>THE SECRET LIFE OF PETS</h2>		\n			<h1>HOME ENTERTAINMENT</h1>		\n		<p>OnDisplay Creative works extensively with many major studios to provide the most effective marketing and merchandising materials. We have a vast understanding of the creative and production needs unique to the Entertainment Industry.</p>		\n							Previous\n							Next\n			<h2>RETAIL</h2>		\n			<h2>SUMMER SALE EVENT - OLD NAVY</h2>		\n			<h1>HOME ENTERTAINMENT</h1>		\n		<p>OnDisplay Creative works extensively with many major studios to provide the most effective marketing and merchandising materials. We have a vast understanding of the creative and production needs unique to the Entertainment Industry.</p>		\n										<img src=\"http://23.235.208.11/~ondisp5/wp/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" />											\n			<h2>SURF BOARD</h2>		\n			<h2>SWAPPABLE POSTER</h2>		\n		<p>This Semi-Permanent display had interchangeable graphics to promote sale items throughout the Summer campaign.</p>		\n										<img src=\"http://23.235.208.11/~ondisp5/wp/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" />											\n			<h2>HOLIDAY STAGE</h2>		\n			<h2>STAGE CHANGE OUTS</h2>		\n		<p>Multiple items were produced and displayed on this large storefront extravaganza.</p>		\n										<img src=\"http://23.235.208.11/~ondisp5/wp/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" />											\n			<h2>LOVE GAP</h2>		\n			<h2>QUALITY PROTOTYPING</h2>		\n		<p>OnDisplay Creative is very adept in incorporating a variety of substrates to provide captivating Point-of-Purchase displays.</p>		\n			<h4>Our company is a collective of amazing people striving to build delightful products.</h4>		\n		<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.</p>		\n			<a href=\"#\" role=\"button\">\n						Read More\n					</a>','Home','','inherit','closed','closed','','5-revision-v1','','','2019-09-25 05:21:08','2019-09-25 05:21:08','',5,'http://23.235.208.11/~ondisp5/wp/2019/09/25/5-revision-v1/',0,'revision','',0),(571,1,'2019-09-25 05:19:34','2019-09-25 05:19:34','<h2>#WHAT\'S COOL</h2>		\n			<h2>INNOVATIONS FROM ONDISPLAY CREATIVE</h2>		\n			<h1>LIVING STANDEES HAUNTING THEATERS</h1>		\n			<h3>ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS</h3>		\n			<h2>INSIDIOUS – THE LAST KEY</h2>		\n		<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!</p>		\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n		https://vimeo.com/257088337		\n			<h2>INSIDIOUS CHAPTER 3</h2>		\n		<p>OnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.</p>		\n										<img width=\"1000\" height=\"800\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset.jpeg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset.jpeg 1000w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-300x240.jpeg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-768x614.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />											\n		https://vimeo.com/130807026		\n			<h1>VIRTUAL REALITY EXPERIENCE</h1>		\n			<h2>SPIDER-MAN HOMECOMING DISPLAY</h2>		\n		<p>Submerse yourself in the world of your friendly neighborhood Spider-Man in this fun and thrilling VR Theatrical Display.  Based on the all-new 2017 film, the Spider-Man Homecoming VR Experience is a first-person look through the eyes of Spidey himself.</p>		\n										<img width=\"1024\" height=\"711\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-1024x711.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-1024x711.jpg 1024w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-300x208.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-768x533.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n										<img width=\"750\" height=\"1000\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834.jpg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834-225x300.jpg 225w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n										<img width=\"750\" height=\"750\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788.jpg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788-150x150.jpg 150w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788-300x300.jpg 300w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n			<h2>THE STRANGERS PREY AT NIGHT</h2>		\n			<h2>GRAND FORMAT PHOTO-OP STANDEE</h2>		\n			<h1>MARKETING AT ITS FINEST, TAILORED FOR SOCIAL MEDIA</h1>		\n		<p>This theatrical display allows fans to take photos with Dollface, Pin-up Girl, the Man in the Mask and share their photos on social media.</p>		\n										<img width=\"942\" height=\"703\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003.jpg 942w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003-300x224.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003-768x573.jpg 768w\" sizes=\"(max-width: 942px) 100vw, 942px\" />											\n										<img width=\"950\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-950x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-950x1024.jpg 950w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-278x300.jpg 278w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-768x828.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n.jpg 1000w\" sizes=\"(max-width: 950px) 100vw, 950px\" />											\n										<img width=\"1024\" height=\"576\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-1024x576.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-1024x576.jpg 1024w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-300x169.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-768x432.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01.jpg 1280w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n			<h2>THEATRICAL DISPLAYS</h2>		\n			<h2>FREE BIRDS – RESIN DISPLAY</h2>		\n			<h1>THEATRICAL DISPLAYS</h1>		\n		<p>OnDisplay Creative takes pride in its long history of leading the Entertainment Industry in creating and producing eye catching displays.</p>		\n										<img width=\"650\" height=\"751\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/47Meters_02_cropped.jpg.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/47Meters_02_cropped.jpg.jpg 650w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/47Meters_02_cropped.jpg-260x300.jpg 260w\" sizes=\"(max-width: 650px) 100vw, 650px\" />											\n										<img width=\"750\" height=\"1000\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/DFCV6gdXgAAoGDM.jpeg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/DFCV6gdXgAAoGDM.jpeg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/DFCV6gdXgAAoGDM-225x300.jpeg 225w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n										<img width=\"750\" height=\"1000\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/DEI2HYnW0AEERBl.jpeg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/DEI2HYnW0AEERBl.jpeg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/DEI2HYnW0AEERBl-225x300.jpeg 225w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n							<a href=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/RfNight_01A_002.jpg\" data-elementor-lightbox-slideshow=\"946f91d\" data-elementor-lightbox-index=\"0\">		\n		</a>						\n							Previous\n							Next\n		</a>						\n			<h2>HOME ENTERTAINMENT</h2>		\n			<h2>THE SECRET LIFE OF PETS</h2>		\n			<h1>HOME ENTERTAINMENT</h1>		\n		<p>OnDisplay Creative works extensively with many major studios to provide the most effective marketing and merchandising materials. We have a vast understanding of the creative and production needs unique to the Entertainment Industry.</p>		\n							Previous\n							Next\n			<h2>RETAIL</h2>		\n			<h2>SUMMER SALE EVENT - OLD NAVY</h2>		\n			<h1>HOME ENTERTAINMENT</h1>		\n		<p>OnDisplay Creative works extensively with many major studios to provide the most effective marketing and merchandising materials. We have a vast understanding of the creative and production needs unique to the Entertainment Industry.</p>		\n										<img src=\"http://23.235.208.11/~ondisp5/wp/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" />											\n			<h2>Add Your Heading Text Here</h2>		\n			<h2>Add Your Heading Text Here</h2>		\n		<p>This Semi-Permanent display had interchangeable graphics to promote sale items throughout the Summer campaign.</p>		\n										<img src=\"http://23.235.208.11/~ondisp5/wp/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" />											\n			<h2>Add Your Heading Text Here</h2>		\n			<h2>Add Your Heading Text Here</h2>		\n		<p>Multiple items were produced and displayed on this large storefront extravaganza.</p>		\n										<img src=\"http://23.235.208.11/~ondisp5/wp/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" />											\n			<h2>Add Your Heading Text Here</h2>		\n			<h2>Add Your Heading Text Here</h2>		\n		<p>OnDisplay Creative is very adept in incorporating a variety of substrates to provide captivating Point-of-Purchase displays.</p>		\n			<h4>Our company is a collective of amazing people striving to build delightful products.</h4>		\n		<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.</p>		\n			<a href=\"#\" role=\"button\">\n						Read More\n					</a>','Home','','inherit','closed','closed','','5-revision-v1','','','2019-09-25 05:19:34','2019-09-25 05:19:34','',5,'http://23.235.208.11/~ondisp5/wp/2019/09/25/5-revision-v1/',0,'revision','',0),(574,1,'2019-09-25 05:25:13','2019-09-25 05:25:13','<h2>#WHAT\'S COOL</h2>		\n			<h2>INNOVATIONS FROM ONDISPLAY CREATIVE</h2>		\n			<h1>LIVING STANDEES HAUNTING THEATERS</h1>		\n			<h3>ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS</h3>		\n			<h2>INSIDIOUS – THE LAST KEY</h2>		\n		<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!</p>		\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n		https://vimeo.com/257088337		\n			<h2>INSIDIOUS CHAPTER 3</h2>		\n		<p>OnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.</p>		\n										<img width=\"1000\" height=\"800\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset.jpeg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset.jpeg 1000w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-300x240.jpeg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-768x614.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />											\n		https://vimeo.com/130807026		\n			<h1>VIRTUAL REALITY EXPERIENCE</h1>		\n			<h2>SPIDER-MAN HOMECOMING DISPLAY</h2>		\n		<p>Submerse yourself in the world of your friendly neighborhood Spider-Man in this fun and thrilling VR Theatrical Display.  Based on the all-new 2017 film, the Spider-Man Homecoming VR Experience is a first-person look through the eyes of Spidey himself.</p>		\n										<img width=\"1024\" height=\"711\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-1024x711.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-1024x711.jpg 1024w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-300x208.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-768x533.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n										<img width=\"750\" height=\"1000\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834.jpg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834-225x300.jpg 225w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n										<img width=\"750\" height=\"750\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788.jpg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788-150x150.jpg 150w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788-300x300.jpg 300w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n			<h2>THE STRANGERS PREY AT NIGHT</h2>		\n			<h2>GRAND FORMAT PHOTO-OP STANDEE</h2>		\n			<h1>MARKETING AT ITS FINEST, TAILORED FOR SOCIAL MEDIA</h1>		\n		<p>This theatrical display allows fans to take photos with Dollface, Pin-up Girl, the Man in the Mask and share their photos on social media.</p>		\n										<img width=\"942\" height=\"703\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003.jpg 942w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003-300x224.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003-768x573.jpg 768w\" sizes=\"(max-width: 942px) 100vw, 942px\" />											\n										<img width=\"950\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-950x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-950x1024.jpg 950w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-278x300.jpg 278w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-768x828.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n.jpg 1000w\" sizes=\"(max-width: 950px) 100vw, 950px\" />											\n										<img width=\"1024\" height=\"576\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-1024x576.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-1024x576.jpg 1024w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-300x169.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-768x432.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01.jpg 1280w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n			<h2>THEATRICAL DISPLAYS</h2>		\n			<h2>FREE BIRDS – RESIN DISPLAY</h2>		\n			<h1>THEATRICAL DISPLAYS</h1>		\n		<p>OnDisplay Creative takes pride in its long history of leading the Entertainment Industry in creating and producing eye catching displays.</p>		\n										<img width=\"650\" height=\"751\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/47Meters_02_cropped.jpg.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/47Meters_02_cropped.jpg.jpg 650w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/47Meters_02_cropped.jpg-260x300.jpg 260w\" sizes=\"(max-width: 650px) 100vw, 650px\" />											\n										<img width=\"750\" height=\"1000\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/DFCV6gdXgAAoGDM.jpeg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/DFCV6gdXgAAoGDM.jpeg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/DFCV6gdXgAAoGDM-225x300.jpeg 225w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n										<img width=\"750\" height=\"1000\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/DEI2HYnW0AEERBl.jpeg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/DEI2HYnW0AEERBl.jpeg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/DEI2HYnW0AEERBl-225x300.jpeg 225w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n							<a href=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/RfNight_01A_002.jpg\" data-elementor-lightbox-slideshow=\"946f91d\" data-elementor-lightbox-index=\"0\">		\n		</a>						\n							Previous\n							Next\n		</a>						\n			<h2>HOME ENTERTAINMENT</h2>		\n			<h2>THE SECRET LIFE OF PETS</h2>		\n			<h1>HOME ENTERTAINMENT</h1>		\n		<p>OnDisplay Creative works extensively with many major studios to provide the most effective marketing and merchandising materials. We have a vast understanding of the creative and production needs unique to the Entertainment Industry.</p>		\n							Previous\n							Next\n			<h2>RETAIL</h2>		\n			<h2>SUMMER SALE EVENT - OLD NAVY</h2>		\n										<img width=\"750\" height=\"1000\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/SUMMER_2.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/SUMMER_2.jpg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/SUMMER_2-225x300.jpg 225w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n			<h2>SURF BOARD</h2>		\n			<h2>SWAPPABLE POSTER</h2>		\n		<p>This Semi-Permanent display had interchangeable graphics to promote sale items throughout the Summer campaign.</p>		\n										<img src=\"http://23.235.208.11/~ondisp5/wp/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" />											\n			<h2>HOLIDAY STAGE</h2>		\n										<img src=\"http://23.235.208.11/~ondisp5/wp/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" />											\n			<h2>LOVE GAP</h2>		\n			<h4>Our company is a collective of amazing people striving to build delightful products.</h4>		\n		<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.</p>		\n			<a href=\"#\" role=\"button\">\n						Read More\n					</a>','Home','','inherit','closed','closed','','5-revision-v1','','','2019-09-25 05:25:13','2019-09-25 05:25:13','',5,'http://23.235.208.11/~ondisp5/wp/2019/09/25/5-revision-v1/',0,'revision','',0),(575,1,'2019-09-25 05:45:37','2019-09-25 05:45:37','','Hodilay_1_cropped','','inherit','open','closed','','hodilay_1_cropped','','','2019-09-25 05:45:37','2019-09-25 05:45:37','',5,'http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Hodilay_1_cropped.jpg',0,'attachment','image/jpeg',0),(576,1,'2019-09-25 05:45:38','2019-09-25 05:45:38','','SUMMER_2_cropped','','inherit','open','closed','','summer_2_cropped','','','2019-09-25 05:45:38','2019-09-25 05:45:38','',5,'http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/SUMMER_2_cropped.jpg',0,'attachment','image/jpeg',0),(577,1,'2019-09-25 05:45:38','2019-09-25 05:45:38','','image-asset','','inherit','open','closed','','image-asset-2','','','2019-09-25 05:45:38','2019-09-25 05:45:38','',5,'http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-1.jpeg',0,'attachment','image/jpeg',0),(578,1,'2019-09-25 05:46:19','2019-09-25 05:46:19','<h2>#WHAT\'S COOL</h2>		\n			<h2>INNOVATIONS FROM ONDISPLAY CREATIVE</h2>		\n			<h1>LIVING STANDEES HAUNTING THEATERS</h1>		\n			<h3>ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS</h3>		\n			<h2>INSIDIOUS – THE LAST KEY</h2>		\n		<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!</p>		\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n		https://vimeo.com/257088337		\n			<h2>INSIDIOUS CHAPTER 3</h2>		\n		<p>OnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.</p>		\n										<img width=\"1000\" height=\"800\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset.jpeg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset.jpeg 1000w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-300x240.jpeg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-768x614.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />											\n		https://vimeo.com/130807026		\n			<h1>VIRTUAL REALITY EXPERIENCE</h1>		\n			<h2>SPIDER-MAN HOMECOMING DISPLAY</h2>		\n		<p>Submerse yourself in the world of your friendly neighborhood Spider-Man in this fun and thrilling VR Theatrical Display.  Based on the all-new 2017 film, the Spider-Man Homecoming VR Experience is a first-person look through the eyes of Spidey himself.</p>		\n										<img width=\"1024\" height=\"711\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-1024x711.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-1024x711.jpg 1024w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-300x208.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-768x533.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n										<img width=\"750\" height=\"1000\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834.jpg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834-225x300.jpg 225w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n										<img width=\"750\" height=\"750\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788.jpg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788-150x150.jpg 150w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788-300x300.jpg 300w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n			<h2>THE STRANGERS PREY AT NIGHT</h2>		\n			<h2>GRAND FORMAT PHOTO-OP STANDEE</h2>		\n			<h1>MARKETING AT ITS FINEST, TAILORED FOR SOCIAL MEDIA</h1>		\n		<p>This theatrical display allows fans to take photos with Dollface, Pin-up Girl, the Man in the Mask and share their photos on social media.</p>		\n										<img width=\"942\" height=\"703\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003.jpg 942w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003-300x224.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003-768x573.jpg 768w\" sizes=\"(max-width: 942px) 100vw, 942px\" />											\n										<img width=\"950\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-950x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-950x1024.jpg 950w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-278x300.jpg 278w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-768x828.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n.jpg 1000w\" sizes=\"(max-width: 950px) 100vw, 950px\" />											\n										<img width=\"1024\" height=\"576\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-1024x576.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-1024x576.jpg 1024w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-300x169.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-768x432.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01.jpg 1280w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n			<h2>THEATRICAL DISPLAYS</h2>		\n			<h2>FREE BIRDS – RESIN DISPLAY</h2>		\n			<h1>THEATRICAL DISPLAYS</h1>		\n		<p>OnDisplay Creative takes pride in its long history of leading the Entertainment Industry in creating and producing eye catching displays.</p>		\n										<img width=\"650\" height=\"751\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/47Meters_02_cropped.jpg.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/47Meters_02_cropped.jpg.jpg 650w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/47Meters_02_cropped.jpg-260x300.jpg 260w\" sizes=\"(max-width: 650px) 100vw, 650px\" />											\n										<img width=\"750\" height=\"1000\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/DFCV6gdXgAAoGDM.jpeg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/DFCV6gdXgAAoGDM.jpeg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/DFCV6gdXgAAoGDM-225x300.jpeg 225w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n										<img width=\"750\" height=\"1000\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/DEI2HYnW0AEERBl.jpeg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/DEI2HYnW0AEERBl.jpeg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/DEI2HYnW0AEERBl-225x300.jpeg 225w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n							<a href=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/RfNight_01A_002.jpg\" data-elementor-lightbox-slideshow=\"946f91d\" data-elementor-lightbox-index=\"0\">		\n		</a>						\n							Previous\n							Next\n		</a>						\n			<h2>HOME ENTERTAINMENT</h2>		\n			<h2>THE SECRET LIFE OF PETS</h2>		\n			<h1>HOME ENTERTAINMENT</h1>		\n		<p>OnDisplay Creative works extensively with many major studios to provide the most effective marketing and merchandising materials. We have a vast understanding of the creative and production needs unique to the Entertainment Industry.</p>		\n							Previous\n							Next\n			<h2>RETAIL</h2>		\n			<h2>SUMMER SALE EVENT - OLD NAVY</h2>		\n										<img width=\"750\" height=\"500\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/SUMMER_2_cropped.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/SUMMER_2_cropped.jpg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/SUMMER_2_cropped-300x200.jpg 300w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n			<h2>SURF BOARD</h2>		\n			<h2>SWAPPABLE POSTER</h2>		\n		<p>This Semi-Permanent display had interchangeable graphics to promote sale items throughout the Summer campaign.</p>		\n										<img width=\"750\" height=\"500\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Hodilay_1_cropped.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Hodilay_1_cropped.jpg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Hodilay_1_cropped-300x200.jpg 300w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n			<h2>HOLIDAY STAGE</h2>		\n										<img width=\"750\" height=\"500\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-1.jpeg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-1.jpeg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-1-300x200.jpeg 300w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n			<h2>LOVE GAP</h2>		\n			<h4>Our company is a collective of amazing people striving to build delightful products.</h4>		\n		<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.</p>		\n			<a href=\"#\" role=\"button\">\n						Read More\n					</a>','Home','','inherit','closed','closed','','5-revision-v1','','','2019-09-25 05:46:19','2019-09-25 05:46:19','',5,'http://23.235.208.11/~ondisp5/wp/2019/09/25/5-revision-v1/',0,'revision','',0),(579,1,'2019-09-25 05:51:10','2019-09-25 05:51:10','<h2>#WHAT\'S COOL</h2>		\n			<h2>INNOVATIONS FROM ONDISPLAY CREATIVE</h2>		\n			<h1>LIVING STANDEES HAUNTING THEATERS</h1>		\n			<h3>ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS</h3>		\n			<h2>INSIDIOUS – THE LAST KEY</h2>		\n		<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!</p>		\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n		https://vimeo.com/257088337		\n			<h2>INSIDIOUS CHAPTER 3</h2>		\n		<p>OnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.</p>		\n										<img width=\"1000\" height=\"800\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset.jpeg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset.jpeg 1000w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-300x240.jpeg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-768x614.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />											\n		https://vimeo.com/130807026		\n			<h1>VIRTUAL REALITY EXPERIENCE</h1>		\n			<h2>SPIDER-MAN HOMECOMING DISPLAY</h2>		\n		<p>Submerse yourself in the world of your friendly neighborhood Spider-Man in this fun and thrilling VR Theatrical Display.  Based on the all-new 2017 film, the Spider-Man Homecoming VR Experience is a first-person look through the eyes of Spidey himself.</p>		\n										<img width=\"1024\" height=\"711\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-1024x711.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-1024x711.jpg 1024w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-300x208.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-768x533.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n										<img width=\"750\" height=\"1000\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834.jpg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834-225x300.jpg 225w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n										<img width=\"750\" height=\"750\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788.jpg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788-150x150.jpg 150w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788-300x300.jpg 300w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n			<h2>THE STRANGERS PREY AT NIGHT</h2>		\n			<h2>GRAND FORMAT PHOTO-OP STANDEE</h2>		\n			<h1>MARKETING AT ITS FINEST, TAILORED FOR SOCIAL MEDIA</h1>		\n		<p>This theatrical display allows fans to take photos with Dollface, Pin-up Girl, the Man in the Mask and share their photos on social media.</p>		\n										<img width=\"942\" height=\"703\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003.jpg 942w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003-300x224.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003-768x573.jpg 768w\" sizes=\"(max-width: 942px) 100vw, 942px\" />											\n										<img width=\"950\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-950x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-950x1024.jpg 950w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-278x300.jpg 278w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-768x828.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n.jpg 1000w\" sizes=\"(max-width: 950px) 100vw, 950px\" />											\n										<img width=\"1024\" height=\"576\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-1024x576.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-1024x576.jpg 1024w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-300x169.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-768x432.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01.jpg 1280w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n			<h2>THEATRICAL DISPLAYS</h2>		\n			<h2>FREE BIRDS – RESIN DISPLAY</h2>		\n			<h1>THEATRICAL DISPLAYS</h1>		\n		<p>OnDisplay Creative takes pride in its long history of leading the Entertainment Industry in creating and producing eye catching displays.</p>		\n										<img width=\"650\" height=\"751\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/47Meters_02_cropped.jpg.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/47Meters_02_cropped.jpg.jpg 650w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/47Meters_02_cropped.jpg-260x300.jpg 260w\" sizes=\"(max-width: 650px) 100vw, 650px\" />											\n										<img width=\"750\" height=\"1000\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/DFCV6gdXgAAoGDM.jpeg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/DFCV6gdXgAAoGDM.jpeg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/DFCV6gdXgAAoGDM-225x300.jpeg 225w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n										<img width=\"750\" height=\"1000\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/DEI2HYnW0AEERBl.jpeg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/DEI2HYnW0AEERBl.jpeg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/DEI2HYnW0AEERBl-225x300.jpeg 225w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n							<a href=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/RfNight_01A_002.jpg\" data-elementor-lightbox-slideshow=\"946f91d\" data-elementor-lightbox-index=\"0\">		\n		</a>						\n							Previous\n							Next\n		</a>						\n			<h2>HOME ENTERTAINMENT</h2>		\n			<h2>THE SECRET LIFE OF PETS</h2>		\n			<h1>HOME ENTERTAINMENT</h1>		\n		<p>OnDisplay Creative works extensively with many major studios to provide the most effective marketing and merchandising materials. We have a vast understanding of the creative and production needs unique to the Entertainment Industry.</p>		\n							Previous\n							Next\n			<h2>RETAIL</h2>		\n			<h2>SUMMER SALE EVENT - OLD NAVY</h2>		\n										<img width=\"750\" height=\"500\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/SUMMER_2_cropped.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/SUMMER_2_cropped.jpg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/SUMMER_2_cropped-300x200.jpg 300w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n			<h2>SURF BOARD</h2>		\n			<h2>SWAPPABLE POSTER</h2>		\n		<p>This Semi-Permanent display had interchangeable graphics to promote sale items throughout the Summer campaign.</p>		\n										<img width=\"750\" height=\"500\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Hodilay_1_cropped.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Hodilay_1_cropped.jpg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Hodilay_1_cropped-300x200.jpg 300w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n			<h2>HOLIDAY STAGE</h2>		\n										<img width=\"750\" height=\"500\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-1.jpeg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-1.jpeg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-1-300x200.jpeg 300w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n			<h2>LOVE GAP</h2>		\n			<h4>Our company is a collective of amazing people striving to build delightful products.</h4>		\n		<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.</p>		\n			<a href=\"#\" role=\"button\">\n						Read More\n					</a>','Home','','inherit','closed','closed','','5-revision-v1','','','2019-09-25 05:51:10','2019-09-25 05:51:10','',5,'http://23.235.208.11/~ondisp5/wp/2019/09/25/5-revision-v1/',0,'revision','',0),(580,1,'2019-09-25 05:53:49','2019-09-25 05:53:49','<h2>#WHAT\'S COOL</h2>		\n			<h2>INNOVATIONS FROM ONDISPLAY CREATIVE</h2>		\n			<h1>LIVING STANDEES HAUNTING THEATERS</h1>		\n			<h3>ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS</h3>		\n			<h2>INSIDIOUS – THE LAST KEY</h2>		\n		<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!</p>		\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n		https://vimeo.com/257088337		\n			<h2>INSIDIOUS CHAPTER 3</h2>		\n		<p>OnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.</p>		\n										<img width=\"1000\" height=\"800\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset.jpeg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset.jpeg 1000w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-300x240.jpeg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-768x614.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />											\n		https://vimeo.com/130807026		\n			<h1>VIRTUAL REALITY EXPERIENCE</h1>		\n			<h2>SPIDER-MAN HOMECOMING DISPLAY</h2>		\n		<p>Submerse yourself in the world of your friendly neighborhood Spider-Man in this fun and thrilling VR Theatrical Display.  Based on the all-new 2017 film, the Spider-Man Homecoming VR Experience is a first-person look through the eyes of Spidey himself.</p>		\n										<img width=\"1024\" height=\"711\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-1024x711.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-1024x711.jpg 1024w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-300x208.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-768x533.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n										<img width=\"750\" height=\"1000\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834.jpg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834-225x300.jpg 225w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n										<img width=\"750\" height=\"750\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788.jpg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788-150x150.jpg 150w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788-300x300.jpg 300w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n			<h2>THE STRANGERS PREY AT NIGHT</h2>		\n			<h2>GRAND FORMAT PHOTO-OP STANDEE</h2>		\n			<h1>MARKETING AT ITS FINEST, TAILORED FOR SOCIAL MEDIA</h1>		\n		<p>This theatrical display allows fans to take photos with Dollface, Pin-up Girl, the Man in the Mask and share their photos on social media.</p>		\n										<img width=\"942\" height=\"703\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003.jpg 942w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003-300x224.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003-768x573.jpg 768w\" sizes=\"(max-width: 942px) 100vw, 942px\" />											\n										<img width=\"950\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-950x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-950x1024.jpg 950w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-278x300.jpg 278w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-768x828.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n.jpg 1000w\" sizes=\"(max-width: 950px) 100vw, 950px\" />											\n										<img width=\"1024\" height=\"576\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-1024x576.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-1024x576.jpg 1024w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-300x169.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-768x432.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01.jpg 1280w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n			<h2>THEATRICAL DISPLAYS</h2>		\n			<h2>FREE BIRDS – RESIN DISPLAY</h2>		\n			<h1>THEATRICAL DISPLAYS</h1>		\n		<p>OnDisplay Creative takes pride in its long history of leading the Entertainment Industry in creating and producing eye catching displays.</p>		\n										<img width=\"650\" height=\"751\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/47Meters_02_cropped.jpg.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/47Meters_02_cropped.jpg.jpg 650w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/47Meters_02_cropped.jpg-260x300.jpg 260w\" sizes=\"(max-width: 650px) 100vw, 650px\" />											\n										<img width=\"750\" height=\"1000\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/DFCV6gdXgAAoGDM.jpeg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/DFCV6gdXgAAoGDM.jpeg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/DFCV6gdXgAAoGDM-225x300.jpeg 225w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n										<img width=\"750\" height=\"1000\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/DEI2HYnW0AEERBl.jpeg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/DEI2HYnW0AEERBl.jpeg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/DEI2HYnW0AEERBl-225x300.jpeg 225w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n							<a href=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/RfNight_01A_002.jpg\" data-elementor-lightbox-slideshow=\"946f91d\" data-elementor-lightbox-index=\"0\">		\n		</a>						\n							Previous\n							Next\n		</a>						\n			<h2>HOME ENTERTAINMENT</h2>		\n			<h2>THE SECRET LIFE OF PETS</h2>		\n			<h1>HOME ENTERTAINMENT</h1>		\n		<p>OnDisplay Creative works extensively with many major studios to provide the most effective marketing and merchandising materials. We have a vast understanding of the creative and production needs unique to the Entertainment Industry.</p>		\n							Previous\n							Next\n			<h2>RETAIL</h2>		\n			<h2>SUMMER SALE EVENT - OLD NAVY</h2>		\n										<img width=\"750\" height=\"500\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/SUMMER_2_cropped.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/SUMMER_2_cropped.jpg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/SUMMER_2_cropped-300x200.jpg 300w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n			<h2>SURF BOARD</h2>		\n			<h3>SWAPPABLE POSTER</h3>		\n		<p>This Semi-Permanent display had interchangeable graphics to promote sale items throughout the Summer campaign.</p>		\n										<img width=\"750\" height=\"500\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Hodilay_1_cropped.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Hodilay_1_cropped.jpg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Hodilay_1_cropped-300x200.jpg 300w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n			<h2>HOLIDAY STAGE</h2>		\n			<h3>STAGE CHANGE OUTS</h3>		\n		<p>Multiple items were produced and displayed on this large storefront extravaganza.</p>		\n										<img width=\"750\" height=\"500\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-1.jpeg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-1.jpeg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-1-300x200.jpeg 300w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n			<h2>LOVE GAP</h2>		\n			<h3>QUALITY PROTOTYPING</h3>		\n		<p>OnDisplay Creative is very adept in incorporating a variety of substrates to provide captivating Point-of-Purchase displays. </p>		\n			<h4>Our company is a collective of amazing people striving to build delightful products.</h4>		\n		<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.</p>		\n			<a href=\"#\" role=\"button\">\n						Read More\n					</a>','Home','','inherit','closed','closed','','5-revision-v1','','','2019-09-25 05:53:49','2019-09-25 05:53:49','',5,'http://23.235.208.11/~ondisp5/wp/2019/09/25/5-revision-v1/',0,'revision','',0),(583,1,'2019-09-25 06:02:11','2019-09-25 06:02:11','<h2>#WHAT\'S COOL</h2>		\n			<h2>INNOVATIONS FROM ONDISPLAY CREATIVE</h2>		\n			<h1>LIVING STANDEES HAUNTING THEATERS</h1>		\n			<h3>ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS</h3>		\n			<h2>INSIDIOUS – THE LAST KEY</h2>		\n		<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!</p>		\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n		https://vimeo.com/257088337		\n			<h2>INSIDIOUS CHAPTER 3</h2>		\n		<p>OnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.</p>		\n										<img width=\"1000\" height=\"800\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset.jpeg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset.jpeg 1000w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-300x240.jpeg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-768x614.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />											\n		https://vimeo.com/130807026		\n			<h1>VIRTUAL REALITY EXPERIENCE</h1>		\n			<h2>SPIDER-MAN HOMECOMING DISPLAY</h2>		\n		<p>Submerse yourself in the world of your friendly neighborhood Spider-Man in this fun and thrilling VR Theatrical Display.  Based on the all-new 2017 film, the Spider-Man Homecoming VR Experience is a first-person look through the eyes of Spidey himself.</p>		\n										<img width=\"1024\" height=\"711\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-1024x711.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-1024x711.jpg 1024w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-300x208.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-768x533.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n										<img width=\"750\" height=\"1000\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834.jpg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834-225x300.jpg 225w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n										<img width=\"750\" height=\"750\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788.jpg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788-150x150.jpg 150w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788-300x300.jpg 300w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n			<h2>THE STRANGERS PREY AT NIGHT</h2>		\n			<h2>GRAND FORMAT PHOTO-OP STANDEE</h2>		\n			<h1>MARKETING AT ITS FINEST, TAILORED FOR SOCIAL MEDIA</h1>		\n		<p>This theatrical display allows fans to take photos with Dollface, Pin-up Girl, the Man in the Mask and share their photos on social media.</p>		\n										<img width=\"942\" height=\"703\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003.jpg 942w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003-300x224.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003-768x573.jpg 768w\" sizes=\"(max-width: 942px) 100vw, 942px\" />											\n										<img width=\"950\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-950x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-950x1024.jpg 950w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-278x300.jpg 278w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-768x828.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n.jpg 1000w\" sizes=\"(max-width: 950px) 100vw, 950px\" />											\n										<img width=\"1024\" height=\"576\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-1024x576.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-1024x576.jpg 1024w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-300x169.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-768x432.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01.jpg 1280w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n			<h2>THEATRICAL DISPLAYS</h2>		\n			<h2>FREE BIRDS – RESIN DISPLAY</h2>		\n			<h1>THEATRICAL DISPLAYS</h1>		\n		<p>OnDisplay Creative takes pride in its long history of leading the Entertainment Industry in creating and producing eye catching displays.</p>		\n										<img width=\"650\" height=\"751\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/47Meters_02_cropped.jpg.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/47Meters_02_cropped.jpg.jpg 650w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/47Meters_02_cropped.jpg-260x300.jpg 260w\" sizes=\"(max-width: 650px) 100vw, 650px\" />											\n										<img width=\"750\" height=\"1000\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/DFCV6gdXgAAoGDM.jpeg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/DFCV6gdXgAAoGDM.jpeg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/DFCV6gdXgAAoGDM-225x300.jpeg 225w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n										<img width=\"750\" height=\"1000\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/DEI2HYnW0AEERBl.jpeg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/DEI2HYnW0AEERBl.jpeg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/DEI2HYnW0AEERBl-225x300.jpeg 225w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n							<a href=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/RfNight_01A_002.jpg\" data-elementor-lightbox-slideshow=\"946f91d\" data-elementor-lightbox-index=\"0\">		\n		</a>						\n							Previous\n							Next\n		</a>						\n			<h2>HOME ENTERTAINMENT</h2>		\n			<h2>THE SECRET LIFE OF PETS</h2>		\n			<h1>HOME ENTERTAINMENT</h1>		\n		<p>OnDisplay Creative works extensively with many major studios to provide the most effective marketing and merchandising materials. We have a vast understanding of the creative and production needs unique to the Entertainment Industry.</p>		\n							Previous\n							Next\n			<h2>RETAIL</h2>		\n			<h2>SUMMER SALE EVENT - OLD NAVY</h2>		\n										<img width=\"750\" height=\"500\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/SUMMER_2_cropped.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/SUMMER_2_cropped.jpg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/SUMMER_2_cropped-300x200.jpg 300w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n			<h2>SURF BOARD</h2>		\n			<h3>SWAPPABLE POSTER</h3>		\n		<p>This Semi-Permanent display had interchangeable graphics to promote sale items throughout the Summer campaign.</p>		\n										<img width=\"750\" height=\"500\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Hodilay_1_cropped.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Hodilay_1_cropped.jpg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Hodilay_1_cropped-300x200.jpg 300w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n			<h2>HOLIDAY STAGE</h2>		\n			<h3>STAGE CHANGE OUTS</h3>		\n		<p>Multiple items were produced and displayed on this large storefront extravaganza.</p>		\n										<img width=\"750\" height=\"500\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-1.jpeg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-1.jpeg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-1-300x200.jpeg 300w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n			<h2>LOVE GAP</h2>		\n			<h3>QUALITY PROTOTYPING</h3>		\n		<p>OnDisplay Creative is very adept in incorporating a variety of substrates to provide captivating Point-of-Purchase displays. </p>		\n			<h2>TOUCH SCREEN DISPLAYS</h2>		\n			<h2>CINE EUROPE – BARCELONA</h2>		\n			<h4>Our company is a collective of amazing people striving to build delightful products.</h4>		\n		<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.</p>		\n			<a href=\"#\" role=\"button\">\n						Read More\n					</a>','Home','','inherit','closed','closed','','5-revision-v1','','','2019-09-25 06:02:11','2019-09-25 06:02:11','',5,'http://23.235.208.11/~ondisp5/wp/2019/09/25/5-revision-v1/',0,'revision','',0),(582,1,'2019-09-25 06:00:58','2019-09-25 06:00:58','','Sony_Touch_Wall_2','','inherit','open','closed','','sony_touch_wall_2','','','2019-09-25 06:00:58','2019-09-25 06:00:58','',5,'http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Sony_Touch_Wall_2.jpg',0,'attachment','image/jpeg',0),(588,1,'2019-09-25 06:12:42','2019-09-25 06:12:42','<h2>#WHAT\'S COOL</h2>		\n			<h2>INNOVATIONS FROM ONDISPLAY CREATIVE</h2>		\n			<h1>LIVING STANDEES HAUNTING THEATERS</h1>		\n			<h3>ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS</h3>		\n			<h2>INSIDIOUS – THE LAST KEY</h2>		\n		<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!</p>		\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n		https://vimeo.com/257088337		\n			<h2>INSIDIOUS CHAPTER 3</h2>		\n		<p>OnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.</p>		\n										<img width=\"1000\" height=\"800\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset.jpeg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset.jpeg 1000w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-300x240.jpeg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-768x614.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />											\n		https://vimeo.com/130807026		\n			<h1>VIRTUAL REALITY EXPERIENCE</h1>		\n			<h2>SPIDER-MAN HOMECOMING DISPLAY</h2>		\n		<p>Submerse yourself in the world of your friendly neighborhood Spider-Man in this fun and thrilling VR Theatrical Display.  Based on the all-new 2017 film, the Spider-Man Homecoming VR Experience is a first-person look through the eyes of Spidey himself.</p>		\n										<img width=\"1024\" height=\"711\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-1024x711.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-1024x711.jpg 1024w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-300x208.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-768x533.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n										<img width=\"750\" height=\"1000\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834.jpg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834-225x300.jpg 225w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n										<img width=\"750\" height=\"750\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788.jpg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788-150x150.jpg 150w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788-300x300.jpg 300w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n			<h2>THE STRANGERS PREY AT NIGHT</h2>		\n			<h2>GRAND FORMAT PHOTO-OP STANDEE</h2>		\n			<h1>MARKETING AT ITS FINEST, TAILORED FOR SOCIAL MEDIA</h1>		\n		<p>This theatrical display allows fans to take photos with Dollface, Pin-up Girl, the Man in the Mask and share their photos on social media.</p>		\n										<img width=\"942\" height=\"703\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003.jpg 942w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003-300x224.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003-768x573.jpg 768w\" sizes=\"(max-width: 942px) 100vw, 942px\" />											\n										<img width=\"950\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-950x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-950x1024.jpg 950w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-278x300.jpg 278w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-768x828.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n.jpg 1000w\" sizes=\"(max-width: 950px) 100vw, 950px\" />											\n										<img width=\"1024\" height=\"576\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-1024x576.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-1024x576.jpg 1024w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-300x169.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-768x432.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01.jpg 1280w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n			<h2>THEATRICAL DISPLAYS</h2>		\n			<h2>FREE BIRDS – RESIN DISPLAY</h2>		\n			<h1>THEATRICAL DISPLAYS</h1>		\n		<p>OnDisplay Creative takes pride in its long history of leading the Entertainment Industry in creating and producing eye catching displays.</p>		\n										<img width=\"650\" height=\"751\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/47Meters_02_cropped.jpg.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/47Meters_02_cropped.jpg.jpg 650w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/47Meters_02_cropped.jpg-260x300.jpg 260w\" sizes=\"(max-width: 650px) 100vw, 650px\" />											\n										<img width=\"750\" height=\"1000\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/DFCV6gdXgAAoGDM.jpeg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/DFCV6gdXgAAoGDM.jpeg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/DFCV6gdXgAAoGDM-225x300.jpeg 225w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n										<img width=\"750\" height=\"1000\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/DEI2HYnW0AEERBl.jpeg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/DEI2HYnW0AEERBl.jpeg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/DEI2HYnW0AEERBl-225x300.jpeg 225w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n							<a href=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/RfNight_01A_002.jpg\" data-elementor-lightbox-slideshow=\"946f91d\" data-elementor-lightbox-index=\"0\">		\n		</a>						\n							Previous\n							Next\n		</a>						\n			<h2>HOME ENTERTAINMENT</h2>		\n			<h2>THE SECRET LIFE OF PETS</h2>		\n			<h1>HOME ENTERTAINMENT</h1>		\n		<p>OnDisplay Creative works extensively with many major studios to provide the most effective marketing and merchandising materials. We have a vast understanding of the creative and production needs unique to the Entertainment Industry.</p>		\n							Previous\n							Next\n			<h2>RETAIL</h2>		\n			<h2>SUMMER SALE EVENT - OLD NAVY</h2>		\n										<img width=\"750\" height=\"500\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/SUMMER_2_cropped.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/SUMMER_2_cropped.jpg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/SUMMER_2_cropped-300x200.jpg 300w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n			<h2>SURF BOARD</h2>		\n			<h3>SWAPPABLE POSTER</h3>		\n		<p>This Semi-Permanent display had interchangeable graphics to promote sale items throughout the Summer campaign.</p>		\n										<img width=\"750\" height=\"500\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Hodilay_1_cropped.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Hodilay_1_cropped.jpg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Hodilay_1_cropped-300x200.jpg 300w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n			<h2>HOLIDAY STAGE</h2>		\n			<h3>STAGE CHANGE OUTS</h3>		\n		<p>Multiple items were produced and displayed on this large storefront extravaganza.</p>		\n										<img width=\"750\" height=\"500\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-1.jpeg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-1.jpeg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-1-300x200.jpeg 300w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n			<h2>LOVE GAP</h2>		\n			<h3>QUALITY PROTOTYPING</h3>		\n		<p>OnDisplay Creative is very adept in incorporating a variety of substrates to provide captivating Point-of-Purchase displays. </p>		\n			<h2>TOUCH SCREEN DISPLAYS</h2>		\n			<h2>CINE EUROPE – BARCELONA</h2>		\n			<h1>LIVING STANDEES HAUNTING THEATERS</h1>		\n			<h3>ONDISPLAY CREATIVE HELPS GIVE SONY PICTURES A GREAT PRESENCE AT INDUSTRY CONVENTIONS WORLD WIDE.</h3>		\n		<p>When Sony Pictures needed to incorporate permanent fixture visibility with cutting edge A/V technology, they turned to OnDisplay Creative. Creating a cost effective, customized and interactive touchscreen display allowed customers an innovative alternative to traditional in-theater displays. The technology used, grants clients the ability to present pictures, videos and information in a fun, attractive way drawing attention to the brand. The monitors can be placed into any display environment (corrugate or permanent) which can be designed, built, and installed by OnDisplay Creative or supplied by the client.</p>		\n			<h2>COMIC-CON - SAN DIEGO</h2>		\n										<img width=\"1024\" height=\"640\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/TOUCH_MASK_01C-1024x640.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/TOUCH_MASK_01C-1024x640.jpg 1024w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/TOUCH_MASK_01C-300x188.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/TOUCH_MASK_01C-768x480.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/TOUCH_MASK_01C.jpg 1300w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n		<p>Comic-Con is a multigenre entertainment and comic convention held annually in San Diego, California. It\'s the largest convention of its kind in the world with over 130,000 attendees. It\'s dedicated to creating awareness of comics and related popular art forms that celebrate the historic and ongoing contribution to art and culture.</p>		\n			<h2>CINEMA-CON - LAS VEGAS</h2>		\n		<p>OnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.</p>		\n										<img width=\"480\" height=\"640\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/spidey_touchscreen_02.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/spidey_touchscreen_02.jpg 480w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/spidey_touchscreen_02-225x300.jpg 225w\" sizes=\"(max-width: 480px) 100vw, 480px\" />											\n		<p>Since its inception in 2011, CinemaCon, the Official convention of NATO (The National Association of Theatre Owners) has become the most important gathering of cinema owners and operators from around the world representing more than 31,000 movie screens in all 50 states, and additional cinemas in 80 countries worldwide.</p>https://vimeo.com/130807026		\n			<h4>Our company is a collective of amazing people striving to build delightful products.</h4>		\n		<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.</p>		\n			<a href=\"#\" role=\"button\">\n						Read More\n					</a>','Home','','inherit','closed','closed','','5-revision-v1','','','2019-09-25 06:12:42','2019-09-25 06:12:42','',5,'http://23.235.208.11/~ondisp5/wp/2019/09/25/5-revision-v1/',0,'revision','',0),(585,1,'2019-09-25 06:07:48','2019-09-25 06:07:48','<h2>#WHAT\'S COOL</h2>		\n			<h2>INNOVATIONS FROM ONDISPLAY CREATIVE</h2>		\n			<h1>LIVING STANDEES HAUNTING THEATERS</h1>		\n			<h3>ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS</h3>		\n			<h2>INSIDIOUS – THE LAST KEY</h2>		\n		<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!</p>		\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n		https://vimeo.com/257088337		\n			<h2>INSIDIOUS CHAPTER 3</h2>		\n		<p>OnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.</p>		\n										<img width=\"1000\" height=\"800\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset.jpeg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset.jpeg 1000w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-300x240.jpeg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-768x614.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />											\n		https://vimeo.com/130807026		\n			<h1>VIRTUAL REALITY EXPERIENCE</h1>		\n			<h2>SPIDER-MAN HOMECOMING DISPLAY</h2>		\n		<p>Submerse yourself in the world of your friendly neighborhood Spider-Man in this fun and thrilling VR Theatrical Display.  Based on the all-new 2017 film, the Spider-Man Homecoming VR Experience is a first-person look through the eyes of Spidey himself.</p>		\n										<img width=\"1024\" height=\"711\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-1024x711.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-1024x711.jpg 1024w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-300x208.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-768x533.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n										<img width=\"750\" height=\"1000\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834.jpg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834-225x300.jpg 225w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n										<img width=\"750\" height=\"750\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788.jpg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788-150x150.jpg 150w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788-300x300.jpg 300w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n			<h2>THE STRANGERS PREY AT NIGHT</h2>		\n			<h2>GRAND FORMAT PHOTO-OP STANDEE</h2>		\n			<h1>MARKETING AT ITS FINEST, TAILORED FOR SOCIAL MEDIA</h1>		\n		<p>This theatrical display allows fans to take photos with Dollface, Pin-up Girl, the Man in the Mask and share their photos on social media.</p>		\n										<img width=\"942\" height=\"703\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003.jpg 942w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003-300x224.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003-768x573.jpg 768w\" sizes=\"(max-width: 942px) 100vw, 942px\" />											\n										<img width=\"950\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-950x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-950x1024.jpg 950w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-278x300.jpg 278w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-768x828.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n.jpg 1000w\" sizes=\"(max-width: 950px) 100vw, 950px\" />											\n										<img width=\"1024\" height=\"576\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-1024x576.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-1024x576.jpg 1024w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-300x169.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-768x432.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01.jpg 1280w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n			<h2>THEATRICAL DISPLAYS</h2>		\n			<h2>FREE BIRDS – RESIN DISPLAY</h2>		\n			<h1>THEATRICAL DISPLAYS</h1>		\n		<p>OnDisplay Creative takes pride in its long history of leading the Entertainment Industry in creating and producing eye catching displays.</p>		\n										<img width=\"650\" height=\"751\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/47Meters_02_cropped.jpg.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/47Meters_02_cropped.jpg.jpg 650w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/47Meters_02_cropped.jpg-260x300.jpg 260w\" sizes=\"(max-width: 650px) 100vw, 650px\" />											\n										<img width=\"750\" height=\"1000\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/DFCV6gdXgAAoGDM.jpeg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/DFCV6gdXgAAoGDM.jpeg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/DFCV6gdXgAAoGDM-225x300.jpeg 225w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n										<img width=\"750\" height=\"1000\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/DEI2HYnW0AEERBl.jpeg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/DEI2HYnW0AEERBl.jpeg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/DEI2HYnW0AEERBl-225x300.jpeg 225w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n							<a href=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/RfNight_01A_002.jpg\" data-elementor-lightbox-slideshow=\"946f91d\" data-elementor-lightbox-index=\"0\">		\n		</a>						\n							Previous\n							Next\n		</a>						\n			<h2>HOME ENTERTAINMENT</h2>		\n			<h2>THE SECRET LIFE OF PETS</h2>		\n			<h1>HOME ENTERTAINMENT</h1>		\n		<p>OnDisplay Creative works extensively with many major studios to provide the most effective marketing and merchandising materials. We have a vast understanding of the creative and production needs unique to the Entertainment Industry.</p>		\n							Previous\n							Next\n			<h2>RETAIL</h2>		\n			<h2>SUMMER SALE EVENT - OLD NAVY</h2>		\n										<img width=\"750\" height=\"500\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/SUMMER_2_cropped.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/SUMMER_2_cropped.jpg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/SUMMER_2_cropped-300x200.jpg 300w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n			<h2>SURF BOARD</h2>		\n			<h3>SWAPPABLE POSTER</h3>		\n		<p>This Semi-Permanent display had interchangeable graphics to promote sale items throughout the Summer campaign.</p>		\n										<img width=\"750\" height=\"500\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Hodilay_1_cropped.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Hodilay_1_cropped.jpg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Hodilay_1_cropped-300x200.jpg 300w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n			<h2>HOLIDAY STAGE</h2>		\n			<h3>STAGE CHANGE OUTS</h3>		\n		<p>Multiple items were produced and displayed on this large storefront extravaganza.</p>		\n										<img width=\"750\" height=\"500\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-1.jpeg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-1.jpeg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-1-300x200.jpeg 300w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n			<h2>LOVE GAP</h2>		\n			<h3>QUALITY PROTOTYPING</h3>		\n		<p>OnDisplay Creative is very adept in incorporating a variety of substrates to provide captivating Point-of-Purchase displays. </p>		\n			<h2>TOUCH SCREEN DISPLAYS</h2>		\n			<h2>CINE EUROPE – BARCELONA</h2>		\n			<h1>LIVING STANDEES HAUNTING THEATERS</h1>		\n			<h3>ONDISPLAY CREATIVE HELPS GIVE SONY PICTURES A GREAT PRESENCE AT INDUSTRY CONVENTIONS WORLD WIDE.</h3>		\n		<p>When Sony Pictures needed to incorporate permanent fixture visibility with cutting edge A/V technology, they turned to OnDisplay Creative. Creating a cost effective, customized and interactive touchscreen display allowed customers an innovative alternative to traditional in-theater displays. The technology used, grants clients the ability to present pictures, videos and information in a fun, attractive way drawing attention to the brand. The monitors can be placed into any display environment (corrugate or permanent) which can be designed, built, and installed by OnDisplay Creative or supplied by the client.</p>		\n			<h2>INTERACTIVE TOUCH SCREEN DISPLAYS</h2>		\n		<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!</p>		\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n		https://vimeo.com/257088337		\n			<h2>INSIDIOUS CHAPTER 3</h2>		\n		<p>OnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.</p>		\n										<img width=\"1000\" height=\"800\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset.jpeg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset.jpeg 1000w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-300x240.jpeg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-768x614.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />											\n		https://vimeo.com/130807026		\n			<h1>VIRTUAL REALITY EXPERIENCE</h1>		\n			<h2>SPIDER-MAN HOMECOMING DISPLAY</h2>		\n		<p>Submerse yourself in the world of your friendly neighborhood Spider-Man in this fun and thrilling VR Theatrical Display.  Based on the all-new 2017 film, the Spider-Man Homecoming VR Experience is a first-person look through the eyes of Spidey himself.</p>		\n										<img width=\"1024\" height=\"711\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-1024x711.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-1024x711.jpg 1024w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-300x208.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-768x533.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n										<img width=\"750\" height=\"1000\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834.jpg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834-225x300.jpg 225w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n										<img width=\"750\" height=\"750\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788.jpg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788-150x150.jpg 150w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788-300x300.jpg 300w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n			<h4>Our company is a collective of amazing people striving to build delightful products.</h4>		\n		<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.</p>		\n			<a href=\"#\" role=\"button\">\n						Read More\n					</a>','Home','','inherit','closed','closed','','5-revision-v1','','','2019-09-25 06:07:48','2019-09-25 06:07:48','',5,'http://23.235.208.11/~ondisp5/wp/2019/09/25/5-revision-v1/',0,'revision','',0),(586,1,'2019-09-25 06:09:49','2019-09-25 06:09:49','','TOUCH_MASK_01C','','inherit','open','closed','','touch_mask_01c','','','2019-09-25 06:09:49','2019-09-25 06:09:49','',5,'http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/TOUCH_MASK_01C.jpg',0,'attachment','image/jpeg',0),(587,1,'2019-09-25 06:12:07','2019-09-25 06:12:07','','spidey_touchscreen_02','','inherit','open','closed','','spidey_touchscreen_02','','','2019-09-25 06:12:07','2019-09-25 06:12:07','',5,'http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/spidey_touchscreen_02.jpg',0,'attachment','image/jpeg',0),(589,1,'2019-09-25 06:13:30','2019-09-25 06:13:30','<h2>#WHAT\'S COOL</h2>		\n			<h2>INNOVATIONS FROM ONDISPLAY CREATIVE</h2>		\n			<h1>LIVING STANDEES HAUNTING THEATERS</h1>		\n			<h3>ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS</h3>		\n			<h2>INSIDIOUS – THE LAST KEY</h2>		\n		<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!</p>		\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n		https://vimeo.com/257088337		\n			<h2>INSIDIOUS CHAPTER 3</h2>		\n		<p>OnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.</p>		\n										<img width=\"1000\" height=\"800\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset.jpeg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset.jpeg 1000w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-300x240.jpeg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-768x614.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />											\n		https://vimeo.com/130807026		\n			<h1>VIRTUAL REALITY EXPERIENCE</h1>		\n			<h2>SPIDER-MAN HOMECOMING DISPLAY</h2>		\n		<p>Submerse yourself in the world of your friendly neighborhood Spider-Man in this fun and thrilling VR Theatrical Display.  Based on the all-new 2017 film, the Spider-Man Homecoming VR Experience is a first-person look through the eyes of Spidey himself.</p>		\n										<img width=\"1024\" height=\"711\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-1024x711.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-1024x711.jpg 1024w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-300x208.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-768x533.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n										<img width=\"750\" height=\"1000\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834.jpg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834-225x300.jpg 225w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n										<img width=\"750\" height=\"750\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788.jpg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788-150x150.jpg 150w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788-300x300.jpg 300w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n			<h2>THE STRANGERS PREY AT NIGHT</h2>		\n			<h2>GRAND FORMAT PHOTO-OP STANDEE</h2>		\n			<h1>MARKETING AT ITS FINEST, TAILORED FOR SOCIAL MEDIA</h1>		\n		<p>This theatrical display allows fans to take photos with Dollface, Pin-up Girl, the Man in the Mask and share their photos on social media.</p>		\n										<img width=\"942\" height=\"703\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003.jpg 942w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003-300x224.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003-768x573.jpg 768w\" sizes=\"(max-width: 942px) 100vw, 942px\" />											\n										<img width=\"950\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-950x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-950x1024.jpg 950w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-278x300.jpg 278w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-768x828.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n.jpg 1000w\" sizes=\"(max-width: 950px) 100vw, 950px\" />											\n										<img width=\"1024\" height=\"576\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-1024x576.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-1024x576.jpg 1024w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-300x169.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-768x432.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01.jpg 1280w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n			<h2>THEATRICAL DISPLAYS</h2>		\n			<h2>FREE BIRDS – RESIN DISPLAY</h2>		\n			<h1>THEATRICAL DISPLAYS</h1>		\n		<p>OnDisplay Creative takes pride in its long history of leading the Entertainment Industry in creating and producing eye catching displays.</p>		\n										<img width=\"650\" height=\"751\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/47Meters_02_cropped.jpg.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/47Meters_02_cropped.jpg.jpg 650w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/47Meters_02_cropped.jpg-260x300.jpg 260w\" sizes=\"(max-width: 650px) 100vw, 650px\" />											\n										<img width=\"750\" height=\"1000\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/DFCV6gdXgAAoGDM.jpeg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/DFCV6gdXgAAoGDM.jpeg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/DFCV6gdXgAAoGDM-225x300.jpeg 225w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n										<img width=\"750\" height=\"1000\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/DEI2HYnW0AEERBl.jpeg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/DEI2HYnW0AEERBl.jpeg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/DEI2HYnW0AEERBl-225x300.jpeg 225w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n							<a href=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/RfNight_01A_002.jpg\" data-elementor-lightbox-slideshow=\"946f91d\" data-elementor-lightbox-index=\"0\">		\n		</a>						\n							Previous\n							Next\n		</a>						\n			<h2>HOME ENTERTAINMENT</h2>		\n			<h2>THE SECRET LIFE OF PETS</h2>		\n			<h1>HOME ENTERTAINMENT</h1>		\n		<p>OnDisplay Creative works extensively with many major studios to provide the most effective marketing and merchandising materials. We have a vast understanding of the creative and production needs unique to the Entertainment Industry.</p>		\n							Previous\n							Next\n			<h2>RETAIL</h2>		\n			<h2>SUMMER SALE EVENT - OLD NAVY</h2>		\n										<img width=\"750\" height=\"500\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/SUMMER_2_cropped.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/SUMMER_2_cropped.jpg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/SUMMER_2_cropped-300x200.jpg 300w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n			<h2>SURF BOARD</h2>		\n			<h3>SWAPPABLE POSTER</h3>		\n		<p>This Semi-Permanent display had interchangeable graphics to promote sale items throughout the Summer campaign.</p>		\n										<img width=\"750\" height=\"500\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Hodilay_1_cropped.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Hodilay_1_cropped.jpg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Hodilay_1_cropped-300x200.jpg 300w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n			<h2>HOLIDAY STAGE</h2>		\n			<h3>STAGE CHANGE OUTS</h3>		\n		<p>Multiple items were produced and displayed on this large storefront extravaganza.</p>		\n										<img width=\"750\" height=\"500\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-1.jpeg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-1.jpeg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-1-300x200.jpeg 300w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n			<h2>LOVE GAP</h2>		\n			<h3>QUALITY PROTOTYPING</h3>		\n		<p>OnDisplay Creative is very adept in incorporating a variety of substrates to provide captivating Point-of-Purchase displays. </p>		\n			<h2>TOUCH SCREEN DISPLAYS</h2>		\n			<h2>CINE EUROPE – BARCELONA</h2>		\n			<h1>INTERACTIVE TOUCH SCREEN DISPLAYS</h1>		\n			<h3>ONDISPLAY CREATIVE HELPS GIVE SONY PICTURES A GREAT PRESENCE AT INDUSTRY CONVENTIONS WORLD WIDE.</h3>		\n		<p>When Sony Pictures needed to incorporate permanent fixture visibility with cutting edge A/V technology, they turned to OnDisplay Creative. Creating a cost effective, customized and interactive touchscreen display allowed customers an innovative alternative to traditional in-theater displays. The technology used, grants clients the ability to present pictures, videos and information in a fun, attractive way drawing attention to the brand. The monitors can be placed into any display environment (corrugate or permanent) which can be designed, built, and installed by OnDisplay Creative or supplied by the client.</p>		\n			<h2>COMIC-CON - SAN DIEGO</h2>		\n										<img width=\"1024\" height=\"640\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/TOUCH_MASK_01C-1024x640.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/TOUCH_MASK_01C-1024x640.jpg 1024w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/TOUCH_MASK_01C-300x188.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/TOUCH_MASK_01C-768x480.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/TOUCH_MASK_01C.jpg 1300w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n		<p>Comic-Con is a multigenre entertainment and comic convention held annually in San Diego, California. It\'s the largest convention of its kind in the world with over 130,000 attendees. It\'s dedicated to creating awareness of comics and related popular art forms that celebrate the historic and ongoing contribution to art and culture.</p>		\n			<h2>CINEMA-CON - LAS VEGAS</h2>		\n		<p>OnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.</p>		\n										<img width=\"480\" height=\"640\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/spidey_touchscreen_02.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/spidey_touchscreen_02.jpg 480w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/spidey_touchscreen_02-225x300.jpg 225w\" sizes=\"(max-width: 480px) 100vw, 480px\" />											\n		<p>Since its inception in 2011, CinemaCon, the Official convention of NATO (The National Association of Theatre Owners) has become the most important gathering of cinema owners and operators from around the world representing more than 31,000 movie screens in all 50 states, and additional cinemas in 80 countries worldwide.</p>https://vimeo.com/130807026		\n			<h4>Our company is a collective of amazing people striving to build delightful products.</h4>		\n		<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.</p>		\n			<a href=\"#\" role=\"button\">\n						Read More\n					</a>','Home','','inherit','closed','closed','','5-revision-v1','','','2019-09-25 06:13:30','2019-09-25 06:13:30','',5,'http://23.235.208.11/~ondisp5/wp/2019/09/25/5-revision-v1/',0,'revision','',0),(590,1,'2019-09-25 06:14:25','2019-09-25 06:14:25','<h2>#WHAT\'S COOL</h2>		\n			<h2>INNOVATIONS FROM ONDISPLAY CREATIVE</h2>		\n			<h1>LIVING STANDEES HAUNTING THEATERS</h1>		\n			<h3>ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS</h3>		\n			<h2>INSIDIOUS – THE LAST KEY</h2>		\n		<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!</p>		\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n		https://vimeo.com/257088337		\n			<h2>INSIDIOUS CHAPTER 3</h2>		\n		<p>OnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.</p>		\n										<img width=\"1000\" height=\"800\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset.jpeg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset.jpeg 1000w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-300x240.jpeg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-768x614.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />											\n		https://vimeo.com/130807026		\n			<h1>VIRTUAL REALITY EXPERIENCE</h1>		\n			<h2>SPIDER-MAN HOMECOMING DISPLAY</h2>		\n		<p>Submerse yourself in the world of your friendly neighborhood Spider-Man in this fun and thrilling VR Theatrical Display.  Based on the all-new 2017 film, the Spider-Man Homecoming VR Experience is a first-person look through the eyes of Spidey himself.</p>		\n										<img width=\"1024\" height=\"711\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-1024x711.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-1024x711.jpg 1024w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-300x208.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-768x533.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n										<img width=\"750\" height=\"1000\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834.jpg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834-225x300.jpg 225w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n										<img width=\"750\" height=\"750\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788.jpg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788-150x150.jpg 150w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788-300x300.jpg 300w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n			<h2>THE STRANGERS PREY AT NIGHT</h2>		\n			<h2>GRAND FORMAT PHOTO-OP STANDEE</h2>		\n			<h1>MARKETING AT ITS FINEST, TAILORED FOR SOCIAL MEDIA</h1>		\n		<p>This theatrical display allows fans to take photos with Dollface, Pin-up Girl, the Man in the Mask and share their photos on social media.</p>		\n										<img width=\"942\" height=\"703\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003.jpg 942w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003-300x224.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003-768x573.jpg 768w\" sizes=\"(max-width: 942px) 100vw, 942px\" />											\n										<img width=\"950\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-950x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-950x1024.jpg 950w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-278x300.jpg 278w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-768x828.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n.jpg 1000w\" sizes=\"(max-width: 950px) 100vw, 950px\" />											\n										<img width=\"1024\" height=\"576\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-1024x576.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-1024x576.jpg 1024w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-300x169.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-768x432.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01.jpg 1280w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n			<h2>THEATRICAL DISPLAYS</h2>		\n			<h2>FREE BIRDS – RESIN DISPLAY</h2>		\n			<h1>THEATRICAL DISPLAYS</h1>		\n		<p>OnDisplay Creative takes pride in its long history of leading the Entertainment Industry in creating and producing eye catching displays.</p>		\n										<img width=\"650\" height=\"751\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/47Meters_02_cropped.jpg.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/47Meters_02_cropped.jpg.jpg 650w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/47Meters_02_cropped.jpg-260x300.jpg 260w\" sizes=\"(max-width: 650px) 100vw, 650px\" />											\n										<img width=\"750\" height=\"1000\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/DFCV6gdXgAAoGDM.jpeg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/DFCV6gdXgAAoGDM.jpeg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/DFCV6gdXgAAoGDM-225x300.jpeg 225w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n										<img width=\"750\" height=\"1000\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/DEI2HYnW0AEERBl.jpeg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/DEI2HYnW0AEERBl.jpeg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/DEI2HYnW0AEERBl-225x300.jpeg 225w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n							<a href=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/RfNight_01A_002.jpg\" data-elementor-lightbox-slideshow=\"946f91d\" data-elementor-lightbox-index=\"0\">		\n		</a>						\n							Previous\n							Next\n		</a>						\n			<h2>HOME ENTERTAINMENT</h2>		\n			<h2>THE SECRET LIFE OF PETS</h2>		\n			<h1>HOME ENTERTAINMENT</h1>		\n		<p>OnDisplay Creative works extensively with many major studios to provide the most effective marketing and merchandising materials. We have a vast understanding of the creative and production needs unique to the Entertainment Industry.</p>		\n							Previous\n							Next\n			<h2>RETAIL</h2>		\n			<h2>SUMMER SALE EVENT - OLD NAVY</h2>		\n										<img width=\"750\" height=\"500\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/SUMMER_2_cropped.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/SUMMER_2_cropped.jpg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/SUMMER_2_cropped-300x200.jpg 300w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n			<h2>SURF BOARD</h2>		\n			<h3>SWAPPABLE POSTER</h3>		\n		<p>This Semi-Permanent display had interchangeable graphics to promote sale items throughout the Summer campaign.</p>		\n										<img width=\"750\" height=\"500\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Hodilay_1_cropped.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Hodilay_1_cropped.jpg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Hodilay_1_cropped-300x200.jpg 300w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n			<h2>HOLIDAY STAGE</h2>		\n			<h3>STAGE CHANGE OUTS</h3>		\n		<p>Multiple items were produced and displayed on this large storefront extravaganza.</p>		\n										<img width=\"750\" height=\"500\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-1.jpeg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-1.jpeg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-1-300x200.jpeg 300w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n			<h2>LOVE GAP</h2>		\n			<h3>QUALITY PROTOTYPING</h3>		\n		<p>OnDisplay Creative is very adept in incorporating a variety of substrates to provide captivating Point-of-Purchase displays. </p>		\n			<h2>TOUCH SCREEN DISPLAYS</h2>		\n			<h2>CINE EUROPE – BARCELONA</h2>		\n			<h1>INTERACTIVE TOUCH SCREEN DISPLAYS</h1>		\n			<h3>ONDISPLAY CREATIVE HELPS GIVE SONY PICTURES A GREAT PRESENCE AT INDUSTRY CONVENTIONS WORLD WIDE.</h3>		\n		<p>When Sony Pictures needed to incorporate permanent fixture visibility with cutting edge A/V technology, they turned to OnDisplay Creative. Creating a cost effective, customized and interactive touchscreen display allowed customers an innovative alternative to traditional in-theater displays. The technology used, grants clients the ability to present pictures, videos and information in a fun, attractive way drawing attention to the brand. The monitors can be placed into any display environment (corrugate or permanent) which can be designed, built, and installed by OnDisplay Creative or supplied by the client.</p>		\n			<h2>COMIC-CON - SAN DIEGO</h2>		\n										<img width=\"1024\" height=\"640\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/TOUCH_MASK_01C-1024x640.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/TOUCH_MASK_01C-1024x640.jpg 1024w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/TOUCH_MASK_01C-300x188.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/TOUCH_MASK_01C-768x480.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/TOUCH_MASK_01C.jpg 1300w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n		<p>Comic-Con is a multigenre entertainment and comic convention held annually in San Diego, California. It\'s the largest convention of its kind in the world with over 130,000 attendees. It\'s dedicated to creating awareness of comics and related popular art forms that celebrate the historic and ongoing contribution to art and culture.</p>		\n			<h2>CINEMA-CON - LAS VEGAS</h2>		\n		<p>OnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.</p>		\n										<img width=\"480\" height=\"640\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/spidey_touchscreen_02.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/spidey_touchscreen_02.jpg 480w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/spidey_touchscreen_02-225x300.jpg 225w\" sizes=\"(max-width: 480px) 100vw, 480px\" />											\n		<p>Since its inception in 2011, CinemaCon, the Official convention of NATO (The National Association of Theatre Owners) has become the most important gathering of cinema owners and operators from around the world representing more than 31,000 movie screens in all 50 states, and additional cinemas in 80 countries worldwide.</p>https://vimeo.com/102278147		\n			<h4>Our company is a collective of amazing people striving to build delightful products.</h4>		\n		<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.</p>		\n			<a href=\"#\" role=\"button\">\n						Read More\n					</a>','Home','','inherit','closed','closed','','5-revision-v1','','','2019-09-25 06:14:25','2019-09-25 06:14:25','',5,'http://23.235.208.11/~ondisp5/wp/2019/09/25/5-revision-v1/',0,'revision','',0),(591,1,'2019-09-25 06:16:46','2019-09-25 06:16:46','','HD_Render_02D','','inherit','open','closed','','hd_render_02d','','','2019-09-25 06:16:46','2019-09-25 06:16:46','',5,'http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/HD_Render_02D.jpg',0,'attachment','image/jpeg',0),(592,1,'2019-09-25 06:16:58','2019-09-25 06:16:58','<h2>#WHAT\'S COOL</h2>		\n			<h2>INNOVATIONS FROM ONDISPLAY CREATIVE</h2>		\n			<h1>LIVING STANDEES HAUNTING THEATERS</h1>		\n			<h3>ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS</h3>		\n			<h2>INSIDIOUS – THE LAST KEY</h2>		\n		<p>Movie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!</p>		\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n										<img width=\"768\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n		https://vimeo.com/257088337		\n			<h2>INSIDIOUS CHAPTER 3</h2>		\n		<p>OnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.</p>		\n										<img width=\"1000\" height=\"800\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset.jpeg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset.jpeg 1000w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-300x240.jpeg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-768x614.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />											\n		https://vimeo.com/130807026		\n			<h1>VIRTUAL REALITY EXPERIENCE</h1>		\n			<h2>SPIDER-MAN HOMECOMING DISPLAY</h2>		\n		<p>Submerse yourself in the world of your friendly neighborhood Spider-Man in this fun and thrilling VR Theatrical Display.  Based on the all-new 2017 film, the Spider-Man Homecoming VR Experience is a first-person look through the eyes of Spidey himself.</p>		\n										<img width=\"1024\" height=\"711\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-1024x711.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-1024x711.jpg 1024w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-300x208.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-768x533.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n										<img width=\"750\" height=\"1000\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834.jpg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834-225x300.jpg 225w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n										<img width=\"750\" height=\"750\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788.jpg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788-150x150.jpg 150w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788-300x300.jpg 300w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n			<h2>THE STRANGERS PREY AT NIGHT</h2>		\n			<h2>GRAND FORMAT PHOTO-OP STANDEE</h2>		\n			<h1>MARKETING AT ITS FINEST, TAILORED FOR SOCIAL MEDIA</h1>		\n		<p>This theatrical display allows fans to take photos with Dollface, Pin-up Girl, the Man in the Mask and share their photos on social media.</p>		\n										<img width=\"942\" height=\"703\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003.jpg 942w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003-300x224.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003-768x573.jpg 768w\" sizes=\"(max-width: 942px) 100vw, 942px\" />											\n										<img width=\"950\" height=\"1024\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-950x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-950x1024.jpg 950w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-278x300.jpg 278w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-768x828.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n.jpg 1000w\" sizes=\"(max-width: 950px) 100vw, 950px\" />											\n										<img width=\"1024\" height=\"576\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-1024x576.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-1024x576.jpg 1024w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-300x169.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-768x432.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01.jpg 1280w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n			<h2>THEATRICAL DISPLAYS</h2>		\n			<h2>FREE BIRDS – RESIN DISPLAY</h2>		\n			<h1>THEATRICAL DISPLAYS</h1>		\n		<p>OnDisplay Creative takes pride in its long history of leading the Entertainment Industry in creating and producing eye catching displays.</p>		\n										<img width=\"650\" height=\"751\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/47Meters_02_cropped.jpg.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/47Meters_02_cropped.jpg.jpg 650w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/47Meters_02_cropped.jpg-260x300.jpg 260w\" sizes=\"(max-width: 650px) 100vw, 650px\" />											\n										<img width=\"750\" height=\"1000\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/DFCV6gdXgAAoGDM.jpeg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/DFCV6gdXgAAoGDM.jpeg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/DFCV6gdXgAAoGDM-225x300.jpeg 225w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n										<img width=\"750\" height=\"1000\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/DEI2HYnW0AEERBl.jpeg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/DEI2HYnW0AEERBl.jpeg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/DEI2HYnW0AEERBl-225x300.jpeg 225w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n							<a href=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/RfNight_01A_002.jpg\" data-elementor-lightbox-slideshow=\"946f91d\" data-elementor-lightbox-index=\"0\">		\n		</a>						\n							Previous\n							Next\n		</a>						\n			<h2>HOME ENTERTAINMENT</h2>		\n			<h2>THE SECRET LIFE OF PETS</h2>		\n			<h1>HOME ENTERTAINMENT</h1>		\n		<p>OnDisplay Creative works extensively with many major studios to provide the most effective marketing and merchandising materials. We have a vast understanding of the creative and production needs unique to the Entertainment Industry.</p>		\n							Previous\n							Next\n			<h2>RETAIL</h2>		\n			<h2>SUMMER SALE EVENT - OLD NAVY</h2>		\n										<img width=\"750\" height=\"500\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/SUMMER_2_cropped.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/SUMMER_2_cropped.jpg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/SUMMER_2_cropped-300x200.jpg 300w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n			<h2>SURF BOARD</h2>		\n			<h3>SWAPPABLE POSTER</h3>		\n		<p>This Semi-Permanent display had interchangeable graphics to promote sale items throughout the Summer campaign.</p>		\n										<img width=\"750\" height=\"500\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Hodilay_1_cropped.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Hodilay_1_cropped.jpg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Hodilay_1_cropped-300x200.jpg 300w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n			<h2>HOLIDAY STAGE</h2>		\n			<h3>STAGE CHANGE OUTS</h3>		\n		<p>Multiple items were produced and displayed on this large storefront extravaganza.</p>		\n										<img width=\"750\" height=\"500\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-1.jpeg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-1.jpeg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-1-300x200.jpeg 300w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n			<h2>LOVE GAP</h2>		\n			<h3>QUALITY PROTOTYPING</h3>		\n		<p>OnDisplay Creative is very adept in incorporating a variety of substrates to provide captivating Point-of-Purchase displays. </p>		\n			<h2>TOUCH SCREEN DISPLAYS</h2>		\n			<h2>CINE EUROPE – BARCELONA</h2>		\n			<h1>INTERACTIVE TOUCH SCREEN DISPLAYS</h1>		\n			<h3>ONDISPLAY CREATIVE HELPS GIVE SONY PICTURES A GREAT PRESENCE AT INDUSTRY CONVENTIONS WORLD WIDE.</h3>		\n		<p>When Sony Pictures needed to incorporate permanent fixture visibility with cutting edge A/V technology, they turned to OnDisplay Creative. Creating a cost effective, customized and interactive touchscreen display allowed customers an innovative alternative to traditional in-theater displays. The technology used, grants clients the ability to present pictures, videos and information in a fun, attractive way drawing attention to the brand. The monitors can be placed into any display environment (corrugate or permanent) which can be designed, built, and installed by OnDisplay Creative or supplied by the client.</p>		\n			<h2>COMIC-CON - SAN DIEGO</h2>		\n										<img width=\"1024\" height=\"640\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/TOUCH_MASK_01C-1024x640.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/TOUCH_MASK_01C-1024x640.jpg 1024w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/TOUCH_MASK_01C-300x188.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/TOUCH_MASK_01C-768x480.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/TOUCH_MASK_01C.jpg 1300w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n		<p>Comic-Con is a multigenre entertainment and comic convention held annually in San Diego, California. It\'s the largest convention of its kind in the world with over 130,000 attendees. It\'s dedicated to creating awareness of comics and related popular art forms that celebrate the historic and ongoing contribution to art and culture.</p>		\n			<h2>CINEMA-CON - LAS VEGAS</h2>		\n		<p>OnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.</p>		\n										<img width=\"480\" height=\"640\" src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/spidey_touchscreen_02.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/spidey_touchscreen_02.jpg 480w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/spidey_touchscreen_02-225x300.jpg 225w\" sizes=\"(max-width: 480px) 100vw, 480px\" />											\n		<p>Since its inception in 2011, CinemaCon, the Official convention of NATO (The National Association of Theatre Owners) has become the most important gathering of cinema owners and operators from around the world representing more than 31,000 movie screens in all 50 states, and additional cinemas in 80 countries worldwide.</p>https://vimeo.com/102278147		\n			<h2>TOUCH SCREEN DISPLAYS</h2>		\n			<h2>CINE EUROPE – BARCELONA</h2>		\n			<h4>Our company is a collective of amazing people striving to build delightful products.</h4>		\n		<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.</p>		\n			<a href=\"#\" role=\"button\">\n						Read More\n					</a>','Home','','inherit','closed','closed','','5-revision-v1','','','2019-09-25 06:16:58','2019-09-25 06:16:58','',5,'http://23.235.208.11/~ondisp5/wp/2019/09/25/5-revision-v1/',0,'revision','',0),(593,1,'2019-09-25 06:17:48','2019-09-25 06:17:48','<h2>#WHAT\'S COOL</h2>\n<h2>INNOVATIONS FROM ONDISPLAY CREATIVE</h2>\n<h1>LIVING STANDEES HAUNTING THEATERS</h1>\n<h3>ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS</h3>\n<h2>INSIDIOUS – THE LAST KEY</h2>\nMovie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!\n\n<img src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" width=\"768\" height=\"1024\">\n<img src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" width=\"768\" height=\"1024\">\nhttps://vimeo.com/257088337\n<h2>INSIDIOUS CHAPTER 3</h2>\nOnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.\n\n<img src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset.jpeg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset.jpeg 1000w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-300x240.jpeg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-768x614.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" width=\"1000\" height=\"800\">\nhttps://vimeo.com/130807026\n<h1>VIRTUAL REALITY EXPERIENCE</h1>\n<h2>SPIDER-MAN HOMECOMING DISPLAY</h2>\nSubmerse yourself in the world of your friendly neighborhood Spider-Man in this fun and thrilling VR Theatrical Display.&nbsp;&nbsp;Based on the all-new 2017 film, the Spider-Man Homecoming VR Experience is a first-person look through the eyes of Spidey himself.\n\n<img src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-1024x711.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-1024x711.jpg 1024w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-300x208.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-768x533.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" width=\"1024\" height=\"711\">\n<img src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834.jpg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834-225x300.jpg 225w\" sizes=\"(max-width: 750px) 100vw, 750px\" width=\"750\" height=\"1000\">\n<img src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788.jpg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788-150x150.jpg 150w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788-300x300.jpg 300w\" sizes=\"(max-width: 750px) 100vw, 750px\" width=\"750\" height=\"750\">\n<h2>THE STRANGERS PREY AT NIGHT</h2>\n<h2>GRAND FORMAT PHOTO-OP STANDEE</h2>\n<h1>MARKETING AT ITS FINEST, TAILORED FOR SOCIAL MEDIA</h1>\nThis theatrical display allows fans to take photos with Dollface, Pin-up Girl, the Man in the Mask and share their photos on social media.\n\n<img src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003.jpg 942w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003-300x224.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003-768x573.jpg 768w\" sizes=\"(max-width: 942px) 100vw, 942px\" width=\"942\" height=\"703\">\n<img src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-950x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-950x1024.jpg 950w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-278x300.jpg 278w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-768x828.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n.jpg 1000w\" sizes=\"(max-width: 950px) 100vw, 950px\" width=\"950\" height=\"1024\">\n<img src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-1024x576.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-1024x576.jpg 1024w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-300x169.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-768x432.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01.jpg 1280w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" width=\"1024\" height=\"576\">\n<h2>THEATRICAL DISPLAYS</h2>\n<h2>FREE BIRDS – RESIN DISPLAY</h2>\n<h1>THEATRICAL DISPLAYS</h1>\nOnDisplay Creative takes pride in its long history of leading the Entertainment Industry in creating and producing eye catching displays.\n\n<img src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/47Meters_02_cropped.jpg.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/47Meters_02_cropped.jpg.jpg 650w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/47Meters_02_cropped.jpg-260x300.jpg 260w\" sizes=\"(max-width: 650px) 100vw, 650px\" width=\"650\" height=\"751\">\n<img src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/DFCV6gdXgAAoGDM.jpeg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/DFCV6gdXgAAoGDM.jpeg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/DFCV6gdXgAAoGDM-225x300.jpeg 225w\" sizes=\"(max-width: 750px) 100vw, 750px\" width=\"750\" height=\"1000\">\n<img src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/DEI2HYnW0AEERBl.jpeg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/DEI2HYnW0AEERBl.jpeg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/DEI2HYnW0AEERBl-225x300.jpeg 225w\" sizes=\"(max-width: 750px) 100vw, 750px\" width=\"750\" height=\"1000\">\n<a href=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/RfNight_01A_002.jpg\" data-elementor-lightbox-slideshow=\"946f91d\" data-elementor-lightbox-index=\"0\">\n</a>\nPrevious\nNext\n<h2>HOME ENTERTAINMENT</h2>\n<h2>THE SECRET LIFE OF PETS</h2>\n<h1>HOME ENTERTAINMENT</h1>\nOnDisplay Creative works extensively with many major studios to provide the most effective marketing and merchandising materials. We have a vast understanding of the creative and production needs unique to the Entertainment Industry.\n\nPrevious\nNext\n<h2>RETAIL</h2>\n<h2>SUMMER SALE EVENT - OLD NAVY</h2>\n<img src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/SUMMER_2_cropped.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/SUMMER_2_cropped.jpg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/SUMMER_2_cropped-300x200.jpg 300w\" sizes=\"(max-width: 750px) 100vw, 750px\" width=\"750\" height=\"500\">\n<h2>SURF BOARD</h2>\n<h3>SWAPPABLE POSTER</h3>\nThis Semi-Permanent display had interchangeable graphics to promote sale items throughout the Summer campaign.\n\n<img src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Hodilay_1_cropped.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Hodilay_1_cropped.jpg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Hodilay_1_cropped-300x200.jpg 300w\" sizes=\"(max-width: 750px) 100vw, 750px\" width=\"750\" height=\"500\">\n<h2>HOLIDAY STAGE</h2>\n<h3>STAGE CHANGE OUTS</h3>\nMultiple items were produced and displayed on this large storefront extravaganza.\n\n<img src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-1.jpeg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-1.jpeg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-1-300x200.jpeg 300w\" sizes=\"(max-width: 750px) 100vw, 750px\" width=\"750\" height=\"500\">\n<h2>LOVE GAP</h2>\n<h3>QUALITY PROTOTYPING</h3>\nOnDisplay Creative is very adept in incorporating a variety of substrates to provide captivating Point-of-Purchase displays.\n<h2>TOUCH SCREEN DISPLAYS</h2>\n<h2>CINE EUROPE – BARCELONA</h2>\n<h1>INTERACTIVE TOUCH SCREEN DISPLAYS</h1>\n<h3>ONDISPLAY CREATIVE HELPS GIVE SONY PICTURES A GREAT PRESENCE AT INDUSTRY CONVENTIONS WORLD WIDE.</h3>\nWhen Sony Pictures needed to incorporate permanent fixture visibility with cutting edge A/V technology, they turned to OnDisplay Creative. Creating a cost effective, customized and interactive touchscreen display allowed customers an innovative alternative to traditional in-theater displays. The technology used, grants clients the ability to present pictures, videos and information in a fun, attractive way drawing attention to the brand. The monitors can be placed into any display environment (corrugate or permanent)&nbsp;which can be designed, built, and installed by OnDisplay Creative or supplied by the client.\n<h2>COMIC-CON - SAN DIEGO</h2>\n<img src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/TOUCH_MASK_01C-1024x640.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/TOUCH_MASK_01C-1024x640.jpg 1024w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/TOUCH_MASK_01C-300x188.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/TOUCH_MASK_01C-768x480.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/TOUCH_MASK_01C.jpg 1300w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" width=\"1024\" height=\"640\">\n\nComic-Con is a multigenre entertainment and comic convention held annually in San Diego, California. It\'s the largest convention of its kind in the world with over 130,000 attendees. It\'s dedicated to creating awareness of comics and related popular art forms that celebrate the historic and ongoing contribution to art and culture.\n<h2>CINEMA-CON - LAS VEGAS</h2>\nOnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.\n\n<img src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/spidey_touchscreen_02.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/spidey_touchscreen_02.jpg 480w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/spidey_touchscreen_02-225x300.jpg 225w\" sizes=\"(max-width: 480px) 100vw, 480px\" width=\"480\" height=\"640\">\n\nSince its inception in 2011, CinemaCon, the Official convention of NATO (The National Association of Theatre Owners) has become the most important gathering of cinema owners and operators from around the world representing more than 31,000 movie screens in all 50 states, and additional cinemas in 80 countries worldwide.\n\nhttps://vimeo.com/102278147\n<h2>TOUCH SCREEN DISPLAYS</h2>\n<h2>CINE EUROPE – BARCELONA</h2>\n<h4>Our company is a collective of amazing people striving to build delightful products.</h4>\nIt is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.\n\n<a href=\"#\" role=\"button\">\nRead More\n</a>','Home BU3','','publish','closed','closed','','home-5','','','2019-09-25 06:17:50','2019-09-25 06:17:50','',0,'http://23.235.208.11/~ondisp5/wp/?page_id=593',0,'page','',0),(594,1,'2019-09-25 06:17:48','2019-09-25 06:17:48','<h2>#WHAT\'S COOL</h2>\n<h2>INNOVATIONS FROM ONDISPLAY CREATIVE</h2>\n<h1>LIVING STANDEES HAUNTING THEATERS</h1>\n<h3>ONDISPLAY CREATIVE\'S LIVING STANDEES CONTINUE TO SCARE MOVIE GOERS</h3>\n<h2>INSIDIOUS – THE LAST KEY</h2>\nMovie-goers got unexpected scares at the busy cinema lobby via a mysterious movie standee from which came shocking but fun movements and blood-curdling screams!\n\n<img src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" width=\"768\" height=\"1024\">\n<img src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-768x1024.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1-225x300.jpg 225w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Insidious4_pic2-1.jpg 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" width=\"768\" height=\"1024\">\nhttps://vimeo.com/257088337\n<h2>INSIDIOUS CHAPTER 3</h2>\nOnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.\n\n<img src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset.jpeg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset.jpeg 1000w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-300x240.jpeg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-768x614.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" width=\"1000\" height=\"800\">\nhttps://vimeo.com/130807026\n<h1>VIRTUAL REALITY EXPERIENCE</h1>\n<h2>SPIDER-MAN HOMECOMING DISPLAY</h2>\nSubmerse yourself in the world of your friendly neighborhood Spider-Man in this fun and thrilling VR Theatrical Display.&nbsp;&nbsp;Based on the all-new 2017 film, the Spider-Man Homecoming VR Experience is a first-person look through the eyes of Spidey himself.\n\n<img src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-1024x711.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-1024x711.jpg 1024w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-300x208.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Spidey_Home_V4_002-768x533.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" width=\"1024\" height=\"711\">\n<img src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834.jpg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3834-225x300.jpg 225w\" sizes=\"(max-width: 750px) 100vw, 750px\" width=\"750\" height=\"1000\">\n<img src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788.jpg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788-150x150.jpg 150w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/IMG_3788-300x300.jpg 300w\" sizes=\"(max-width: 750px) 100vw, 750px\" width=\"750\" height=\"750\">\n<h2>THE STRANGERS PREY AT NIGHT</h2>\n<h2>GRAND FORMAT PHOTO-OP STANDEE</h2>\n<h1>MARKETING AT ITS FINEST, TAILORED FOR SOCIAL MEDIA</h1>\nThis theatrical display allows fans to take photos with Dollface, Pin-up Girl, the Man in the Mask and share their photos on social media.\n\n<img src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003.jpg 942w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003-300x224.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/003-768x573.jpg 768w\" sizes=\"(max-width: 942px) 100vw, 942px\" width=\"942\" height=\"703\">\n<img src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-950x1024.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-950x1024.jpg 950w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-278x300.jpg 278w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n-768x828.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/26222472_170774200201231_6120473304701599744_n.jpg 1000w\" sizes=\"(max-width: 950px) 100vw, 950px\" width=\"950\" height=\"1024\">\n<img src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-1024x576.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-1024x576.jpg 1024w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-300x169.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01-768x432.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/VIDEO_COMING_SOON_01.jpg 1280w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" width=\"1024\" height=\"576\">\n<h2>THEATRICAL DISPLAYS</h2>\n<h2>FREE BIRDS – RESIN DISPLAY</h2>\n<h1>THEATRICAL DISPLAYS</h1>\nOnDisplay Creative takes pride in its long history of leading the Entertainment Industry in creating and producing eye catching displays.\n\n<img src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/47Meters_02_cropped.jpg.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/47Meters_02_cropped.jpg.jpg 650w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/47Meters_02_cropped.jpg-260x300.jpg 260w\" sizes=\"(max-width: 650px) 100vw, 650px\" width=\"650\" height=\"751\">\n<img src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/DFCV6gdXgAAoGDM.jpeg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/DFCV6gdXgAAoGDM.jpeg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/DFCV6gdXgAAoGDM-225x300.jpeg 225w\" sizes=\"(max-width: 750px) 100vw, 750px\" width=\"750\" height=\"1000\">\n<img src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/DEI2HYnW0AEERBl.jpeg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/DEI2HYnW0AEERBl.jpeg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/DEI2HYnW0AEERBl-225x300.jpeg 225w\" sizes=\"(max-width: 750px) 100vw, 750px\" width=\"750\" height=\"1000\">\n<a href=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/RfNight_01A_002.jpg\" data-elementor-lightbox-slideshow=\"946f91d\" data-elementor-lightbox-index=\"0\">\n</a>\nPrevious\nNext\n<h2>HOME ENTERTAINMENT</h2>\n<h2>THE SECRET LIFE OF PETS</h2>\n<h1>HOME ENTERTAINMENT</h1>\nOnDisplay Creative works extensively with many major studios to provide the most effective marketing and merchandising materials. We have a vast understanding of the creative and production needs unique to the Entertainment Industry.\n\nPrevious\nNext\n<h2>RETAIL</h2>\n<h2>SUMMER SALE EVENT - OLD NAVY</h2>\n<img src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/SUMMER_2_cropped.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/SUMMER_2_cropped.jpg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/SUMMER_2_cropped-300x200.jpg 300w\" sizes=\"(max-width: 750px) 100vw, 750px\" width=\"750\" height=\"500\">\n<h2>SURF BOARD</h2>\n<h3>SWAPPABLE POSTER</h3>\nThis Semi-Permanent display had interchangeable graphics to promote sale items throughout the Summer campaign.\n\n<img src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Hodilay_1_cropped.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Hodilay_1_cropped.jpg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/Hodilay_1_cropped-300x200.jpg 300w\" sizes=\"(max-width: 750px) 100vw, 750px\" width=\"750\" height=\"500\">\n<h2>HOLIDAY STAGE</h2>\n<h3>STAGE CHANGE OUTS</h3>\nMultiple items were produced and displayed on this large storefront extravaganza.\n\n<img src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-1.jpeg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-1.jpeg 750w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/image-asset-1-300x200.jpeg 300w\" sizes=\"(max-width: 750px) 100vw, 750px\" width=\"750\" height=\"500\">\n<h2>LOVE GAP</h2>\n<h3>QUALITY PROTOTYPING</h3>\nOnDisplay Creative is very adept in incorporating a variety of substrates to provide captivating Point-of-Purchase displays.\n<h2>TOUCH SCREEN DISPLAYS</h2>\n<h2>CINE EUROPE – BARCELONA</h2>\n<h1>INTERACTIVE TOUCH SCREEN DISPLAYS</h1>\n<h3>ONDISPLAY CREATIVE HELPS GIVE SONY PICTURES A GREAT PRESENCE AT INDUSTRY CONVENTIONS WORLD WIDE.</h3>\nWhen Sony Pictures needed to incorporate permanent fixture visibility with cutting edge A/V technology, they turned to OnDisplay Creative. Creating a cost effective, customized and interactive touchscreen display allowed customers an innovative alternative to traditional in-theater displays. The technology used, grants clients the ability to present pictures, videos and information in a fun, attractive way drawing attention to the brand. The monitors can be placed into any display environment (corrugate or permanent)&nbsp;which can be designed, built, and installed by OnDisplay Creative or supplied by the client.\n<h2>COMIC-CON - SAN DIEGO</h2>\n<img src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/TOUCH_MASK_01C-1024x640.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/TOUCH_MASK_01C-1024x640.jpg 1024w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/TOUCH_MASK_01C-300x188.jpg 300w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/TOUCH_MASK_01C-768x480.jpg 768w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/TOUCH_MASK_01C.jpg 1300w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" width=\"1024\" height=\"640\">\n\nComic-Con is a multigenre entertainment and comic convention held annually in San Diego, California. It\'s the largest convention of its kind in the world with over 130,000 attendees. It\'s dedicated to creating awareness of comics and related popular art forms that celebrate the historic and ongoing contribution to art and culture.\n<h2>CINEMA-CON - LAS VEGAS</h2>\nOnDisplay Creative designed, developed, manufactured and fulfilled this revolutionary display shipping to 16 different countries across the globe. Utilizing the latest technology, this display included a hidden camera monitoring system along with a preprogramed sound chip, speakers and foot trigger.\n\n<img src=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/spidey_touchscreen_02.jpg\" alt=\"\" srcset=\"http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/spidey_touchscreen_02.jpg 480w, http://23.235.208.11/~ondisp5/wp/wp-content/uploads/2019/09/spidey_touchscreen_02-225x300.jpg 225w\" sizes=\"(max-width: 480px) 100vw, 480px\" width=\"480\" height=\"640\">\n\nSince its inception in 2011, CinemaCon, the Official convention of NATO (The National Association of Theatre Owners) has become the most important gathering of cinema owners and operators from around the world representing more than 31,000 movie screens in all 50 states, and additional cinemas in 80 countries worldwide.\n\nhttps://vimeo.com/102278147\n<h2>TOUCH SCREEN DISPLAYS</h2>\n<h2>CINE EUROPE – BARCELONA</h2>\n<h4>Our company is a collective of amazing people striving to build delightful products.</h4>\nIt is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using.\n\n<a href=\"#\" role=\"button\">\nRead More\n</a>','Home BU3','','inherit','closed','closed','','593-revision-v1','','','2019-09-25 06:17:48','2019-09-25 06:17:48','',593,'http://23.235.208.11/~ondisp5/wp/2019/09/25/593-revision-v1/',0,'revision','',0);
/*!40000 ALTER TABLE `wp_posts` ENABLE KEYS */;
UNLOCK TABLES;

-- Dumped table `wp_posts` with 538 row(s)
--

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

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

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

LOCK TABLES `wp_term_relationships` WRITE;
/*!40000 ALTER TABLE `wp_term_relationships` DISABLE KEYS */;
INSERT INTO `wp_term_relationships` VALUES (1,1,0),(14,2,0),(13,2,0),(12,2,0),(167,3,0),(170,3,0),(173,3,0),(178,3,0),(181,3,0),(184,3,0),(252,4,0),(264,4,0),(270,4,0),(276,4,0),(298,4,0),(302,4,0),(308,4,0),(312,4,0),(314,4,0),(345,4,0),(370,4,0);
/*!40000 ALTER TABLE `wp_term_relationships` ENABLE KEYS */;
UNLOCK TABLES;

-- Dumped table `wp_term_relationships` with 21 row(s)
--

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

DROP TABLE IF EXISTS `wp_term_taxonomy`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_term_taxonomy` (
  `term_taxonomy_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `term_id` bigint(20) unsigned NOT NULL DEFAULT 0,
  `taxonomy` varchar(32) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `description` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
  `parent` bigint(20) unsigned NOT NULL DEFAULT 0,
  `count` bigint(20) NOT NULL DEFAULT 0,
  PRIMARY KEY (`term_taxonomy_id`),
  UNIQUE KEY `term_id_taxonomy` (`term_id`,`taxonomy`),
  KEY `taxonomy` (`taxonomy`)
) ENGINE=MyISAM AUTO_INCREMENT=5 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

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

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

-- Dumped table `wp_term_taxonomy` with 4 row(s)
--

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

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

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

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

-- Dumped table `wp_termmeta` with 0 row(s)
--

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

DROP TABLE IF EXISTS `wp_terms`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_terms` (
  `term_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `slug` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `term_group` bigint(10) NOT NULL DEFAULT 0,
  PRIMARY KEY (`term_id`),
  KEY `slug` (`slug`(191)),
  KEY `name` (`name`(191))
) ENGINE=MyISAM AUTO_INCREMENT=5 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

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

LOCK TABLES `wp_terms` WRITE;
/*!40000 ALTER TABLE `wp_terms` DISABLE KEYS */;
INSERT INTO `wp_terms` VALUES (1,'Uncategorized','uncategorized',0),(2,'main-menu','main-menu',0),(3,'widget','widget',0),(4,'header','header',0);
/*!40000 ALTER TABLE `wp_terms` ENABLE KEYS */;
UNLOCK TABLES;

-- Dumped table `wp_terms` with 4 row(s)
--

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

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

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

LOCK TABLES `wp_usermeta` WRITE;
/*!40000 ALTER TABLE `wp_usermeta` DISABLE KEYS */;
INSERT INTO `wp_usermeta` VALUES (1,1,'nickname','csadmin'),(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','theme_editor_notice'),(15,1,'show_welcome_panel','0'),(23,1,'session_tokens','a:7:{s:64:\"bc59dec425f305f6139460fcc26391bde904cd867cc0c057d6aab806e8c8afd3\";a:4:{s:10:\"expiration\";i:1569506270;s:2:\"ip\";s:13:\"172.89.88.130\";s:2:\"ua\";s:82:\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.13; rv:69.0) Gecko/20100101 Firefox/69.0\";s:5:\"login\";i:1569333470;}s:64:\"0b0f8f38e56100503905af7e69c10f2581d44399d35cf1be2d78d1a7d4164a87\";a:4:{s:10:\"expiration\";i:1569508219;s:2:\"ip\";s:13:\"172.89.88.130\";s:2:\"ua\";s:82:\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.13; rv:69.0) Gecko/20100101 Firefox/69.0\";s:5:\"login\";i:1569335419;}s:64:\"8fddef427f44d007a2f23e7c2dd2c29bf79810150f1f49ed2fd5cd5496aefae0\";a:4:{s:10:\"expiration\";i:1569508222;s:2:\"ip\";s:13:\"172.89.88.130\";s:2:\"ua\";s:82:\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.13; rv:69.0) Gecko/20100101 Firefox/69.0\";s:5:\"login\";i:1569335422;}s:64:\"b0ba30e4d65be67fc7462326d2a1504f5aedf6011d03701ad236cea7719b7bdf\";a:4:{s:10:\"expiration\";i:1569511680;s:2:\"ip\";s:13:\"172.89.88.130\";s:2:\"ua\";s:82:\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.13; rv:69.0) Gecko/20100101 Firefox/69.0\";s:5:\"login\";i:1569338880;}s:64:\"3ee203418af6ff5c37bdb332268d75ca9447c8f7438479d4e8b454297dad27b8\";a:4:{s:10:\"expiration\";i:1569511682;s:2:\"ip\";s:13:\"172.89.88.130\";s:2:\"ua\";s:82:\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.13; rv:69.0) Gecko/20100101 Firefox/69.0\";s:5:\"login\";i:1569338882;}s:64:\"87c81b761bac7e687a7be8fbb945ce85d58a3866a0a93ab89184cfb10abd3fde\";a:4:{s:10:\"expiration\";i:1569555757;s:2:\"ip\";s:13:\"172.89.88.130\";s:2:\"ua\";s:82:\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.13; rv:69.0) Gecko/20100101 Firefox/69.0\";s:5:\"login\";i:1569382957;}s:64:\"0c100c9cecc62c4c47da8a8c2bc04e111557c1f5d230928164f836c66d513bd0\";a:4:{s:10:\"expiration\";i:1569587961;s:2:\"ip\";s:13:\"172.89.88.130\";s:2:\"ua\";s:82:\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.13; rv:69.0) Gecko/20100101 Firefox/69.0\";s:5:\"login\";i:1569415161;}}'),(17,1,'wp_dashboard_quick_press_last_post_id','544'),(18,1,'community-events-location','a:1:{s:2:\"ip\";s:11:\"172.89.88.0\";}'),(19,1,'boldgrid_dismissed_admin_notices','a:2:{s:2:\"id\";s:13:\"bg-key-prompt\";s:9:\"timestamp\";i:1567901560;}'),(20,1,'jetpack_tracks_anon_id','jetpack:ImhA2dh0PXov1A9aDnl4Jtfi'),(24,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\";}'),(25,1,'metaboxhidden_nav-menus','a:2:{i:0;s:12:\"add-post_tag\";i:1;s:15:\"add-post_format\";}'),(26,1,'elementor_connect_common_data','a:6:{s:9:\"client_id\";s:32:\"ShSG3re60Ghj9cLjZYDEDYm0hh0VESUJ\";s:11:\"auth_secret\";s:32:\"CJZgiFTPHyT1pby5bHoKTwVonthvCYgJ\";s:12:\"access_token\";s:32:\"iDMGPA6ZGCf9O2m62TF1Jqv8Qf3yK1Dx\";s:19:\"access_token_secret\";s:32:\"nqonnJ9H2NWxQ8OtQlqqTOwCtlBqAeGi\";s:10:\"token_type\";s:6:\"bearer\";s:4:\"user\";O:8:\"stdClass\":1:{s:5:\"email\";s:25:\"geebers@bunchamonkeys.com\";}}'),(27,1,'nav_menu_recently_edited','2'),(28,1,'elementor_introduction','a:1:{s:10:\"rightClick\";b:1;}'),(29,1,'wp_user-settings','libraryContent=browse&editor=tinymce'),(30,1,'wp_user-settings-time','1568423267');
/*!40000 ALTER TABLE `wp_usermeta` ENABLE KEYS */;
UNLOCK TABLES;

-- Dumped table `wp_usermeta` with 27 row(s)
--

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

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

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

LOCK TABLES `wp_users` WRITE;
/*!40000 ALTER TABLE `wp_users` DISABLE KEYS */;
INSERT INTO `wp_users` VALUES (1,'csadmin','$P$BH3wTXFzquMAg1vewutqClihX8kdhS.','csadmin','maintenance@ondisplaycreative.com','','2019-09-08 00:08:38','',0,'csadmin');
/*!40000 ALTER TABLE `wp_users` ENABLE KEYS */;
UNLOCK TABLES;

-- Dumped table `wp_users` with 1 row(s)
--

--
-- Table structure for table `wp_wfblockediplog`
--

DROP TABLE IF EXISTS `wp_wfblockediplog`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_wfblockediplog` (
  `IP` binary(16) NOT NULL DEFAULT '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',
  `countryCode` varchar(2) NOT NULL,
  `blockCount` int(10) unsigned NOT NULL DEFAULT 0,
  `unixday` int(10) unsigned NOT NULL,
  `blockType` varchar(50) NOT NULL DEFAULT 'generic',
  PRIMARY KEY (`IP`,`unixday`,`blockType`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_wfblockediplog`
--

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

-- Dumped table `wp_wfblockediplog` with 0 row(s)
--

--
-- Table structure for table `wp_wfblocks7`
--

DROP TABLE IF EXISTS `wp_wfblocks7`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_wfblocks7` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `type` int(10) unsigned NOT NULL DEFAULT 0,
  `IP` binary(16) NOT NULL DEFAULT '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',
  `blockedTime` bigint(20) NOT NULL,
  `reason` varchar(255) NOT NULL,
  `lastAttempt` int(10) unsigned DEFAULT 0,
  `blockedHits` int(10) unsigned DEFAULT 0,
  `expiration` bigint(20) unsigned NOT NULL DEFAULT 0,
  `parameters` text DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `type` (`type`),
  KEY `IP` (`IP`),
  KEY `expiration` (`expiration`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_wfblocks7`
--

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

-- Dumped table `wp_wfblocks7` with 0 row(s)
--

--
-- Table structure for table `wp_wfconfig`
--

DROP TABLE IF EXISTS `wp_wfconfig`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_wfconfig` (
  `name` varchar(100) NOT NULL,
  `val` longblob DEFAULT NULL,
  `autoload` enum('no','yes') NOT NULL DEFAULT 'yes',
  PRIMARY KEY (`name`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_wfconfig`
--

LOCK TABLES `wp_wfconfig` WRITE;
/*!40000 ALTER TABLE `wp_wfconfig` DISABLE KEYS */;
INSERT INTO `wp_wfconfig` VALUES ('alertOn_update',0x30,'yes'),('alertOn_scanIssues',0x31,'yes'),('alertOn_throttle',0x30,'yes'),('alertOn_block',0x31,'yes'),('alertOn_loginLockout',0x31,'yes'),('alertOn_breachLogin',0x31,'yes'),('alertOn_lostPasswdForm',0x31,'yes'),('alertOn_adminLogin',0x31,'yes'),('alertOn_firstAdminLoginOnly',0x30,'yes'),('alertOn_nonAdminLogin',0x30,'yes'),('alertOn_firstNonAdminLoginOnly',0x30,'yes'),('alertOn_wordfenceDeactivated',0x31,'yes'),('alertOn_wafDeactivated',0x31,'yes'),('liveTrafficEnabled',0x30,'yes'),('advancedCommentScanning',0x31,'yes'),('checkSpamIP',0x31,'yes'),('spamvertizeCheck',0x31,'yes'),('liveTraf_ignorePublishers',0x31,'yes'),('liveTraf_displayExpandedRecords',0x30,'no'),('scheduledScansEnabled',0x31,'yes'),('lowResourceScansEnabled',0x30,'yes'),('scansEnabled_checkGSB',0x31,'yes'),('scansEnabled_checkHowGetIPs',0x31,'yes'),('scansEnabled_core',0x31,'yes'),('scansEnabled_themes',0x30,'yes'),('scansEnabled_plugins',0x30,'yes'),('scansEnabled_coreUnknown',0x31,'yes'),('scansEnabled_malware',0x31,'yes'),('scansEnabled_fileContents',0x31,'yes'),('scansEnabled_fileContentsGSB',0x31,'yes'),('scansEnabled_checkReadableConfig',0x31,'yes'),('scansEnabled_suspectedFiles',0x31,'yes'),('scansEnabled_posts',0x31,'yes'),('scansEnabled_comments',0x31,'yes'),('scansEnabled_suspiciousOptions',0x31,'yes'),('scansEnabled_passwds',0x31,'yes'),('scansEnabled_diskSpace',0x31,'yes'),('scansEnabled_wafStatus',0x31,'yes'),('scansEnabled_options',0x31,'yes'),('scansEnabled_wpscan_fullPathDisclosure',0x31,'yes'),('scansEnabled_wpscan_directoryListingEnabled',0x31,'yes'),('scansEnabled_dns',0x31,'yes'),('scansEnabled_scanImages',0x30,'yes'),('scansEnabled_highSense',0x30,'yes'),('scansEnabled_oldVersions',0x31,'yes'),('scansEnabled_suspiciousAdminUsers',0x31,'yes'),('liveActivityPauseEnabled',0x31,'yes'),('firewallEnabled',0x31,'yes'),('blockFakeBots',0x30,'yes'),('autoBlockScanners',0x31,'yes'),('loginSecurityEnabled',0x31,'yes'),('loginSec_strongPasswds_enabled',0x31,'yes'),('loginSec_breachPasswds_enabled',0x31,'yes'),('loginSec_lockInvalidUsers',0x30,'yes'),('loginSec_maskLoginErrors',0x31,'yes'),('loginSec_blockAdminReg',0x31,'yes'),('loginSec_disableAuthorScan',0x31,'yes'),('loginSec_disableOEmbedAuthor',0x30,'yes'),('loginSec_requireAdminTwoFactor',0x30,'yes'),('notification_updatesNeeded',0x31,'yes'),('notification_securityAlerts',0x31,'yes'),('notification_promotions',0x31,'yes'),('notification_blogHighlights',0x31,'yes'),('notification_productUpdates',0x31,'yes'),('notification_scanStatus',0x31,'yes'),('other_hideWPVersion',0x30,'yes'),('other_blockBadPOST',0x30,'yes'),('other_scanComments',0x31,'yes'),('other_pwStrengthOnUpdate',0x31,'yes'),('other_WFNet',0x31,'yes'),('other_scanOutside',0x30,'yes'),('other_bypassLitespeedNoabort',0x30,'yes'),('deleteTablesOnDeact',0x30,'yes'),('autoUpdate',0x30,'yes'),('startScansRemotely',0x30,'yes'),('disableConfigCaching',0x30,'yes'),('addCacheComment',0x30,'yes'),('disableCodeExecutionUploads',0x30,'yes'),('allowHTTPSCaching',0x30,'yes'),('debugOn',0x30,'yes'),('email_summary_enabled',0x31,'yes'),('email_summary_dashboard_widget_enabled',0x31,'yes'),('ssl_verify',0x31,'yes'),('ajaxWatcherDisabled_front',0x30,'yes'),('ajaxWatcherDisabled_admin',0x30,'yes'),('wafAlertOnAttacks',0x31,'yes'),('disableWAFIPBlocking',0x30,'yes'),('showAdminBarMenu',0x31,'yes'),('displayTopLevelOptions',0x31,'yes'),('displayTopLevelBlocking',0x30,'yes'),('displayTopLevelLiveTraffic',0x30,'yes'),('displayAutomaticBlocks',0x31,'yes'),('allowLegacy2FA',0x30,'yes'),('scan_include_extra','','yes'),('alertEmails',0x6D61696E74656E616E6365406F6E646973706C617963726561746976652E636F6D,'yes'),('liveTraf_ignoreUsers','','yes'),('liveTraf_ignoreIPs','','yes'),('liveTraf_ignoreUA','','yes'),('maxMem',0x323536,'yes'),('scan_exclude','','yes'),('scan_maxIssues',0x31303030,'yes'),('scan_maxDuration','','yes'),('whitelisted','','yes'),('whitelistedServices',0x7B7D,'yes'),('bannedURLs','','yes'),('maxExecutionTime',0x30,'yes'),('howGetIPs','','yes'),('actUpdateInterval',0x32,'yes'),('alert_maxHourly',0x30,'yes'),('loginSec_userBlacklist','','yes'),('liveTraf_maxRows',0x32303030,'yes'),('liveTraf_maxAge',0x3330,'yes'),('neverBlockBG',0x6E65766572426C6F636B5665726966696564,'yes'),('loginSec_countFailMins',0x323430,'yes'),('loginSec_lockoutMins',0x323430,'yes'),('loginSec_strongPasswds',0x70756273,'yes'),('loginSec_breachPasswds',0x61646D696E73,'yes'),('loginSec_maxFailures',0x3230,'yes'),('loginSec_maxForgotPasswd',0x3230,'yes'),('maxGlobalRequests',0x44495341424C4544,'yes'),('maxGlobalRequests_action',0x7468726F74746C65,'yes'),('maxRequestsCrawlers',0x44495341424C4544,'yes'),('maxRequestsCrawlers_action',0x7468726F74746C65,'yes'),('maxRequestsHumans',0x44495341424C4544,'yes'),('maxRequestsHumans_action',0x7468726F74746C65,'yes'),('max404Crawlers',0x44495341424C4544,'yes'),('max404Crawlers_action',0x7468726F74746C65,'yes'),('max404Humans',0x44495341424C4544,'yes'),('max404Humans_action',0x7468726F74746C65,'yes'),('blockedTime',0x333030,'yes'),('email_summary_interval',0x7765656B6C79,'yes'),('email_summary_excluded_directories',0x77702D636F6E74656E742F63616368652C77702D636F6E74656E742F77666C6F6773,'yes'),('allowed404s',0x2F66617669636F6E2E69636F0A2F6170706C652D746F7563682D69636F6E2A2E706E670A2F2A4032782E706E670A2F62726F77736572636F6E6669672E786D6C,'yes'),('wafAlertWhitelist','','yes'),('wafAlertInterval',0x363030,'yes'),('wafAlertThreshold',0x313030,'yes'),('howGetIPs_trusted_proxies','','yes'),('scanType',0x7374616E64617264,'yes'),('manualScanType',0x6F6E63654461696C79,'yes'),('schedStartHour',0x38,'yes'),('schedMode',0x6175746F,'yes'),('cbl_loggedInBlocked','','yes'),('cbl_action',0x626C6F636B,'yes'),('cbl_redirURL','','yes'),('cbl_bypassRedirURL','','yes'),('cbl_bypassRedirDest','','yes'),('cbl_bypassViewURL','','yes'),('loginSec_enableSeparateTwoFactor','','yes'),('blockCustomText','','yes'),('alertOn_severityLevel',0x3235,'yes'),('apiKey',0x35653136653435373631663866323530316331393539653532643665646338626661323962366566633531346266653033633732396465333965353834313430303234393332643863623963333537326335663466346232363566393432636336363630646666343738373661646433653932353435383561306539393032333830656136666664303462346364313061353035386635356339623061613864,'yes'),('keyType',0x66726565,'yes'),('isPaid','','yes'),('betaThreatDefenseFeed',0x30,'yes'),('timeoffset_wf_updated',0x31353639343135313839,'yes'),('cacheType',0x64697361626C6564,'yes'),('detectProxyRecommendation','','no'),('dismissAutoPrependNotice',0x31,'yes'),('onboardingAttempt1',0x736B6970706564,'yes'),('onboardingAttempt2',0x6C6963656E7365,'yes'),('onboardingAttempt3','','no'),('onboardingAttempt3Initial',0x30,'yes'),('needsNewTour_dashboard',0x31,'yes'),('needsNewTour_firewall',0x31,'yes'),('needsNewTour_scan',0x31,'yes'),('needsNewTour_blocking',0x31,'yes'),('needsNewTour_livetraffic',0x31,'yes'),('needsNewTour_loginsecurity',0x31,'yes'),('needsUpgradeTour_dashboard',0x30,'yes'),('needsUpgradeTour_firewall',0x30,'yes'),('needsUpgradeTour_scan',0x30,'yes'),('needsUpgradeTour_blocking',0x30,'yes'),('needsUpgradeTour_livetraffic',0x30,'yes'),('needsUpgradeTour_loginsecurity',0x30,'yes'),('supportContent',0x7B22746F70223A5B7B227469746C65223A224920616D206C6F636B6564206F7574206F66206D792073697465222C227065726D616C696E6B223A2268747470733A5C2F5C2F7777772E776F726466656E63652E636F6D5C2F68656C705C2F626C6F636B696E675C2F626C6F636B65642D6F722D6C6F636B65642D6F75745C2F23692D616D2D6C6F636B65642D6F75742D6F662D6D792D73697465222C226F72646572223A307D2C7B227469746C65223A224F7074696D697A696E6720546865204669726577616C6C222C227065726D616C696E6B223A2268747470733A5C2F5C2F7777772E776F726466656E63652E636F6D5C2F68656C705C2F6669726577616C6C5C2F6F7074696D697A696E672D7468652D6669726577616C6C5C2F222C226F72646572223A317D2C7B227469746C65223A22576F726466656E636520576562204170706C69636174696F6E204669726577616C6C202857414629222C227065726D616C696E6B223A2268747470733A5C2F5C2F7777772E776F726466656E63652E636F6D5C2F68656C705C2F6669726577616C6C5C2F222C226F72646572223A327D2C7B227469746C65223A225363616E2054726F75626C6573686F6F74696E67222C227065726D616C696E6B223A2268747470733A5C2F5C2F7777772E776F726466656E63652E636F6D5C2F68656C705C2F7363616E5C2F74726F75626C6573686F6F74696E675C2F222C226F72646572223A337D2C7B227469746C65223A22576F726466656E636520616E64204C6974655370656564222C227065726D616C696E6B223A2268747470733A5C2F5C2F7777772E776F726466656E63652E636F6D5C2F68656C705C2F616476616E6365645C2F73797374656D2D726571756972656D656E74735C2F6C69746573706565645C2F222C226F72646572223A347D2C7B227469746C65223A2254776F2D466163746F722041757468656E7469636174696F6E222C227065726D616C696E6B223A2268747470733A5C2F5C2F7777772E776F726466656E63652E636F6D5C2F68656C705C2F746F6F6C735C2F74776F2D666163746F722D61757468656E7469636174696F6E5C2F222C226F72646572223A357D2C7B227469746C65223A224669726577616C6C204C6561726E696E67204D6F6465222C227065726D616C696E6B223A2268747470733A5C2F5C2F7777772E776F726466656E63652E636F6D5C2F68656C705C2F6669726577616C6C5C2F6C6561726E696E672D6D6F64655C2F222C226F72646572223A367D2C7B227469746C65223A225363616E20526573756C7473222C227065726D616C696E6B223A2268747470733A5C2F5C2F7777772E776F726466656E63652E636F6D5C2F68656C705C2F7363616E5C2F7363616E2D726573756C74735C2F222C226F72646572223A377D2C7B227469746C65223A22426C6F636B6564206F72204C6F636B6564204F7574222C227065726D616C696E6B223A2268747470733A5C2F5C2F7777772E776F726466656E63652E636F6D5C2F68656C705C2F626C6F636B696E675C2F626C6F636B65642D6F722D6C6F636B65642D6F75745C2F222C226F72646572223A387D2C7B227469746C65223A2250485020466174616C206572726F723A204661696C6564206F70656E696E6720726571756972656420776F726466656E63652D7761662E706870222C227065726D616C696E6B223A2268747470733A5C2F5C2F7777772E776F726466656E63652E636F6D5C2F68656C705C2F6669726577616C6C5C2F237068702D666174616C2D6572726F722D6661696C65642D6F70656E696E672D72657175697265642D776F726466656E63652D7761662D706870222C226F72646572223A397D5D2C22616C6C223A5B7B227469746C65223A22576F726466656E63652043656E7472616C222C227065726D616C696E6B223A2268747470733A5C2F5C2F7777772E776F726466656E63652E636F6D5C2F68656C705C2F63656E7472616C5C2F222C2265786365727074223A22576F726466656E63652043656E7472616C2070726F7669646573206120706F77657266756C20616E6420656666696369656E742077617920746F206D616E61676520746865207365637572697479206F66206D616E7920576F726450726573732073697465732076696120612073696E676C6520696E746572666163652E222C226368696C6472656E223A5B7B227469746C65223A225573696E67207468652053657474696E67732070616765222C227065726D616C696E6B223A2268747470733A5C2F5C2F7777772E776F726466656E63652E636F6D5C2F68656C705C2F63656E7472616C5C2F73657474696E67735C2F222C226F72646572223A307D2C7B227469746C65223A22436F6E6E656374696E6720796F757220736974657320746F20576F726466656E63652043656E7472616C222C227065726D616C696E6B223A2268747470733A5C2F5C2F7777772E776F726466656E63652E636F6D5C2F68656C705C2F63656E7472616C5C2F636F6E6E6563745C2F222C226F72646572223A317D2C7B227469746C65223A2253657474696E672075702074776F2D666163746F722061757468656E7469636174696F6E222C227065726D616C696E6B223A2268747470733A5C2F5C2F7777772E776F726466656E63652E636F6D5C2F68656C705C2F63656E7472616C5C2F3266615C2F222C226F72646572223A327D2C7B227469746C65223A225573696E67207468652044617368626F6172642070616765222C227065726D616C696E6B223A2268747470733A5C2F5C2F7777772E776F726466656E63652E636F6D5C2F68656C705C2F63656E7472616C5C2F63656E7472616C5C2F222C226F72646572223A337D2C7B227469746C65223A2256696577696E67207363616E2046696E64696E6773222C227065726D616C696E6B223A2268747470733A5C2F5C2F7777772E776F726466656E63652E636F6D5C2F68656C705C2F63656E7472616C5C2F66696E64696E67735C2F222C226F72646572223A347D2C7B227469746C65223A225573696E672074686520436F6E66696775726174696F6E2070616765222C227065726D616C696E6B223A2268747470733A5C2F5C2F7777772E776F726466656E63652E636F6D5C2F68656C705C2F63656E7472616C5C2F636F6E66696775726174696F6E5C2F222C226F72646572223A357D2C7B227469746C65223A225573696E6720576F726466656E636520706C7567696E206F7074696F6E732054656D706C61746573222C227065726D616C696E6B223A2268747470733A5C2F5C2F7777772E776F726466656E63652E636F6D5C2F68656C705C2F63656E7472616C5C2F74656D706C617465735C2F222C226F72646572223A367D5D2C226F72646572223A307D2C7B227469746C65223A2244617368626F617264222C227065726D616C696E6B223A2268747470733A5C2F5C2F7777772E776F726466656E63652E636F6D5C2F68656C705C2F64617368626F6172645C2F222C2265786365727074223A2254686520576F726466656E63652044617368626F6172642070726F766964657320696E736967687420696E746F207468652063757272656E74207374617465206F6620796F75722073697465E28099732073656375726974792E222C226368696C6472656E223A5B7B227469746C65223A224F7074696F6E73222C227065726D616C696E6B223A2268747470733A5C2F5C2F7777772E776F726466656E63652E636F6D5C2F68656C705C2F64617368626F6172645C2F6F7074696F6E735C2F222C226F72646572223A307D2C7B227469746C65223A22416C65727473222C227065726D616C696E6B223A2268747470733A5C2F5C2F7777772E776F726466656E63652E636F6D5C2F68656C705C2F64617368626F6172645C2F616C657274735C2F222C226F72646572223A317D5D2C226F72646572223A317D2C7B227469746C65223A224669726577616C6C222C227065726D616C696E6B223A2268747470733A5C2F5C2F7777772E776F726466656E63652E636F6D5C2F68656C705C2F6669726577616C6C5C2F222C2265786365727074223A2254686520576F726466656E636520576562204170706C69636174696F6E204669726577616C6C2069732061205048502062617365642C206170706C69636174696F6E206C6576656C206669726577616C6C20746861742066696C74657273206F7574206D616C6963696F757320726571756573747320746F20796F757220736974652E20222C226368696C6472656E223A5B7B227469746C65223A224F7074696D697A696E67222C227065726D616C696E6B223A2268747470733A5C2F5C2F7777772E776F726466656E63652E636F6D5C2F68656C705C2F6669726577616C6C5C2F6F7074696D697A696E672D7468652D6669726577616C6C5C2F222C226F72646572223A307D2C7B227469746C65223A224C6561726E696E67204D6F6465222C227065726D616C696E6B223A2268747470733A5C2F5C2F7777772E776F726466656E63652E636F6D5C2F68656C705C2F6669726577616C6C5C2F6C6561726E696E672D6D6F64655C2F222C226F72646572223A317D2C7B227469746C65223A2253746174697374696373222C227065726D616C696E6B223A2268747470733A5C2F5C2F7777772E776F726466656E63652E636F6D5C2F68656C705C2F6669726577616C6C5C2F737461746973746963735C2F222C226F72646572223A327D2C7B227469746C65223A224F7074696F6E73222C227065726D616C696E6B223A2268747470733A5C2F5C2F7777772E776F726466656E63652E636F6D5C2F68656C705C2F6669726577616C6C5C2F6F7074696F6E735C2F222C226F72646572223A337D2C7B227469746C65223A224D7953514C692073746F7261676520656E67696E65222C227065726D616C696E6B223A2268747470733A5C2F5C2F7777772E776F726466656E63652E636F6D5C2F68656C705C2F6669726577616C6C5C2F6D7973716C692D73746F726167652D656E67696E655C2F222C226F72646572223A347D2C7B227469746C65223A22427275746520466F7263652050726F74656374696F6E222C227065726D616C696E6B223A2268747470733A5C2F5C2F7777772E776F726466656E63652E636F6D5C2F68656C705C2F6669726577616C6C5C2F62727574652D666F7263655C2F222C226F72646572223A357D2C7B227469746C65223A2252617465204C696D6974696E67222C227065726D616C696E6B223A2268747470733A5C2F5C2F7777772E776F726466656E63652E636F6D5C2F68656C705C2F6669726577616C6C5C2F726174652D6C696D6974696E675C2F222C226F72646572223A367D2C7B227469746C65223A2254726F75626C6573686F6F74696E67222C227065726D616C696E6B223A2268747470733A5C2F5C2F7777772E776F726466656E63652E636F6D5C2F68656C705C2F6669726577616C6C5C2F74726F75626C6573686F6F74696E675C2F222C226F72646572223A377D5D2C226F72646572223A327D2C7B227469746C65223A22426C6F636B696E67222C227065726D616C696E6B223A2268747470733A5C2F5C2F7777772E776F726466656E63652E636F6D5C2F68656C705C2F626C6F636B696E675C2F222C2265786365727074223A2241736964652066726F6D20746865204669726577616C6C2072756C657320746861742070726F7465637420616761696E73742053514C2D696E6A656374696F6E2C2058535320616E64206D6F72652C20576F726466656E636520616C736F2068617320637573746F6D20666561747572657320666F72206164646974696F6E616C20626C6F636B696E672E20222C226368696C6472656E223A5B7B227469746C65223A22426C6F636B6564206F72204C6F636B6564204F7574222C227065726D616C696E6B223A2268747470733A5C2F5C2F7777772E776F726466656E63652E636F6D5C2F68656C705C2F626C6F636B696E675C2F626C6F636B65642D6F722D6C6F636B65642D6F75745C2F222C226F72646572223A307D2C7B227469746C65223A22436F756E74727920426C6F636B696E67222C227065726D616C696E6B223A2268747470733A5C2F5C2F7777772E776F726466656E63652E636F6D5C2F68656C705C2F626C6F636B696E675C2F636F756E7472792D626C6F636B696E675C2F222C226F72646572223A317D2C7B227469746C65223A2254726F75626C6573686F6F74696E67222C227065726D616C696E6B223A2268747470733A5C2F5C2F7777772E776F726466656E63652E636F6D5C2F68656C705C2F626C6F636B696E675C2F74726F75626C6573686F6F74696E675C2F222C226F72646572223A327D5D2C226F72646572223A337D2C7B227469746C65223A225363616E222C227065726D616C696E6B223A2268747470733A5C2F5C2F7777772E776F726466656E63652E636F6D5C2F68656C705C2F7363616E5C2F222C2265786365727074223A224120576F726466656E6365207363616E206578616D696E657320616C6C2066696C6573206F6E20796F757220576F726450726573732077656273697465206C6F6F6B696E6720666F72206D616C6963696F757320636F64652C206261636B646F6F72732C207368656C6C732074686174206861636B657273206861766520696E7374616C6C65642C206B6E6F776E206D616C6963696F75732055524C7320616E64206B6E6F776E207061747465726E73206F6620696E66656374696F6E732E222C226368696C6472656E223A5B7B227469746C65223A224F7074696F6E73222C227065726D616C696E6B223A2268747470733A5C2F5C2F7777772E776F726466656E63652E636F6D5C2F68656C705C2F7363616E5C2F6F7074696F6E735C2F222C226F72646572223A307D2C7B227469746C65223A22526573756C7473222C227065726D616C696E6B223A2268747470733A5C2F5C2F7777772E776F726466656E63652E636F6D5C2F68656C705C2F7363616E5C2F7363616E2D726573756C74735C2F222C226F72646572223A317D2C7B227469746C65223A225363686564756C696E67222C227065726D616C696E6B223A2268747470733A5C2F5C2F7777772E776F726466656E63652E636F6D5C2F68656C705C2F7363616E5C2F7363686564756C696E675C2F222C226F72646572223A327D2C7B227469746C65223A2254726F75626C6573686F6F74696E67222C227065726D616C696E6B223A2268747470733A5C2F5C2F7777772E776F726466656E63652E636F6D5C2F68656C705C2F7363616E5C2F74726F75626C6573686F6F74696E675C2F222C226F72646572223A337D5D2C226F72646572223A347D2C7B227469746C65223A22546F6F6C73222C227065726D616C696E6B223A2268747470733A5C2F5C2F7777772E776F726466656E63652E636F6D5C2F68656C705C2F746F6F6C735C2F222C2265786365727074223A22576F726466656E636520546F6F6C7320696E636C7564652054776F20466163746F722041757468656E7469636174696F6E2C2057686F6973204C6F6F6B75702C2050617373776F72642041756469742C204C697665205472616666696320616E6420446961676E6F73746963732E222C226368696C6472656E223A5B7B227469746C65223A22496D706F72745C2F4578706F7274222C227065726D616C696E6B223A2268747470733A5C2F5C2F7777772E776F726466656E63652E636F6D5C2F68656C705C2F746F6F6C735C2F696D706F72742D6578706F72745C2F222C226F72646572223A307D2C7B227469746C65223A2250617373776F7264204175646974696E67222C227065726D616C696E6B223A2268747470733A5C2F5C2F7777772E776F726466656E63652E636F6D5C2F68656C705C2F746F6F6C735C2F70617373776F72642D6175646974696E675C2F222C226F72646572223A317D2C7B227469746C65223A2257686F6973204C6F6F6B7570222C227065726D616C696E6B223A2268747470733A5C2F5C2F7777772E776F726466656E63652E636F6D5C2F68656C705C2F746F6F6C735C2F77686F69732D6C6F6F6B75705C2F222C226F72646572223A327D2C7B227469746C65223A22446961676E6F7374696373222C227065726D616C696E6B223A2268747470733A5C2F5C2F7777772E776F726466656E63652E636F6D5C2F68656C705C2F746F6F6C735C2F646961676E6F73746963735C2F222C226F72646572223A337D2C7B227469746C65223A224C6976652054726166666963222C227065726D616C696E6B223A2268747470733A5C2F5C2F7777772E776F726466656E63652E636F6D5C2F68656C705C2F746F6F6C735C2F6C6976652D747261666669635C2F222C226F72646572223A347D2C7B227469746C65223A2254776F2D466163746F722041757468656E7469636174696F6E222C227065726D616C696E6B223A2268747470733A5C2F5C2F7777772E776F726466656E63652E636F6D5C2F68656C705C2F746F6F6C735C2F74776F2D666163746F722D61757468656E7469636174696F6E5C2F222C226F72646572223A357D2C7B227469746C65223A224C65676163792054776F2D466163746F722041757468656E7469636174696F6E222C227065726D616C696E6B223A2268747470733A5C2F5C2F7777772E776F726466656E63652E636F6D5C2F68656C705C2F746F6F6C735C2F6C65676163792D74776F2D666163746F722D61757468656E7469636174696F6E5C2F222C226F72646572223A367D5D2C226F72646572223A357D2C7B227469746C65223A224C6F67696E205365637572697479222C227065726D616C696E6B223A2268747470733A5C2F5C2F7777772E776F726466656E63652E636F6D5C2F68656C705C2F6C6F67696E2D73656375726974795C2F222C2265786365727074223A22546865204C6F67696E20536563757269747920706167652063757272656E746C7920636F6E7461696E732073657474696E677320666F722074776F2D666163746F722061757468656E7469636174696F6E20283246412920616E64207265434150544348412E20496E20612066757475726520576F726466656E63652076657273696F6E2C206578697374696E67206C6F67696E2D72656C617465642066656174757265732077696C6C20616C736F206D6F766520746F207468652073616D6520706167652E222C226F72646572223A367D2C7B227469746C65223A22416476616E636564222C227065726D616C696E6B223A2268747470733A5C2F5C2F7777772E776F726466656E63652E636F6D5C2F68656C705C2F616476616E6365645C2F222C2265786365727074223A22496620796F752077616E7420746F206B6E6F77206D6F72652061626F75742074686520746563686E6963616C2064657461696C73206F6620576F726466656E63652C20796F75276C6C2066696E642074686520616E737765727320696E20746869732073656374696F6E2E222C226368696C6472656E223A5B7B227469746C65223A2253797374656D20726571756972656D656E7473222C227065726D616C696E6B223A2268747470733A5C2F5C2F7777772E776F726466656E63652E636F6D5C2F68656C705C2F616476616E6365645C2F73797374656D2D726571756972656D656E74735C2F222C226F72646572223A307D2C7B227469746C65223A224368616E67656C6F67222C227065726D616C696E6B223A2268747470733A5C2F5C2F7777772E776F726466656E63652E636F6D5C2F68656C705C2F616476616E6365645C2F6368616E67656C6F675C2F222C226F72646572223A317D2C7B227469746C65223A2252656D6F7665206F72205265736574222C227065726D616C696E6B223A2268747470733A5C2F5C2F7777772E776F726466656E63652E636F6D5C2F68656C705C2F616476616E6365645C2F72656D6F76652D6F722D72657365745C2F222C226F72646572223A327D2C7B227469746C65223A22546563686E6963616C2044657461696C73222C227065726D616C696E6B223A2268747470733A5C2F5C2F7777772E776F726466656E63652E636F6D5C2F68656C705C2F616476616E6365645C2F746563686E6963616C2D64657461696C735C2F222C226F72646572223A337D2C7B227469746C65223A22436F6E7374616E7473222C227065726D616C696E6B223A2268747470733A5C2F5C2F7777772E776F726466656E63652E636F6D5C2F68656C705C2F616476616E6365645C2F636F6E7374616E74735C2F222C226F72646572223A347D2C7B227469746C65223A22576F726466656E636520415049222C227065726D616C696E6B223A2268747470733A5C2F5C2F7777772E776F726466656E63652E636F6D5C2F68656C705C2F616476616E6365645C2F776F726466656E63652D6170695C2F222C226F72646572223A357D2C7B227469746C65223A2254726F75626C6573686F6F74696E67222C227065726D616C696E6B223A2268747470733A5C2F5C2F7777772E776F726466656E63652E636F6D5C2F68656C705C2F616476616E6365645C2F74726F75626C6573686F6F74696E675C2F222C226F72646572223A367D5D2C226F72646572223A377D2C7B227469746C65223A22576F726466656E6365205072656D69756D222C227065726D616C696E6B223A2268747470733A5C2F5C2F7777772E776F726466656E63652E636F6D5C2F68656C705C2F7072656D69756D5C2F222C2265786365727074223A22576F726466656E6365205072656D69756D20636F6D6573207769746820616E20495020426C61636B6C6973742C205265616C2054696D652050726F74656374696F6E20616E64206D756368206D6F72652E222C226368696C6472656E223A5B7B227469746C65223A224163636F756E74222C227065726D616C696E6B223A2268747470733A5C2F5C2F7777772E776F726466656E63652E636F6D5C2F68656C705C2F7072656D69756D5C2F6163636F756E745C2F222C226F72646572223A307D2C7B227469746C65223A2250726963696E67222C227065726D616C696E6B223A2268747470733A5C2F5C2F7777772E776F726466656E63652E636F6D5C2F68656C705C2F7072656D69756D5C2F70726963696E675C2F222C226F72646572223A317D2C7B227469746C65223A224C6963656E7365204B6579222C227065726D616C696E6B223A2268747470733A5C2F5C2F7777772E776F726466656E63652E636F6D5C2F68656C705C2F7072656D69756D5C2F6170692D6B65795C2F222C226F72646572223A327D5D2C226F72646572223A387D2C7B227469746C65223A22576F726466656E636520616E642047445052202D2047656E6572616C20446174612050726F74656374696F6E20526567756C6174696F6E222C227065726D616C696E6B223A2268747470733A5C2F5C2F7777772E776F726466656E63652E636F6D5C2F68656C705C2F67656E6572616C2D646174612D70726F74656374696F6E2D726567756C6174696F6E5C2F222C2265786365727074223A2244656669616E742C2074686520636F6D70616E7920626568696E6420576F726466656E63652C20686173207570646174656420697473207465726D73206F66207573652C207072697661637920706F6C696369657320616E6420736F6674776172652C2061732077656C6C206173206D61646520617661696C61626C65206120646174612070726F63657373696E672061677265656D656E7420746F206D656574204744505220636F6D706C69616E63652E20437573746F6D657273206D7573742072657669657720616E6420616772656520746F2075706461746564207465726D7320696E206F7264657220746F20636F6E74696E7565207573696E67206F75722070726F647563747320616E642073657276696365732E20576520616C736F2070726F76696465206120646174612070726F63657373696E672061677265656D656E7420696620796F75207175616C6966792061732061206461746120636F6E74726F6C6C657220756E6465722074686520474450522E222C226F72646572223A397D2C7B227469746C65223A225369746520436C65616E696E6720616E6420536563757269747920417564697473222C227065726D616C696E6B223A2268747470733A5C2F5C2F7777772E776F726466656E63652E636F6D5C2F68656C705C2F73656375726974792D73657276696365735C2F222C2265786365727074223A224C6574206F6E65206F66206F757220536563757269747920416E616C797374732068656C7020796F7520636C65616E20796F757220696E6665637465642073697465206F7220696E737065637420697420666F722076756C6E65726162696C69746965732E222C226F72646572223A31307D2C7B227469746C65223A224C6F67696E20536563757269747920506C7567696E222C227065726D616C696E6B223A2268747470733A5C2F5C2F7777772E776F726466656E63652E636F6D5C2F68656C705C2F6C6F67696E2D73656375726974792D706C7567696E5C2F222C2265786365727074223A2254686520576F726466656E6365204C6F67696E20536563757269747920706C7567696E20636F6E7461696E73206120737562736574206F662074686520666561747572657320666F756E6420696E207468652066756C6C20576F726466656E636520706C7567696E3A2054776F2D666163746F722041757468656E7469636174696F6E2C20584D4C2D5250432050726F74656374696F6E20616E64204C6F67696E205061676520434150544348412E20497420697320696465616C20666F722073697465732074686174206E656564206C6F67696E2073656375726974792066756E6374696F6E616C69747920627574206569746865722063616EE2809974206F7220646F6EE28099742077616E7420746F2072756E207468652066756C6C20576F726466656E636520706C7567696E2E222C226F72646572223A31317D5D7D,'yes'),('supportHash',0x33396530323331323061366664643035626163623334663763383636373065353166623039343537376564386334663861343438306362383934633730393065,'yes'),('whitelistPresets',0x7B22776F726466656E6365223A7B226E223A22576F726466656E6365222C2268223A747275652C2264223A747275652C2266223A747275652C2272223A5B2235342E36382E33322E323437222C2236392E34362E33362E305C2F3237222C22323630353A323430303A303130343A303130303A3A5C2F3536225D7D2C22737563757269223A7B226E223A22537563757269222C2264223A747275652C2272223A5B2239372E37342E3132372E313731222C2236392E3136342E3230332E313732222C223137332E3233302E3132382E313335222C2236362E3232382E33342E3439222C2236362E3232382E34302E313835222C2235302E3131362E33362E3932222C2235302E3131362E33362E3933222C2235302E3131362E332E313731222C223139382E35382E39362E323132222C2235302E3131362E36332E323231222C223139322E3135352E39322E313132222C223139322E38312E3132382E3331222C223139382E35382E3130362E323434222C223139322E3135352E39352E313339222C2232332E3233392E392E323237222C223139382E35382E3131322E313033222C223139322E3135352E39342E3433222C223136322E3231362E31362E3333222C223137332E3235352E3233332E313234222C223137332E3235352E3233332E313234222C223139322E3135352E39302E313739222C2235302E3131362E34312E323137222C223139322E38312E3132392E323237222C223139382E35382E3131312E3830222C223136322E3231362E31392E313833225D7D2C2266616365626F6F6B223A7B226E223A2246616365626F6F6B222C2264223A747275652C2272223A5B2236392E36332E3137362E305C2F3230222C2236362E3232302E3134342E305C2F3230222C2236362E3232302E3134342E305C2F3231222C2236392E36332E3138342E305C2F3231222C2236392E36332E3137362E305C2F3231222C2237342E3131392E37362E305C2F3232222C2236392E3137312E3235352E305C2F3234222C223137332E3235322E36342E305C2F3138222C2236392E3137312E3232342E305C2F3139222C2236392E3137312E3232342E305C2F3230222C223130332E342E39362E305C2F3232222C2236392E36332E3137362E305C2F3234222C223137332E3235322E36342E305C2F3139222C223137332E3235322E37302E305C2F3234222C2233312E31332E36342E305C2F3138222C2233312E31332E32342E305C2F3231222C2236362E3232302E3135322E305C2F3231222C2236362E3232302E3135392E305C2F3234222C2236392E3137312E3233392E305C2F3234222C2236392E3137312E3234302E305C2F3230222C2233312E31332E36342E305C2F3139222C2233312E31332E36342E305C2F3234222C2233312E31332E36352E305C2F3234222C2233312E31332E36372E305C2F3234222C2233312E31332E36382E305C2F3234222C2233312E31332E36392E305C2F3234222C2233312E31332E37302E305C2F3234222C2233312E31332E37312E305C2F3234222C2233312E31332E37322E305C2F3234222C2233312E31332E37332E305C2F3234222C2233312E31332E37342E305C2F3234222C2233312E31332E37352E305C2F3234222C2233312E31332E37362E305C2F3234222C2233312E31332E37372E305C2F3234222C2233312E31332E39362E305C2F3139222C2233312E31332E36362E305C2F3234222C223137332E3235322E39362E305C2F3139222C2236392E36332E3137382E305C2F3234222C2233312E31332E37382E305C2F3234222C2233312E31332E37392E305C2F3234222C2233312E31332E38302E305C2F3234222C2233312E31332E38322E305C2F3234222C2233312E31332E38332E305C2F3234222C2233312E31332E38342E305C2F3234222C2233312E31332E38352E305C2F3234222C2233312E31332E38362E305C2F3234222C2233312E31332E38372E305C2F3234222C2233312E31332E38382E305C2F3234222C2233312E31332E38392E305C2F3234222C2233312E31332E39302E305C2F3234222C2233312E31332E39312E305C2F3234222C2233312E31332E39322E305C2F3234222C2233312E31332E39332E305C2F3234222C2233312E31332E39342E305C2F3234222C2233312E31332E39352E305C2F3234222C2236392E3137312E3235332E305C2F3234222C2236392E36332E3138362E305C2F3234222C2233312E31332E38312E305C2F3234222C223137392E36302E3139322E305C2F3232222C223137392E36302E3139322E305C2F3234222C223137392E36302E3139332E305C2F3234222C223137392E36302E3139342E305C2F3234222C223137392E36302E3139352E305C2F3234222C223138352E36302E3231362E305C2F3232222C2234352E36342E34302E305C2F3232222C223138352E36302E3231362E305C2F3234222C223138352E36302E3231372E305C2F3234222C223138352E36302E3231382E305C2F3234222C223138352E36302E3231392E305C2F3234222C223132392E3133342E302E305C2F3136222C223135372E3234302E302E305C2F3136222C223135372E3234302E382E305C2F3234222C223135372E3234302E302E305C2F3234222C223135372E3234302E312E305C2F3234222C223135372E3234302E322E305C2F3234222C223135372E3234302E332E305C2F3234222C223135372E3234302E342E305C2F3234222C223135372E3234302E352E305C2F3234222C223135372E3234302E362E305C2F3234222C223135372E3234302E372E305C2F3234222C223135372E3234302E392E305C2F3234222C223135372E3234302E31302E305C2F3234222C223135372E3234302E31362E305C2F3234222C223135372E3234302E31392E305C2F3234222C223135372E3234302E31312E305C2F3234222C223135372E3234302E31322E305C2F3234222C223135372E3234302E31332E305C2F3234222C223135372E3234302E31342E305C2F3234222C223135372E3234302E31352E305C2F3234222C223135372E3234302E31372E305C2F3234222C223135372E3234302E31382E305C2F3234222C223135372E3234302E32302E305C2F3234222C223135372E3234302E32312E305C2F3234222C223135372E3234302E32322E305C2F3234222C223135372E3234302E32332E305C2F3234222C223135372E3234302E302E305C2F3137222C2236392E3137312E3235302E305C2F3234222C223135372E3234302E32342E305C2F3234222C223135372E3234302E32352E305C2F3234222C223139392E3230312E36342E305C2F3234222C223139392E3230312E36352E305C2F3234222C223139392E3230312E36342E305C2F3232222C223230342E31352E32302E305C2F3232222C223135372E3234302E3139322E305C2F3234222C223132392E3133342E302E305C2F3137222C223230342E31352E32302E305C2F3232222C2236392E36332E3137362E305C2F3230222C2236392E36332E3137362E305C2F3231222C2236392E36332E3138342E305C2F3231222C2236362E3232302E3134342E305C2F3230222C2236392E36332E3137362E305C2F3230222C22323632303A303A316330303A3A5C2F3430222C22326130333A323838303A3A5C2F3332222C22326130333A323838303A666666653A3A5C2F3438222C22326130333A323838303A666666663A3A5C2F3438222C22323632303A303A316366663A3A5C2F3438222C22326130333A323838303A663030303A3A5C2F3438222C22326130333A323838303A663030313A3A5C2F3438222C22326130333A323838303A663030323A3A5C2F3438222C22326130333A323838303A663030333A3A5C2F3438222C22326130333A323838303A663030343A3A5C2F3438222C22326130333A323838303A663030353A3A5C2F3438222C22326130333A323838303A663030363A3A5C2F3438222C22326130333A323838303A663030373A3A5C2F3438222C22326130333A323838303A663030383A3A5C2F3438222C22326130333A323838303A663030393A3A5C2F3438222C22326130333A323838303A663030613A3A5C2F3438222C22326130333A323838303A663030623A3A5C2F3438222C22326130333A323838303A663030633A3A5C2F3438222C22326130333A323838303A663030643A3A5C2F3438222C22326130333A323838303A663030653A3A5C2F3438222C22326130333A323838303A663030663A3A5C2F3438222C22326130333A323838303A663031303A3A5C2F3438222C22326130333A323838303A663031313A3A5C2F3438222C22326130333A323838303A663031323A3A5C2F3438222C22326130333A323838303A663031333A3A5C2F3438222C22326130333A323838303A663031343A3A5C2F3438222C22326130333A323838303A663031353A3A5C2F3438222C22326130333A323838303A663031363A3A5C2F3438222C22326130333A323838303A663031373A3A5C2F3438222C22326130333A323838303A663031383A3A5C2F3438222C22326130333A323838303A663031393A3A5C2F3438222C22326130333A323838303A663031613A3A5C2F3438222C22326130333A323838303A663031623A3A5C2F3438222C22326130333A323838303A663031633A3A5C2F3438222C22326130333A323838303A663031643A3A5C2F3438222C22326130333A323838303A663031653A3A5C2F3438222C22326130333A323838303A663031663A3A5C2F3438222C22326130333A323838303A313030303A3A5C2F3336222C22326130333A323838303A323030303A3A5C2F3336222C22326130333A323838303A333030303A3A5C2F3336222C22326130333A323838303A343030303A3A5C2F3336222C22326130333A323838303A353030303A3A5C2F3336222C22326130333A323838303A363030303A3A5C2F3336222C22326130333A323838303A373030303A3A5C2F3336222C22326130333A323838303A663032303A3A5C2F3438222C22326130333A323838303A663032313A3A5C2F3438222C22326130333A323838303A663032323A3A5C2F3438222C22326130333A323838303A663032333A3A5C2F3438222C22326130333A323838303A663032343A3A5C2F3438222C22326130333A323838303A663032353A3A5C2F3438222C22326130333A323838303A663032363A3A5C2F3438222C22326130333A323838303A663032373A3A5C2F3438222C22326130333A323838303A663032383A3A5C2F3438222C22326130333A323838303A663032393A3A5C2F3438222C22326130333A323838303A663032623A3A5C2F3438222C22326130333A323838303A663032633A3A5C2F3438222C22326130333A323838303A663032643A3A5C2F3438222C22326130333A323838303A663032653A3A5C2F3438222C22326130333A323838303A663032663A3A5C2F3438222C22326130333A323838303A663033303A3A5C2F3438222C22326130333A323838303A663033313A3A5C2F3438222C22326130333A323838303A663033323A3A5C2F3438222C22326130333A323838303A663033333A3A5C2F3438222C22326130333A323838303A663033343A3A5C2F3438222C22326130333A323838303A663033353A3A5C2F3438222C22326130333A323838303A663033363A3A5C2F3438222C22326130333A323838303A663033373A3A5C2F3438222C22326130333A323838303A663033383A3A5C2F3438222C22326130333A323838303A663033393A3A5C2F3438222C22326130333A323838303A663033613A3A5C2F3438222C22326130333A323838303A663033623A3A5C2F3438222C22326130333A323838303A663033633A3A5C2F3438222C22326130333A323838303A663033643A3A5C2F3438222C22326130333A323838303A663033653A3A5C2F3438222C22326130333A323838303A663033663A3A5C2F3438222C22323430313A646230303A3A5C2F3332222C22326130333A323838303A3A5C2F3336222C22323830333A363038303A3A5C2F3332222C22326130333A323838303A663130303A3A5C2F3438222C22326130333A323838303A663230303A3A5C2F3438222C22326130333A323838303A663130313A3A5C2F3438222C22326130333A323838303A663230313A3A5C2F3438222C22326130333A323838303A663130323A3A5C2F3438222C22326130333A323838303A663230323A3A5C2F3438222C22326130333A323838303A663130333A3A5C2F3438222C22326130333A323838303A663230333A3A5C2F3438222C22326130333A323838303A663130343A3A5C2F3438222C22326130333A323838303A663230343A3A5C2F3438222C22326130333A323838303A663130373A3A5C2F3438222C22326130333A323838303A663230373A3A5C2F3438222C22326130333A323838303A663130383A3A5C2F3438222C22326130333A323838303A663230383A3A5C2F3438222C22326130333A323838303A663130393A3A5C2F3438222C22326130333A323838303A663230393A3A5C2F3438222C22326130333A323838303A663130613A3A5C2F3438222C22326130333A323838303A663230613A3A5C2F3438222C22326130333A323838303A663130623A3A5C2F3438222C22326130333A323838303A663230623A3A5C2F3438222C22326130333A323838303A663130643A3A5C2F3438222C22326130333A323838303A663230643A3A5C2F3438222C22326130333A323838303A663130653A3A5C2F3438222C22326130333A323838303A663230653A3A5C2F3438222C22326130333A323838303A663130663A3A5C2F3438222C22326130333A323838303A663230663A3A5C2F3438222C22326130333A323838303A663131303A3A5C2F3438222C22326130333A323838303A663231303A3A5C2F3438222C22326130333A323838303A663131313A3A5C2F3438222C22326130333A323838303A663231313A3A5C2F3438222C22326130333A323838303A663131323A3A5C2F3438222C22326130333A323838303A663231323A3A5C2F3438222C22326130333A323838303A663131343A3A5C2F3438222C22326130333A323838303A663231343A3A5C2F3438222C22326130333A323838303A663131353A3A5C2F3438222C22326130333A323838303A663231353A3A5C2F3438222C22326130333A323838303A663131363A3A5C2F3438222C22326130333A323838303A663231363A3A5C2F3438222C22326130333A323838303A663131373A3A5C2F3438222C22326130333A323838303A663231373A3A5C2F3438222C22326130333A323838303A663131383A3A5C2F3438222C22326130333A323838303A663231383A3A5C2F3438222C22326130333A323838303A663131393A3A5C2F3438222C22326130333A323838303A663231393A3A5C2F3438222C22326130333A323838303A663131613A3A5C2F3438222C22326130333A323838303A663231613A3A5C2F3438222C22326130333A323838303A663131663A3A5C2F3438222C22326130333A323838303A663231663A3A5C2F3438222C22326130333A323838303A663132313A3A5C2F3438222C22326130333A323838303A663232313A3A5C2F3438222C22326130333A323838303A663132323A3A5C2F3438222C22326130333A323838303A663232323A3A5C2F3438222C22326130333A323838303A663132333A3A5C2F3438222C22326130333A323838303A663232333A3A5C2F3438222C22326130333A323838303A663130633A3A5C2F3438222C22326130333A323838303A663230633A3A5C2F3438222C22326130333A323838303A663132363A3A5C2F3438222C22326130333A323838303A663232363A3A5C2F3438222C22326130333A323838303A663130353A3A5C2F3438222C22326130333A323838303A663230353A3A5C2F3438222C22326130333A323838303A663132353A3A5C2F3438222C22326130333A323838303A663232353A3A5C2F3438222C22326130333A323838303A663130363A3A5C2F3438222C22326130333A323838303A663230363A3A5C2F3438222C22326130333A323838303A663131623A3A5C2F3438222C22326130333A323838303A663231623A3A5C2F3438222C22326130333A323838303A663131333A3A5C2F3438222C22326130333A323838303A663231333A3A5C2F3438222C22326130333A323838303A663131633A3A5C2F3438222C22326130333A323838303A663231633A3A5C2F3438222C22326130333A323838303A663132383A3A5C2F3438222C22326130333A323838303A663232383A3A5C2F3438222C22326130333A323838303A663032613A3A5C2F3438222C22326130333A323838303A663132613A3A5C2F3438222C22326130333A323838303A663232613A3A5C2F3438222C22326130333A323838303A663132663A3A5C2F3438222C22326130333A323838303A663232663A3A5C2F3438222C22326130333A323838303A663131643A3A5C2F3438222C22326130333A323838303A663131653A3A5C2F3438222C22326130333A323838303A663132303A3A5C2F3438222C22326130333A323838303A663132343A3A5C2F3438222C22326130333A323838303A663132373A3A5C2F3438222C22326130333A323838303A663132393A3A5C2F3438222C22326130333A323838303A663132623A3A5C2F3438222C22326130333A323838303A663132633A3A5C2F3438222C22326130333A323838303A663132643A3A5C2F3438222C22326130333A323838303A663132653A3A5C2F3438222C22326130333A323838303A663133303A3A5C2F3438222C22326130333A323838303A663133313A3A5C2F3438222C22326130333A323838303A663133323A3A5C2F3438222C22326130333A323838303A663133333A3A5C2F3438222C22326130333A323838303A663133343A3A5C2F3438222C22326130333A323838303A663133353A3A5C2F3438222C22326130333A323838303A663133363A3A5C2F3438222C22326130333A323838303A663133373A3A5C2F3438222C22326130333A323838303A663133383A3A5C2F3438222C22326130333A323838303A663133393A3A5C2F3438222C22326130333A323838303A663133613A3A5C2F3438222C22326130333A323838303A663133623A3A5C2F3438222C22326130333A323838303A663133633A3A5C2F3438222C22326130333A323838303A663133643A3A5C2F3438222C22326130333A323838303A663133653A3A5C2F3438222C22326130333A323838303A663133663A3A5C2F3438222C22326130333A323838303A663231643A3A5C2F3438222C22326130333A323838303A663231653A3A5C2F3438222C22326130333A323838303A663232303A3A5C2F3438222C22326130333A323838303A663232343A3A5C2F3438222C22326130333A323838303A663232373A3A5C2F3438222C22326130333A323838303A663232393A3A5C2F3438222C22326130333A323838303A663232623A3A5C2F3438222C22326130333A323838303A663232633A3A5C2F3438222C22326130333A323838303A663232643A3A5C2F3438222C22326130333A323838303A663232653A3A5C2F3438222C22326130333A323838303A663233303A3A5C2F3438222C22326130333A323838303A663233313A3A5C2F3438222C22326130333A323838303A663233323A3A5C2F3438222C22326130333A323838303A663233333A3A5C2F3438222C22326130333A323838303A663233343A3A5C2F3438222C22326130333A323838303A663233353A3A5C2F3438222C22326130333A323838303A663233363A3A5C2F3438222C22326130333A323838303A663233373A3A5C2F3438222C22326130333A323838303A663233383A3A5C2F3438222C22326130333A323838303A663233393A3A5C2F3438222C22326130333A323838303A663233613A3A5C2F3438222C22326130333A323838303A663233623A3A5C2F3438222C22326130333A323838303A663233633A3A5C2F3438222C22326130333A323838303A663233643A3A5C2F3438222C22326130333A323838303A663233653A3A5C2F3438222C22326130333A323838303A663233663A3A5C2F3438222C22326130333A323838303A663066663A3A5C2F3438222C22326130333A323838303A663166663A3A5C2F3438222C22326130333A323838303A663266663A3A5C2F3438222C22326330663A656637383A303030333A3A5C2F3438225D7D2C22757074696D65726F626F74223A7B226E223A22557074696D6520526F626F74222C2264223A747275652C2272223A5B2236392E3136322E3132342E3232345C2F3238222C2236332E3134332E34322E3234305C2F3238225D7D2C2273746174757363616B65223A7B226E223A2253746174757343616B65222C2264223A747275652C2272223A5B223130332E3139342E3131322E3730222C223130342E3133312E3234372E313531222C223130342E3133312E3234382E3635222C223130342E3133312E3234382E3738222C223130342E3135362E3232392E3234222C223130342E3135362E3235352E313834222C223130342E3230362E3136382E3236222C223130342E3233382E3136342E313035222C223130372E3135302E312E313335222C223130372E3135352E3130342E313832222C223130372E3135352E3130382E323334222C223130372E3135352E3132352E3239222C223130372E3136312E32382E323139222C223130372E3137302E3139372E323438222C223130372E3137302E3231392E3436222C223130372E3137302E3232372E3233222C223130372E3137302E3232372E3234222C223130372E3137302E3234302E313431222C223130372E3137302E35332E313931222C223130372E3139312E34372E313331222C223130372E3139312E35372E323337222C223130382E36312E3131392E313533222C223130382E36312E3136322E323134222C223130382E36312E3230352E323031222C223130382E36312E3231322E313431222C223130382E36312E3231352E313739222C223132352E36332E34382E323339222C223132382E3139392E3232322E3635222C223133382E3139372E3133302E323332222C223133382E3139372E3133302E323335222C223133382E3139372E3134302E323433222C223133382E3230342E3137312E313336222C223133382E36382E32342E313135222C223133382E36382E32342E313336222C223133382E36382E32342E323037222C223133382E36382E32342E3630222C223133382E36382E38302E3130222C223133382E36382E38302E313733222C223133392E35392E31352E3739222C223133392E35392E3135352E3236222C223133392E35392E3139302E323431222C223133392E35392E32322E313039222C223133392E35392E32362E3835222C223133392E35392E32392E313637222C223134392E3135342E3135372E3631222C223134392E3235352E35392E313030222C223135312E3233362E31302E323338222C223135312E3233362E31382E3830222C223135312E38302E3137352E323233222C223135312E38302E3137352E323236222C223135342E3132372E36302E3233222C223135342E3132372E36302E3539222C223135382E3235352E3230382E3736222C223135392E3230332E3138322E3232222C223135392E3230332E3138322E3630222C223135392E3230332E3138362E323235222C223135392E3230332E33312E3138222C223136322E3234332E3234372E313633222C223136322E3234332E37312E3536222C223136322E3234382E39372E3732222C223136322E3235332E36342E313034222C223136322E3235332E36342E3837222C223137362E35362E3233302E313130222C223137382E36322E3130312E3537222C223137382E36322E3130342E313337222C223137382E36322E3130362E3834222C223137382E36322E3130392E37222C223137382E36322E34302E323333222C223137382E36322E34312E3434222C223137382E36322E34312E3439222C223137382E36322E34312E3532222C223137382E36322E36352E313632222C223137382E36322E37312E323237222C223137382E36322E37382E313939222C223137382E36322E38302E3933222C223137382E36322E38362E3639222C223137382E37332E3231302E3939222C223138312E34312E3230312E313137222C223138312E34312E3231342E313337222C223138352E3131322E3135372E313835222C223138352E31322E34352E3730222C223138352E34372E3132392E313638222C223138352E36302E3133352E3836222C223138382E3136362E3135382E323234222C223138382E3136362E3235332E313438222C223138382E3232362E3133392E313538222C223138382E3232362E3135382E313630222C223138382E3232362E3136392E323238222C223138382E3232362E3137312E3538222C223138382E3232362E3138342E313532222C223138382E3232362E3138352E313036222C223138382E3232362E3138362E313939222C223138382E3232362E3230332E3834222C223138382E3232362E3234372E313834222C223138382E36382E3233382E3739222C223139322E3234312E3232312E3131222C223139332E3132342E3137382E3534222C223139332E3132342E3137382E3631222C223139332E3138322E3134342E313035222C223139332E3138322E3134342E313437222C223139392E3136372E3132382E3830222C223230392E3232322E33302E323432222C223231332E3138332E35362E313037222C223231372E3134382E34332E313838222C223231372E3134382E34332E323032222C2233312E3232302E372E323337222C2233372E3135372E3234362E313436222C2233372E3233352E34382E3432222C2233372E3233352E35322E3235222C2233372E3233352E35332E323430222C2233372E3233352E35352E323035222C2233372E39372E3138382E313033222C2234352E33322E3132382E3830222C2234352E33322E3134352E3739222C2234352E33322E3135312E3231222C2234352E33322E3136302E313732222C2234352E33322E3136362E313935222C2234352E33322E3137312E3234222C2234352E33322E3139322E313938222C2234352E33322E3139352E313836222C2234352E33322E3139352E3933222C2234352E33322E3231322E3536222C2234352E33322E33362E313538222C2234352E33322E372E3232222C2234352E36332E3132312E313539222C2234352E36332E32362E3738222C2234352E36332E35312E3633222C2234352E36332E36312E323133222C2234352E36332E37362E3638222C2234352E36332E37382E3834222C2234352E36332E38362E313230222C2234352E36332E38382E323133222C2234352E37362E312E3434222C2234352E37362E3139322E3530222C2234352E37362E332E313132222C2234362E3130312E302E3234222C2234362E3130312E3131302E3332222C2234362E3130312E3131302E3433222C2234362E3130312E3131302E3435222C2234362E3130312E32302E3936222C2234362E3130312E3233382E313832222C2234362E3130312E3233382E313839222C2234362E3130312E3234302E323038222C2234362E3130312E32372E313836222C2234362E3130312E36312E3833222C2234362E3130312E37342E323531222C22352E34352E3137392E313033222C2235302E322E3133392E3136222C2238322E3232312E39352E313631222C2239312E3233362E3131362E313633225D7D2C226D616E6167657770223A7B226E223A224D616E6167655750222C2264223A66616C73652C2272223A5B2233342E3231312E3138302E3636222C2235342E37302E36352E313037222C2233342E3231302E3232342E37222C2235322E34312E352E313038222C2235322E33352E37322E313239222C2235342E3139312E3133372E3137222C2233352E3136322E3235342E323533222C2235322E31312E31322E323331222C2235322E31312E32392E3730222C2235322E31312E35342E313631222C2235322E32342E3134322E313539222C2235322E32352E3139312E323535222C2235322E32372E3138312E313236222C2235322E33342E3132362E313137222C2235322E33342E3235342E3437222C2235322E33352E38322E3939222C2235322E33362E32382E3830222C2235322E33382E3130362E3937222C2235322E33392E3137372E313532222C2235322E34312E3233302E313438222C2235322E34312E3233372E3132222C2235322E34322E3132362E313636222C2235322E34332E31332E3731222C2235322E34332E37362E323234222C2235322E38382E39362E313130222C2235322E38392E3135352E3531222C2235342E3134382E37332E313138222C2235342E3138362E33372E313035222C2235342E3138372E39322E3537222C2235342E3139312E33322E3635222C2235342E3139312E36372E3233222C2235342E3139312E38302E313139222C2235342E3139312E3133352E323039222C2235342E3139312E3133362E313736222C2235342E3139312E3134382E3835222C2235342E3139312E3134392E38222C2235322E32362E3132322E3231222C2235322E32342E3138372E3239222C2235322E38392E38352E313037222C2235342E3138362E3132382E313637222C2235342E3139312E34302E313336222C2235322E32342E36322E3131222C2235322E38382E3131392E313232222C2235342E3139312E3134382E323235222C2235342E3139312E3135312E3138222C2235322E38392E39342E313231222C2235322E32352E3131362E313136222C2235322E38382E3231352E323235222C2235342E3138362E3134332E313834222C2235322E38382E3139372E313830222C2235322E32372E3137312E313236225D7D7D,'yes'),('whitelistHash',0x31353636643233663463333864363238636132666338376561393832666364353965333538663663636333623964373934616633393136633162313338663833,'yes'),('touppPromptNeeded',0x30,'yes'),('touppBypassNextCheck',0x30,'yes'),('autoUpdateAttempts',0x30,'yes'),('previousWflogsFileList',0x5B22636F6E6669672D73796E6365642E706870222C222E6874616363657373222C22636F6E6669672D7472616E7369656E742E706870222C226970732E706870222C2274656D706C6174652E706870222C2261747461636B2D646174612E706870222C2272756C65732E706870222C22636F6E6669672E706870222C22636F6E6669672D6C6976657761662E706870222C2247656F4C697465322D436F756E7472792E6D6D6462225D,'yes'),('diagnosticsWflogsRemovalHistory',0x5B5D,'no'),('encKey',0x65636561313838656438656535393937,'yes'),('longEncKey',0x37646539666339646161613738313336613930613236396336353939343337643730653664633732653033396430353530323862656235326330353264306136,'yes'),('cbl_restOfSiteBlocked',0x31,'yes'),('timeoffset_wf',0x30,'yes'),('lastBlockAggregation',0x31353639343135313839,'yes'),('allowed404s6116Migration',0x31,'yes'),('migration636_email_summary_excluded_directories',0x31,'no'),('fileContentsGSB6315Migration',0x31,'yes'),('config701Migration',0x31,'yes'),('blocks702Migration',0x31,'yes'),('geoIPVersionHash',0x37623166386566623238616539646136383433393538313336316131303063326261316537303631633463643936306632643830613931633333613534353738,'yes'),('scansEnabled_geoipSupport',0x31,'yes'),('config720Migration',0x31,'yes'),('waf_status',0x6C6561726E696E672D6D6F6465,'yes'),('detectProxyNextCheck',0x31353730303139393839,'no'),('detectProxyNonce',0x33646461616438316432646561346334663432306138346366333336353438653764633363343434353734633739333765653835346234313464306232326437,'no'),('serverIP',0x313536393431353139303B3139322E3134352E3233392E3235,'yes'),('allScansScheduled',0x613A323A7B693A303B613A323A7B733A393A2274696D657374616D70223B693A313536393538383630303B733A343A2261726773223B613A313A7B693A303B693A313536393538383630303B7D7D693A313B613A323A7B733A393A2274696D657374616D70223B693A313536393834373830303B733A343A2261726773223B613A313A7B693A303B693A313536393834373830303B7D7D7D,'yes'),('activatingIP',0x3137322E38392E38382E313330,'yes'),('cbl_cookieVal',0x35643862363031366236336435,'yes'),('lastPermissionsTemplateCheck',0x31353639343135323330,'yes'),('adminNoticeQueue',0x613A303A7B7D,'yes'),('wp_home_url',0x687474703A2F2F32332E3233352E3230382E31312F7E6F6E64697370352F7770,'yes'),('wp_site_url',0x687474703A2F2F32332E3233352E3230382E31312F7E6F6E64697370352F7770,'yes'),('lastDailyCron',0x31353639343135323237,'yes'),('dbVersion',0x31302E322E32352D4D6172696144422D6C6F67,'yes'),('lastDashboardCheck',0x31353639343135323237,'yes'),('dashboardData',0x613A343A7B733A393A2267656E657261746564223B693A313536393431343832343B733A333A22746466223B613A333A7B733A393A22636F6D6D756E697479223B693A353730353B733A373A227072656D69756D223B693A353731313B733A393A22626C61636B6C697374223B693A31323237303B7D733A31303A2261747461636B64617461223B613A333A7B733A333A22323468223B613A32343A7B693A303B613A323A7B733A313A2274223B693A313536393332363430303B733A313A2263223B693A353331313431363B7D693A313B613A323A7B733A313A2274223B693A313536393333303030303B733A313A2263223B693A353331343839373B7D693A323B613A323A7B733A313A2274223B693A313536393333333630303B733A313A2263223B693A353237303233313B7D693A333B613A323A7B733A313A2274223B693A313536393333373230303B733A313A2263223B693A353233373930323B7D693A343B613A323A7B733A313A2274223B693A313536393334303830303B733A313A2263223B693A353430323838383B7D693A353B613A323A7B733A313A2274223B693A313536393334343430303B733A313A2263223B693A353930363337363B7D693A363B613A323A7B733A313A2274223B693A313536393334383030303B733A313A2263223B693A353934363233323B7D693A373B613A323A7B733A313A2274223B693A313536393335313630303B733A313A2263223B693A353630303636393B7D693A383B613A323A7B733A313A2274223B693A313536393335353230303B733A313A2263223B693A353739343137363B7D693A393B613A323A7B733A313A2274223B693A313536393335383830303B733A313A2263223B693A353536373738343B7D693A31303B613A323A7B733A313A2274223B693A313536393336323430303B733A313A2263223B693A353531303632353B7D693A31313B613A323A7B733A313A2274223B693A313536393336363030303B733A313A2263223B693A353439373831393B7D693A31323B613A323A7B733A313A2274223B693A313536393336393630303B733A313A2263223B693A353239303637303B7D693A31333B613A323A7B733A313A2274223B693A313536393337333230303B733A313A2263223B693A353236353431333B7D693A31343B613A323A7B733A313A2274223B693A313536393337363830303B733A313A2263223B693A353031373939343B7D693A31353B613A323A7B733A313A2274223B693A313536393338303430303B733A313A2263223B693A353236303533353B7D693A31363B613A323A7B733A313A2274223B693A313536393338343030303B733A313A2263223B693A353236353034343B7D693A31373B613A323A7B733A313A2274223B693A313536393338373630303B733A313A2263223B693A353233323838303B7D693A31383B613A323A7B733A313A2274223B693A313536393339313230303B733A313A2263223B693A353233343439313B7D693A31393B613A323A7B733A313A2274223B693A313536393339343830303B733A313A2263223B693A353534373236303B7D693A32303B613A323A7B733A313A2274223B693A313536393339383430303B733A313A2263223B693A353838393234343B7D693A32313B613A323A7B733A313A2274223B693A313536393430323030303B733A313A2263223B693A363031353933313B7D693A32323B613A323A7B733A313A2274223B693A313536393430353630303B733A313A2263223B693A353932383531323B7D693A32333B613A323A7B733A313A2274223B693A313536393430393230303B733A313A2263223B693A353833373337363B7D7D733A323A223764223B613A373A7B693A303B613A323A7B733A313A2274223B693A313536383736343830303B733A313A2263223B693A3133333331313730373B7D693A313B613A323A7B733A313A2274223B693A313536383835313230303B733A313A2263223B693A3134353736353635373B7D693A323B613A323A7B733A313A2274223B693A313536383933373630303B733A313A2263223B693A3132313436373939363B7D693A333B613A323A7B733A313A2274223B693A313536393032343030303B733A313A2263223B693A3131353039363635363B7D693A343B613A323A7B733A313A2274223B693A313536393131303430303B733A313A2263223B693A3132323734383036333B7D693A353B613A323A7B733A313A2274223B693A313536393139363830303B733A313A2263223B693A3132363736383339303B7D693A363B613A323A7B733A313A2274223B693A313536393238333230303B733A313A2263223B693A3132353335313836333B7D7D733A333A22333064223B613A33303A7B693A303B613A323A7B733A313A2274223B693A313536363737373630303B733A313A2263223B693A3131393534343934323B7D693A313B613A323A7B733A313A2274223B693A313536363836343030303B733A313A2263223B693A3131373739313238383B7D693A323B613A323A7B733A313A2274223B693A313536363935303430303B733A313A2263223B693A3131373132323138333B7D693A333B613A323A7B733A313A2274223B693A313536373033363830303B733A313A2263223B693A3134353138363537373B7D693A343B613A323A7B733A313A2274223B693A313536373132333230303B733A313A2263223B693A3133333137393938323B7D693A353B613A323A7B733A313A2274223B693A313536373230393630303B733A313A2263223B693A3130303031303733393B7D693A363B613A323A7B733A313A2274223B693A313536373239363030303B733A313A2263223B693A39363036323939393B7D693A373B613A323A7B733A313A2274223B693A313536373338323430303B733A313A2263223B693A3132363931303834313B7D693A383B613A323A7B733A313A2274223B693A313536373436383830303B733A313A2263223B693A3134313037333438333B7D693A393B613A323A7B733A313A2274223B693A313536373535353230303B733A313A2263223B693A3130393537353135353B7D693A31303B613A323A7B733A313A2274223B693A313536373634313630303B733A313A2263223B693A3133363037383438363B7D693A31313B613A323A7B733A313A2274223B693A313536373732383030303B733A313A2263223B693A3130383934343636393B7D693A31323B613A323A7B733A313A2274223B693A313536373831343430303B733A313A2263223B693A3134343534323333373B7D693A31333B613A323A7B733A313A2274223B693A313536373930303830303B733A313A2263223B693A3135323131343537333B7D693A31343B613A323A7B733A313A2274223B693A313536373938373230303B733A313A2263223B693A3135363338323135313B7D693A31353B613A323A7B733A313A2274223B693A313536383037333630303B733A313A2263223B693A3136333137373632373B7D693A31363B613A323A7B733A313A2274223B693A313536383136303030303B733A313A2263223B693A3137393035353531363B7D693A31373B613A323A7B733A313A2274223B693A313536383234363430303B733A313A2263223B693A3135383937353239393B7D693A31383B613A323A7B733A313A2274223B693A313536383333323830303B733A313A2263223B693A3138373736313038373B7D693A31393B613A323A7B733A313A2274223B693A313536383431393230303B733A313A2263223B693A3231323933303632333B7D693A32303B613A323A7B733A313A2274223B693A313536383530353630303B733A313A2263223B693A3133333337313332323B7D693A32313B613A323A7B733A313A2274223B693A313536383539323030303B733A313A2263223B693A3133323234393235363B7D693A32323B613A323A7B733A313A2274223B693A313536383637383430303B733A313A2263223B693A3133343134333232333B7D693A32333B613A323A7B733A313A2274223B693A313536383736343830303B733A313A2263223B693A3133333331313730373B7D693A32343B613A323A7B733A313A2274223B693A313536383835313230303B733A313A2263223B693A3134353736353635373B7D693A32353B613A323A7B733A313A2274223B693A313536383933373630303B733A313A2263223B693A3132313436373939363B7D693A32363B613A323A7B733A313A2274223B693A313536393032343030303B733A313A2263223B693A3131353039363635363B7D693A32373B613A323A7B733A313A2274223B693A313536393131303430303B733A313A2263223B693A3132323734383036333B7D693A32383B613A323A7B733A313A2274223B693A313536393139363830303B733A313A2263223B693A3132363736383339303B7D693A32393B613A323A7B733A313A2274223B693A313536393238333230303B733A313A2263223B693A3132353335313836333B7D7D7D733A393A22636F756E7472696573223B613A313A7B733A323A223764223B613A31303A7B693A303B613A323A7B733A323A226364223B733A323A225553223B733A323A226374223B693A3238393139343438373B7D693A313B613A323A7B733A323A226364223B733A323A22434E223B733A323A226374223B693A3139383037383530333B7D693A323B613A323A7B733A323A226364223B733A323A225255223B733A323A226374223B693A38373630383232363B7D693A333B613A323A7B733A323A226364223B733A323A224652223B733A323A226374223B693A38303133333136303B7D693A343B613A323A7B733A323A226364223B733A323A225541223B733A323A226374223B693A37333338313831343B7D693A353B613A323A7B733A323A226364223B733A323A224341223B733A323A226374223B693A35373336323339343B7D693A363B613A323A7B733A323A226364223B733A323A224445223B733A323A226374223B693A35333434333830333B7D693A373B613A323A7B733A323A226364223B733A323A22494E223B733A323A226374223B693A35313534333133363B7D693A383B613A323A7B733A323A226364223B733A323A225452223B733A323A226374223B693A34363734363132333B7D693A393B613A323A7B733A323A226364223B733A323A225347223B733A323A226374223B693A34363536303037313B7D7D7D7D,'yes'),('noc1ScanSchedule',0x613A323A7B693A303B693A313536393538383630303B693A313B693A313536393834373830303B7D,'yes'),('showWfCentralUI',0x31,'yes'),('allowMySQLi',0x31,'yes'),('dbTest',0x613A313A7B733A353A226E6F6E6365223B733A36343A2234613661616132396262393132366662386130336634623733646264313963366565356465353632373535326539383463303134323834303765336464363763223B7D,'no'),('vulnerabilities_plugin',0x613A31323A7B693A303B613A353A7B733A343A22736C7567223B733A393A22656C656D656E746F72223B733A393A22746F56657273696F6E223B733A353A22322E372E33223B733A31313A2266726F6D56657273696F6E223B733A353A22322E362E38223B733A31303A2276756C6E657261626C65223B623A303B733A343A226C696E6B223B623A303B7D693A313B613A353A7B733A343A22736C7567223B733A32383A227072656D69756D2D6164646F6E732D666F722D656C656D656E746F72223B733A393A22746F56657273696F6E223B733A353A22332E372E35223B733A31313A2266726F6D56657273696F6E223B733A353A22332E362E39223B733A31303A2276756C6E657261626C65223B623A303B733A343A226C696E6B223B623A303B7D693A323B613A343A7B733A343A22736C7567223B733A373A22616B69736D6574223B733A31313A2266726F6D56657273696F6E223B733A353A22342E312E32223B733A31303A2276756C6E657261626C65223B623A303B733A343A226C696E6B223B623A303B7D693A333B613A343A7B733A343A22736C7567223B733A31353A22626F6C64677269642D6261636B7570223B733A31313A2266726F6D56657273696F6E223B733A363A22312E31312E32223B733A31303A2276756C6E657261626C65223B623A303B733A343A226C696E6B223B623A303B7D693A343B613A343A7B733A343A22736C7567223B733A33353A22636F6C756D6E732D616C69676E6D656E742D6669782D666F722D656C656D656E746F72223B733A31313A2266726F6D56657273696F6E223B733A353A22312E322E30223B733A31303A2276756C6E657261626C65223B623A303B733A343A226C696E6B223B623A303B7D693A353B613A343A7B733A343A22736C7567223B733A32303A22637573746F6D2D747970656B69742D666F6E7473223B733A31313A2266726F6D56657273696F6E223B733A363A22312E302E3133223B733A31303A2276756C6E657261626C65223B623A303B733A343A226C696E6B223B623A303B7D693A363B613A343A7B733A343A22736C7567223B733A31393A22646973706C61792D7068702D76657273696F6E223B733A31313A2266726F6D56657273696F6E223B733A333A22312E35223B733A31303A2276756C6E657261626C65223B623A303B733A343A226C696E6B223B623A303B7D693A373B613A343A7B733A343A22736C7567223B733A31343A226475706C69636174652D70616765223B733A31313A2266726F6D56657273696F6E223B733A333A22342E30223B733A31303A2276756C6E657261626C65223B623A303B733A343A226C696E6B223B623A303B7D693A383B613A343A7B733A343A22736C7567223B733A31313A2268656C6C6F2D646F6C6C79223B733A31313A2266726F6D56657273696F6E223B733A353A22312E372E32223B733A31303A2276756C6E657261626C65223B623A303B733A343A226C696E6B223B623A303B7D693A393B613A343A7B733A343A22736C7567223B733A393A22776F726466656E6365223B733A31313A2266726F6D56657273696F6E223B733A353A22372E342E30223B733A31303A2276756C6E657261626C65223B623A303B733A343A226C696E6B223B623A303B7D693A31303B613A343A7B733A343A22736C7567223B733A32333A22626F6C64677269642D6261636B75702D7072656D69756D223B733A31313A2266726F6D56657273696F6E223B733A353A22312E312E30223B733A31303A2276756C6E657261626C65223B623A303B733A343A226C696E6B223B623A303B7D693A31313B613A343A7B733A343A22736C7567223B733A31333A22656C656D656E746F722D70726F223B733A31313A2266726F6D56657273696F6E223B733A353A22322E362E35223B733A31303A2276756C6E657261626C65223B623A303B733A343A226C696E6B223B623A303B7D7D,'yes'),('autoUpdateChoice',0x31,'yes'),('lastNotificationID',0x36,'no'),('totalScansRun',0x31,'yes'),('wfKillRequested',0x30,'no'),('currentCronKey','','yes'),('wf_scanLastStatusTime',0x30,'yes'),('wf_scanRunning','','yes'),('wfPeakMemory',0x3438373538373834,'no'),('wfScanStartVersion',0x352E322E33,'yes'),('lowResourceScanWaitStep','','yes'),('wfStatusStartMsgs',0x613A323A7B693A303B733A303A22223B693A313B733A303A22223B7D,'yes'),('wf_summaryItems',0x613A383A7B733A31323A227363616E6E6564506F737473223B693A303B733A31353A227363616E6E6564436F6D6D656E7473223B693A303B733A31323A227363616E6E656446696C6573223B693A303B733A31343A227363616E6E6564506C7567696E73223B693A303B733A31333A227363616E6E65645468656D6573223B693A303B733A31323A227363616E6E65645573657273223B693A303B733A31313A227363616E6E656455524C73223B693A303B733A31303A226C617374557064617465223B693A313536393431353233303B7D,'yes'),('lastScanCompleted',0x6F6B,'yes'),('lastScanFailureType','','yes'),('scanTime',0x313536393431353233302E31333936,'yes'),('emailedIssuesList',0x613A343A7B693A303B613A323A7B733A373A2269676E6F726543223B733A33323A223532616465633337656130386232613537336433636466303661303735356137223B733A373A2269676E6F726550223B733A33323A223532616465633337656130386232613537336433636466303661303735356137223B7D693A313B613A323A7B733A373A2269676E6F726543223B733A33323A226661393033386531313766643835383032613336316435336164393765303364223B733A373A2269676E6F726550223B733A33323A226661393033386531313766643835383032613336316435336164393765303364223B7D693A323B613A323A7B733A373A2269676E6F726543223B733A33323A223435323739363465386436306236346638393633353036623464613064626638223B733A373A2269676E6F726550223B733A33323A223435323739363465386436306236346638393633353036623464613064626638223B7D693A333B613A323A7B733A373A2269676E6F726543223B733A33323A226630376265646164636565636461643835373038643866653432636136323237223B733A373A2269676E6F726550223B733A33323A226630376265646164636565636461643835373038643866653432636136323237223B7D7D,'yes'),('wafStatusCallbackNonce','','yes');
/*!40000 ALTER TABLE `wp_wfconfig` ENABLE KEYS */;
UNLOCK TABLES;

-- Dumped table `wp_wfconfig` with 233 row(s)
--

--
-- Table structure for table `wp_wfcrawlers`
--

DROP TABLE IF EXISTS `wp_wfcrawlers`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_wfcrawlers` (
  `IP` binary(16) NOT NULL DEFAULT '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',
  `patternSig` binary(16) NOT NULL,
  `status` char(8) NOT NULL,
  `lastUpdate` int(10) unsigned NOT NULL,
  `PTR` varchar(255) DEFAULT '',
  PRIMARY KEY (`IP`,`patternSig`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_wfcrawlers`
--

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

-- Dumped table `wp_wfcrawlers` with 0 row(s)
--

--
-- Table structure for table `wp_wffilechanges`
--

DROP TABLE IF EXISTS `wp_wffilechanges`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_wffilechanges` (
  `filenameHash` char(64) NOT NULL,
  `file` varchar(1000) NOT NULL,
  `md5` char(32) NOT NULL,
  PRIMARY KEY (`filenameHash`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_wffilechanges`
--

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

-- Dumped table `wp_wffilechanges` with 0 row(s)
--

--
-- Table structure for table `wp_wffilemods`
--

DROP TABLE IF EXISTS `wp_wffilemods`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_wffilemods` (
  `filenameMD5` binary(16) NOT NULL,
  `filename` varchar(1000) NOT NULL,
  `knownFile` tinyint(3) unsigned NOT NULL,
  `oldMD5` binary(16) NOT NULL,
  `newMD5` binary(16) NOT NULL,
  `SHAC` binary(32) NOT NULL DEFAULT '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',
  `stoppedOnSignature` varchar(255) NOT NULL DEFAULT '',
  `stoppedOnPosition` int(10) unsigned NOT NULL DEFAULT 0,
  `isSafeFile` varchar(1) NOT NULL DEFAULT '?',
  PRIMARY KEY (`filenameMD5`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_wffilemods`
--

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

-- Dumped table `wp_wffilemods` with 0 row(s)
--

--
-- Table structure for table `wp_wfhits`
--

DROP TABLE IF EXISTS `wp_wfhits`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_wfhits` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `attackLogTime` double(17,6) unsigned NOT NULL,
  `ctime` double(17,6) unsigned NOT NULL,
  `IP` binary(16) DEFAULT NULL,
  `jsRun` tinyint(4) DEFAULT 0,
  `statusCode` int(11) NOT NULL DEFAULT 200,
  `isGoogle` tinyint(4) NOT NULL,
  `userID` int(10) unsigned NOT NULL,
  `newVisit` tinyint(3) unsigned NOT NULL,
  `URL` text DEFAULT NULL,
  `referer` text DEFAULT NULL,
  `UA` text DEFAULT NULL,
  `action` varchar(64) NOT NULL DEFAULT '',
  `actionDescription` text DEFAULT NULL,
  `actionData` text DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `k1` (`ctime`),
  KEY `k2` (`IP`,`ctime`),
  KEY `attackLogTime` (`attackLogTime`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_wfhits`
--

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

-- Dumped table `wp_wfhits` with 0 row(s)
--

--
-- Table structure for table `wp_wfhoover`
--

DROP TABLE IF EXISTS `wp_wfhoover`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_wfhoover` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `owner` text DEFAULT NULL,
  `host` text DEFAULT NULL,
  `path` text DEFAULT NULL,
  `hostKey` varbinary(124) DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `k2` (`hostKey`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_wfhoover`
--

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

-- Dumped table `wp_wfhoover` with 0 row(s)
--

--
-- Table structure for table `wp_wfissues`
--

DROP TABLE IF EXISTS `wp_wfissues`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_wfissues` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `time` int(10) unsigned NOT NULL,
  `lastUpdated` int(10) unsigned NOT NULL,
  `status` varchar(10) NOT NULL,
  `type` varchar(20) NOT NULL,
  `severity` tinyint(3) unsigned NOT NULL,
  `ignoreP` char(32) NOT NULL,
  `ignoreC` char(32) NOT NULL,
  `shortMsg` varchar(255) NOT NULL,
  `longMsg` text DEFAULT NULL,
  `data` text DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `lastUpdated` (`lastUpdated`),
  KEY `status` (`status`),
  KEY `ignoreP` (`ignoreP`),
  KEY `ignoreC` (`ignoreC`)
) ENGINE=MyISAM AUTO_INCREMENT=5 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_wfissues`
--

LOCK TABLES `wp_wfissues` WRITE;
/*!40000 ALTER TABLE `wp_wfissues` DISABLE KEYS */;
INSERT INTO `wp_wfissues` VALUES (3,1569415230,1569415230,'new','wfPluginUpgrade',50,'4527964e8d60b64f8963506b4da0dbf8','4527964e8d60b64f8963506b4da0dbf8','The Plugin \"Elementor\" needs an upgrade (2.6.8 -> 2.7.3).','You need to upgrade \"Elementor\" to the newest version to ensure you have any security fixes the developer has released.','a:16:{s:4:\"Name\";s:9:\"Elementor\";s:9:\"PluginURI\";s:97:\"https://elementor.com/?utm_source=wp-plugins&#038;utm_campaign=plugin-uri&#038;utm_medium=wp-dash\";s:7:\"Version\";s:5:\"2.6.8\";s:11:\"Description\";s:290:\"The most advanced frontend drag &amp; drop page builder. Create high-end, pixel perfect websites at record speeds. Any theme, any page, any design. <cite>By <a href=\"https://elementor.com/?utm_source=wp-plugins&#038;utm_campaign=author-uri&#038;utm_medium=wp-dash\">Elementor.com</a>.</cite>\";s:6:\"Author\";s:125:\"<a href=\"https://elementor.com/?utm_source=wp-plugins&#038;utm_campaign=author-uri&#038;utm_medium=wp-dash\">Elementor.com</a>\";s:9:\"AuthorURI\";s:97:\"https://elementor.com/?utm_source=wp-plugins&#038;utm_campaign=author-uri&#038;utm_medium=wp-dash\";s:10:\"TextDomain\";s:9:\"elementor\";s:10:\"DomainPath\";s:0:\"\";s:7:\"Network\";b:0;s:5:\"Title\";s:121:\"<a href=\"https://elementor.com/?utm_source=wp-plugins&#038;utm_campaign=plugin-uri&#038;utm_medium=wp-dash\">Elementor</a>\";s:10:\"AuthorName\";s:13:\"Elementor.com\";s:10:\"pluginFile\";s:71:\"/home/ondisp5/public_html/wp/wp-content/plugins/elementor/elementor.php\";s:10:\"newVersion\";s:5:\"2.7.3\";s:4:\"slug\";s:9:\"elementor\";s:5:\"wpURL\";s:39:\"https://wordpress.org/plugins/elementor\";s:10:\"vulnerable\";b:0;}'),(4,1569415230,1569415230,'new','wfPluginUpgrade',50,'f07bedadceecdad85708d8fe42ca6227','f07bedadceecdad85708d8fe42ca6227','The Plugin \"Premium Addons for Elementor\" needs an upgrade (3.6.9 -> 3.7.5).','You need to upgrade \"Premium Addons for Elementor\" to the newest version to ensure you have any security fixes the developer has released.','a:16:{s:4:\"Name\";s:28:\"Premium Addons for Elementor\";s:9:\"PluginURI\";s:25:\"https://premiumaddons.com\";s:7:\"Version\";s:5:\"3.6.9\";s:11:\"Description\";s:136:\"Premium Addons Plugin Includes 22+ premium widgets for Elementor Page Builder. <cite>By <a href=\"https://leap13.com/\">Leap13</a>.</cite>\";s:6:\"Author\";s:40:\"<a href=\"https://leap13.com/\">Leap13</a>\";s:9:\"AuthorURI\";s:19:\"https://leap13.com/\";s:10:\"TextDomain\";s:28:\"premium-addons-for-elementor\";s:10:\"DomainPath\";s:10:\"/languages\";s:7:\"Network\";b:0;s:5:\"Title\";s:68:\"<a href=\"https://premiumaddons.com\">Premium Addons for Elementor</a>\";s:10:\"AuthorName\";s:6:\"Leap13\";s:10:\"pluginFile\";s:109:\"/home/ondisp5/public_html/wp/wp-content/plugins/premium-addons-for-elementor/premium-addons-for-elementor.php\";s:10:\"newVersion\";s:5:\"3.7.5\";s:4:\"slug\";s:28:\"premium-addons-for-elementor\";s:5:\"wpURL\";s:58:\"https://wordpress.org/plugins/premium-addons-for-elementor\";s:10:\"vulnerable\";b:0;}');
/*!40000 ALTER TABLE `wp_wfissues` ENABLE KEYS */;
UNLOCK TABLES;

-- Dumped table `wp_wfissues` with 2 row(s)
--

--
-- Table structure for table `wp_wfknownfilelist`
--

DROP TABLE IF EXISTS `wp_wfknownfilelist`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_wfknownfilelist` (
  `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `path` text NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_wfknownfilelist`
--

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

-- Dumped table `wp_wfknownfilelist` with 0 row(s)
--

--
-- Table structure for table `wp_wflivetraffichuman`
--

DROP TABLE IF EXISTS `wp_wflivetraffichuman`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_wflivetraffichuman` (
  `IP` binary(16) NOT NULL DEFAULT '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',
  `identifier` binary(32) NOT NULL DEFAULT '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',
  `expiration` int(10) unsigned NOT NULL,
  PRIMARY KEY (`IP`,`identifier`),
  KEY `expiration` (`expiration`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_wflivetraffichuman`
--

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

-- Dumped table `wp_wflivetraffichuman` with 0 row(s)
--

--
-- Table structure for table `wp_wflocs`
--

DROP TABLE IF EXISTS `wp_wflocs`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_wflocs` (
  `IP` binary(16) NOT NULL DEFAULT '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',
  `ctime` int(10) unsigned NOT NULL,
  `failed` tinyint(3) unsigned NOT NULL,
  `city` varchar(255) DEFAULT '',
  `region` varchar(255) DEFAULT '',
  `countryName` varchar(255) DEFAULT '',
  `countryCode` char(2) DEFAULT '',
  `lat` float(10,7) DEFAULT 0.0000000,
  `lon` float(10,7) DEFAULT 0.0000000,
  PRIMARY KEY (`IP`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_wflocs`
--

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

-- Dumped table `wp_wflocs` with 0 row(s)
--

--
-- Table structure for table `wp_wflogins`
--

DROP TABLE IF EXISTS `wp_wflogins`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_wflogins` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `hitID` int(11) DEFAULT NULL,
  `ctime` double(17,6) unsigned NOT NULL,
  `fail` tinyint(3) unsigned NOT NULL,
  `action` varchar(40) NOT NULL,
  `username` varchar(255) NOT NULL,
  `userID` int(10) unsigned NOT NULL,
  `IP` binary(16) DEFAULT NULL,
  `UA` text DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `k1` (`IP`,`fail`),
  KEY `hitID` (`hitID`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_wflogins`
--

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

-- Dumped table `wp_wflogins` with 0 row(s)
--

--
-- Table structure for table `wp_wfls_2fa_secrets`
--

DROP TABLE IF EXISTS `wp_wfls_2fa_secrets`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_wfls_2fa_secrets` (
  `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `user_id` bigint(20) unsigned NOT NULL,
  `secret` tinyblob NOT NULL,
  `recovery` blob NOT NULL,
  `ctime` int(10) unsigned NOT NULL,
  `vtime` int(10) unsigned NOT NULL,
  `mode` enum('authenticator') NOT NULL DEFAULT 'authenticator',
  PRIMARY KEY (`id`),
  KEY `user_id` (`user_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_wfls_2fa_secrets`
--

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

-- Dumped table `wp_wfls_2fa_secrets` with 0 row(s)
--

--
-- Table structure for table `wp_wfls_settings`
--

DROP TABLE IF EXISTS `wp_wfls_settings`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_wfls_settings` (
  `name` varchar(191) NOT NULL DEFAULT '',
  `value` longblob DEFAULT NULL,
  `autoload` enum('no','yes') NOT NULL DEFAULT 'yes',
  PRIMARY KEY (`name`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_wfls_settings`
--

LOCK TABLES `wp_wfls_settings` WRITE;
/*!40000 ALTER TABLE `wp_wfls_settings` DISABLE KEYS */;
INSERT INTO `wp_wfls_settings` VALUES ('allow-xml-rpc',0x31,'yes'),('captcha-stats',0x7B22636F756E7473223A5B302C302C302C302C302C302C302C302C302C302C305D2C22617667223A307D,'yes'),('delete-deactivation','','yes'),('enable-auth-captcha','','yes'),('global-notices',0x5B5D,'yes'),('ip-source','','yes'),('ip-trusted-proxies','','yes'),('last-secret-refresh',0x31353639343135313838,'yes'),('ntp-offset',0x302E3639363032353337313535313531,'yes'),('recaptcha-threshold',0x302E35,'yes'),('remember-device','','yes'),('remember-device-duration',0x32353932303030,'yes'),('require-2fa-grace-period-enabled','','yes'),('require-2fa.administrator','','yes'),('shared-hash-secret',0x35333235383436346162656233613337376430343063623266386133353636323638366663646664363764303162643463626337323035636233316237373430,'yes'),('shared-symmetric-secret',0x35633563633530323537316133386230633231353361353536383466353165316538366430323232393864633934356239376430646665363362386537356535,'yes'),('use-ntp','','yes'),('whitelisted','','yes'),('xmlrpc-enabled',0x31,'yes');
/*!40000 ALTER TABLE `wp_wfls_settings` ENABLE KEYS */;
UNLOCK TABLES;

-- Dumped table `wp_wfls_settings` with 19 row(s)
--

--
-- Table structure for table `wp_wfnotifications`
--

DROP TABLE IF EXISTS `wp_wfnotifications`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_wfnotifications` (
  `id` varchar(32) NOT NULL DEFAULT '',
  `new` tinyint(3) unsigned NOT NULL DEFAULT 1,
  `category` varchar(255) NOT NULL,
  `priority` int(11) NOT NULL DEFAULT 1000,
  `ctime` int(10) unsigned NOT NULL,
  `html` text NOT NULL,
  `links` text NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_wfnotifications`
--

LOCK TABLES `wp_wfnotifications` WRITE;
/*!40000 ALTER TABLE `wp_wfnotifications` DISABLE KEYS */;
INSERT INTO `wp_wfnotifications` VALUES ('site-AEAAAAA',1,'wfplugin_updates',502,1569415252,'<a href=\"http://23.235.208.11/~ondisp5/wp/wp-admin/update-core.php\">Updates are available for 2 plugins</a>','[]'),('site-AIAAAAA',1,'wfplugin_scan',502,1569415252,'<a href=\"http://23.235.208.11/~ondisp5/wp/wp-admin/admin.php?page=WordfenceScan\">2 issues found in most recent scan</a>','[]');
/*!40000 ALTER TABLE `wp_wfnotifications` ENABLE KEYS */;
UNLOCK TABLES;

-- Dumped table `wp_wfnotifications` with 2 row(s)
--

--
-- Table structure for table `wp_wfpendingissues`
--

DROP TABLE IF EXISTS `wp_wfpendingissues`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_wfpendingissues` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `time` int(10) unsigned NOT NULL,
  `lastUpdated` int(10) unsigned NOT NULL,
  `status` varchar(10) NOT NULL,
  `type` varchar(20) NOT NULL,
  `severity` tinyint(3) unsigned NOT NULL,
  `ignoreP` char(32) NOT NULL,
  `ignoreC` char(32) NOT NULL,
  `shortMsg` varchar(255) NOT NULL,
  `longMsg` text DEFAULT NULL,
  `data` text DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `lastUpdated` (`lastUpdated`),
  KEY `status` (`status`),
  KEY `ignoreP` (`ignoreP`),
  KEY `ignoreC` (`ignoreC`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_wfpendingissues`
--

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

-- Dumped table `wp_wfpendingissues` with 0 row(s)
--

--
-- Table structure for table `wp_wfreversecache`
--

DROP TABLE IF EXISTS `wp_wfreversecache`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_wfreversecache` (
  `IP` binary(16) NOT NULL DEFAULT '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',
  `host` varchar(255) NOT NULL,
  `lastUpdate` int(10) unsigned NOT NULL,
  PRIMARY KEY (`IP`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_wfreversecache`
--

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

-- Dumped table `wp_wfreversecache` with 0 row(s)
--

--
-- Table structure for table `wp_wfsnipcache`
--

DROP TABLE IF EXISTS `wp_wfsnipcache`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_wfsnipcache` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `IP` varchar(45) NOT NULL DEFAULT '',
  `expiration` timestamp NOT NULL DEFAULT current_timestamp(),
  `body` varchar(255) NOT NULL DEFAULT '',
  `count` int(10) unsigned NOT NULL DEFAULT 0,
  `type` int(10) unsigned NOT NULL DEFAULT 0,
  PRIMARY KEY (`id`),
  KEY `expiration` (`expiration`),
  KEY `IP` (`IP`),
  KEY `type` (`type`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_wfsnipcache`
--

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

-- Dumped table `wp_wfsnipcache` with 0 row(s)
--

--
-- Table structure for table `wp_wfstatus`
--

DROP TABLE IF EXISTS `wp_wfstatus`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_wfstatus` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `ctime` double(17,6) unsigned NOT NULL,
  `level` tinyint(3) unsigned NOT NULL,
  `type` char(5) NOT NULL,
  `msg` varchar(1000) NOT NULL,
  PRIMARY KEY (`id`),
  KEY `k1` (`ctime`),
  KEY `k2` (`type`)
) ENGINE=MyISAM AUTO_INCREMENT=11 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_wfstatus`
--

LOCK TABLES `wp_wfstatus` WRITE;
/*!40000 ALTER TABLE `wp_wfstatus` DISABLE KEYS */;
INSERT INTO `wp_wfstatus` VALUES (1,1569415230.117138,10,'info','SUM_PREP:Preparing a new scan.'),(2,1569415230.118661,1,'info','Initiating quick scan'),(3,1569415230.120134,10,'info','SUM_START:Checking Web Application Firewall status'),(4,1569415230.120413,10,'info','SUM_ENDOK:Checking Web Application Firewall status'),(5,1569415230.123127,10,'info','SUM_START:Scanning for old themes, plugins and core files'),(6,1569415230.135667,10,'info','SUM_ENDBAD:Scanning for old themes, plugins and core files'),(7,1569415230.138155,1,'info','-------------------'),(8,1569415230.138695,2,'info','Wordfence used 0 B of memory for scan. Server peak memory usage was: 46.5 MB'),(9,1569415230.138859,1,'info','Quick Scan Complete. Scanned in less than 1 second.'),(10,1569415230.139015,10,'info','SUM_FINAL:Scan complete. You have 4 new issues to fix. See below.');
/*!40000 ALTER TABLE `wp_wfstatus` ENABLE KEYS */;
UNLOCK TABLES;

-- Dumped table `wp_wfstatus` with 10 row(s)
--

--
-- Table structure for table `wp_wftrafficrates`
--

DROP TABLE IF EXISTS `wp_wftrafficrates`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_wftrafficrates` (
  `eMin` int(10) unsigned NOT NULL,
  `IP` binary(16) NOT NULL DEFAULT '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',
  `hitType` enum('hit','404') NOT NULL DEFAULT 'hit',
  `hits` int(10) unsigned NOT NULL,
  PRIMARY KEY (`eMin`,`IP`,`hitType`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_wftrafficrates`
--

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

-- Dumped table `wp_wftrafficrates` with 0 row(s)
--

--
-- Table structure for table `wp_wpforms_lite`
--

DROP TABLE IF EXISTS `wp_wpforms_lite`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_wpforms_lite` (
  `rid` int(10) NOT NULL AUTO_INCREMENT,
  `start` bigint(20) NOT NULL,
  `end` bigint(20) NOT NULL,
  `status` tinyint(2) NOT NULL DEFAULT 1,
  `date` int(10) NOT NULL,
  PRIMARY KEY (`rid`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_wpforms_lite`
--

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

-- Dumped table `wp_wpforms_lite` with 0 row(s)
--

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

-- Dump completed on: Wed, 25 Sep 2019 12:44:49 +0000
